/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2026 UpWard Agency
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --rich-black-fogra-29-1: hsl(215, 31%, 14%);
  --rich-black-fogra-29-2: hsl(227, 37%, 10%);
  --rich-black-fogra-39: hsl(227, 37%, 10%);
  --granite-gray: hsl(0, 0%, 40%);
  --go-green_50: hsla(142, 53%, 42%, 0.5);
  --go-green_8: hsla(142, 53%, 42%, 0.08);
  --go-green_5: hsla(142, 53%, 42%, 0.05);
  --light-gray: hsl(0, 0%, 80%);
  --mint-cream: hsl(142, 30%, 97%);
  --cultured: hsl(0, 0%, 93%);
  --go-green: hsl(142, 53%, 42%);
  --secondary: hsl(210, 60%, 37%);
  --white: hsl(0, 0%, 100%);
  --jet: hsl(0, 0%, 18%);

  /**
   * typography
   */

  --ff-poppins: 'Poppins', sans-serif;
  --ff-cuprum: 'Cuprum', sans-serif;

  --fs-1: 4.5rem;
  --fs-2: 3.6rem;
  --fs-3: 3.5rem;
  --fs-4: 3.2rem;
  --fs-5: 2.5rem;
  --fs-6: 2.4rem;
  --fs-7: 2.2rem;
  --fs-8: 2rem;
  --fs-9: 1.8rem;
  --fs-10: 1.5rem;
  --fs-11: 1.4rem;
  --fs-12: 1.3rem;

  --fw-700: 700;
  --fw-600: 600;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * shadow
   */

  --shadow-1: 0 4px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-2: 0 8px 40px hsla(0, 0%, 0%, 0.08);
  --shadow-hover: 0 20px 60px hsla(0, 0%, 0%, 0.1);
  --shadow-3d: 0 30px 80px hsla(0, 0%, 0%, 0.12), 0 10px 30px hsla(0, 0%, 0%, 0.08);

  /**
   * radius
   */

  --radius-5: 5px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}


/*-----------------------------------*\
  #DARK THEME
\*-----------------------------------*/

[data-theme="dark"] {
  --mint-cream: #0b0d14;
  --cultured: #eceef2;
  --white: #141a26;
  --light-gray: #1e2433;
  --granite-gray: #8a8f9a;
  --rich-black-fogra-29-1: #eceef2;
  --rich-black-fogra-29-2: #0b0d14;
  --rich-black-fogra-39: #0b0d14;
  --shadow-1: 0 4px 30px hsla(0, 0%, 0%, 0.3);
  --shadow-2: 0 8px 40px hsla(0, 0%, 0%, 0.4);
  --shadow-hover: 0 20px 60px hsla(0, 0%, 0%, 0.5);
  --shadow-3d: 0 30px 80px hsla(0, 0%, 0%, 0.5), 0 10px 30px hsla(0, 0%, 0%, 0.3);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0b0d14, #101423, #0b0d14, #101423);
}

[data-theme="dark"] .overlay {
  background-color: hsla(0, 0%, 0%, 0.6);
}

[data-theme="dark"] .header.active {
  background-color: #141a26;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background-color: #0b0d14;
}

[data-theme="dark"] .header > .container > .logo > .logo-img {
  filter: none;
}

[data-theme="dark"] .form-input {
  background: var(--white);
  border-color: var(--light-gray);
  color: var(--rich-black-fogra-29-1);
}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

a,
img,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
  animation: pageFadeIn 0.3s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  background-color: var(--white);
  color: var(--granite-gray);
  font-size: 1.6rem;
  line-height: 1.7;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--go-green), var(--secondary));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.h1,
.h2,
.h3,
.h2-sm {
  color: var(--rich-black-fogra-29-1);
  font-family: var(--ff-cuprum);
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1.1;
}

.h2 { font-size: var(--fs-2); }

.h2,
.h3,
.h2-sm { line-height: 1.3; }

.h2-sm { font-size: var(--fs-3); }

.h3 { font-size: var(--fs-7); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.btn {
  font-weight: var(--fw-600);
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-5);
  max-width: max-content;
  transition: var(--transition-1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--go-green);
  color: var(--white);
  box-shadow: 0 4px 15px var(--go-green_50);
}

.btn-primary:is(:hover, :focus) {
  background-color: var(--secondary);
  box-shadow: 0 8px 30px hsla(210, 60%, 37%, 0.4);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px var(--go-green_50);
  transition: 0.08s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, hsla(0, 0%, 100%, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: 0.6s;
}

.btn-primary:is(:hover, :focus)::after {
  transform: translateX(100%);
}

.flex-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-100 { width: 100%; }

.text-center { text-align: center; }

.section-subtitle {
  color: var(--go-green);
  font-weight: var(--fw-500);
}

.section-subtitle.has-shimmer {
  background: linear-gradient(135deg, var(--go-green), hsl(142, 65%, 55%), var(--secondary), var(--go-green));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: subtitleShimmer 5s ease-in-out infinite;
  font-weight: var(--fw-600);
}

.section-title {
  background: linear-gradient(135deg, var(--rich-black-fogra-29-1) 0%, var(--go-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid-list {
  display: grid;
  gap: 20px;
}

.btn-link {
  color: var(--rich-black-fogra-29-1);
  font-size: var(--fs-12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) { color: var(--go-green); gap: 8px; }





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn-outline { display: none; }

.header {
  padding-block: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  transition: 0.3s ease;
}

.header.active {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
}

.header.hide {
  transform: translateY(-100%);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--rich-black-fogra-29-1);
  font-family: var(--ff-cuprum);
  font-size: 33px;
  font-weight: var(--fw-500);
  line-height: 1;
}

.logo-img {
  height: auto;
  max-height: 75px;
  width: auto;
  object-fit: contain;
}

.header > .container > .logo > .logo-img {
  filter: invert(1);
  max-height: 100px;
  margin-inline-start: 20px;
}

.nav-open-btn {
  color: var(--rich-black-fogra-29-1);
  font-size: 35px;
}

.navbar {
  position: fixed;
  top: 0;
  left: -280px;
  max-width: 280px;
  width: 100%;
  height: 100%;
  background-color: var(--rich-black-fogra-39);
  color: var(--white);
  padding: 30px 20px;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
  z-index: 4;
}

.navbar.active {
  visibility: visible;
  transform: translateX(280px);
  transition-duration: 0.5s;
}

.navbar .logo-img {
  height: auto;
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-close-btn { color: var(--white); }

.navbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 25px;
  gap: 10px;
}

.navbar .wrapper .lang-toggle {
  border-color: hsla(0, 0%, 100%, 0.3);
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  margin-inline-start: auto;
}

.navbar .wrapper .lang-toggle:is(:hover, :focus) {
  border-color: var(--go-green);
}

.nav-close-btn { font-size: 30px; }

.navbar-link {
  padding-block: 10px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--go-green); }

.navbar-link.active { color: var(--go-green); }

.overlay {
  position: fixed;
  inset: 0;
  background-color: hsla(0, 0%, 100%, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
  z-index: 3;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background: linear-gradient(135deg, var(--mint-cream), hsl(142, 40%, 95%), var(--mint-cream), hsl(210, 40%, 96%));
  background-size: 400% 400%;
  animation: heroBgShift 12s ease-in-out infinite;
  padding-block-start: calc(var(--section-padding) + 50px);
  text-align: center;
  overflow: hidden;
  position: relative;
}

@keyframes heroBgShift {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(142, 53%, 42%, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: heroBlob 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(210, 60%, 37%, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: heroBlob 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@keyframes heroBlob {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -20px); }
  66% { transform: translate(-10px, 15px); }
}

.hero .container {
  display: grid;
  gap: 50px;
}

.hero-subtitle {
  color: var(--go-green);
  font-size: 2.4rem;
  font-weight: var(--fw-600);
  max-width: max-content;
  margin-inline: auto;
  z-index: 0;
  background: linear-gradient(135deg, var(--go-green), hsl(142, 70%, 60%), var(--secondary), var(--go-green));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: subtitleShimmer 5s ease-in-out infinite;
}

@keyframes subtitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle::before {
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  width: 15px;
  height: 2px;
  background-color: var(--go-green);
}

.hero-title {
  margin-block: 10px 15px;
  font-size: 6rem;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--rich-black-fogra-29-1) 40%, var(--go-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text { color: var(--rich-black-fogra-29-1); }

.hero .btn-group { margin-block-start: 40px; }

.hero .btn-icon {
  background-color: var(--go-green);
  color: var(--white);
  font-size: 20px;
  padding: 20px;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--go-green_50); }
  100% { box-shadow: 0 0 0 25px transparent; }
}

.hero .flex-btn .span {
  color: var(--go-green);
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
}

.hero-banner {
  position: relative;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid hsla(142, 53%, 42%, 0.15);
  animation: heroRing 4s ease-in-out infinite;
}

@keyframes heroRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.6; }
}

.hero-banner,
.hero-banner > img { border-radius: 50%; }

.hero-banner > img {
  transition: transform 0.5s var(--cubic-out);
}
.hero-banner:hover > img {
  transform: scale(1.04);
}

.hero-banner::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image: url('../images/hero-pattern.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner { filter: drop-shadow(2px 2px 5px hsla(0, 0%, 0%, 0.08)); }

.about .section-text { margin-block: 20px 13px; }

.about-list { margin-block-end: 50px; }

.about-list .has-before {
  font-family: var(--ff-cuprum);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  padding-inline-start: 20px;
  line-height: 1.5;
}

.about-list .has-before:not(:last-child) { margin-block-end: 15px; }

.about-list .has-before::before {
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--go-green);
}

.about .btn-group { justify-content: flex-start; }

.about .btn-group .flex-btn { gap: 10px; }

.about .btn-icon ion-icon {
  color: var(--secondary);
  font-size: 40px;
}

.about .btn-group .span {
  color: var(--go-green);
  font-family: var(--ff-cuprum);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  position: relative;
}

.service::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--go-green_8) 2px, transparent 2px);
  background-size: 25px 25px;
  pointer-events: none;
  opacity: 0.6;
}

.service .section-text { margin-block: 15px 50px; }

.service .grid-list { margin-block-end: 50px; }

.service-card {
  height: 100%;
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-5);
  transition: var(--transition-2);
}

.service-card::after {
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--go-green);
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within)::after { width: 100%; }

.service-card:is(:hover, :focus-within) {
  box-shadow: var(--shadow-3d);
  transform: translateY(-8px) scale(1.02);
}

.service-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 10px; 
}

.service-card .card-icon ion-icon {
  font-size: 60px;
  color: var(--go-green);
  transition: var(--transition-1);
}

.service-card:is(:hover, :focus-within) .card-icon ion-icon {
  transform: scale(1.15) rotate(-5deg);
  color: var(--secondary);
}

.service-card .card-text { margin-block: 5px 13px; }

.service .btn { margin-inline: auto; }





/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.features {
  position: relative;
}

.features::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(var(--go-green_8) 2px, transparent 2px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.5;
}

.features .section-text { margin-block: 15px 50px; }

.features-card {
  position: relative;
  background-color: var(--white);
  padding: 30px;
  padding-block-start: 50px;
  margin-block-start: 20px;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-5);
  transition: var(--transition-2);
}

.features-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--go-green), var(--secondary));
  opacity: 0;
  border-radius: var(--radius-5);
  transition: var(--transition-2);
}

.features-card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-6px) scale(1.02);
}

.features-card:hover::before { opacity: 1; }

.features-card .card-number {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  background-color: var(--cultured);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  padding-block: 5px;
  min-width: 50px;
  text-align: center;
  border-radius: var(--radius-5);
  transition: var(--transition-1);
  z-index: 1;
}

.features-card:hover .card-number {
  color: var(--go-green);
  background-color: var(--white);
}

.features-card .card-title {
  font-size: var(--fs-6);
  margin-block-end: 5px;
  position: relative;
  z-index: 1;
}

.features-card .card-text {
  position: relative;
  z-index: 1;
}

.features-card :is(.card-title, .card-text) { transition: var(--transition-1); }

.features-card:hover :is(.card-title, .card-text) { color: var(--white); }





/*-----------------------------------*\
  #PARTNERS
\*-----------------------------------*/

.partners { background-color: var(--mint-cream); }

.partners .section-title { margin-block-end: 40px; }

.partners-slider {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partners-slider-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollPartners 25s linear infinite;
}

@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.06);
  transition: var(--transition-1);
}

.partner-card:hover .partner-circle {
  box-shadow: 0 8px 30px hsla(0, 0%, 0%, 0.12);
  transform: scale(1.08);
}

.partner-circle--dark {
  background-color: var(--rich-black-fogra-29-1);
}

.partner-img {
  max-width: 68px;
  max-height: 68px;
  object-fit: contain;
}


/*-----------------------------------*\
  #HOW
\*-----------------------------------*/

.how {
  background-color: var(--white);
}

.how .section-text {
  margin-block: 15px 50px;
  max-width: 55ch;
  margin-inline: auto;
}

.how .grid-list {
  grid-template-columns: 1fr;
}

.how-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-5);
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
  position: relative;
}

.how-card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-8px) scale(1.02);
}

.how-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--go-green_5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-block-end: 20px;
  transition: var(--transition-1);
}

.how-card:hover .how-icon {
  background-color: var(--go-green);
  transform: scale(1.1) rotate(-8deg);
}

.how-icon ion-icon {
  font-size: 36px;
  color: var(--go-green);
  transition: var(--transition-1);
}

.how-card:hover .how-icon ion-icon {
  color: var(--white);
}

.how-step {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--ff-cuprum);
  font-size: var(--fs-9);
  font-weight: var(--fw-700);
  color: var(--go-green_50);
  line-height: 1;
}

html.rtl .how-step {
  right: auto;
  left: 20px;
}

@media (min-width: 768px) {
  .how .grid-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .how .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }
}


/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testimonials {
  background-color: var(--mint-cream);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 5%;
  right: 5%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--go-green_8) 2px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.testimonials .section-title {
  margin-block-end: 40px;
}

.testi-list {
  display: grid;
  gap: 30px;
}

.testi-card {
  background-color: var(--white);
  padding: 35px 35px 30px;
  border-radius: var(--radius-5);
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--go-green), var(--secondary));
}

.testi-card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-8px) scale(1.02);
}

.testi-quote {
  margin-block-end: 15px;
  position: relative;
}

.testi-quote ion-icon {
  font-size: 40px;
  color: var(--go-green);
  opacity: 0.2;
  transition: var(--transition-1);
}

.testi-card:hover .testi-quote ion-icon {
  opacity: 0.4;
  transform: scale(1.15);
}

.testi-text {
  font-size: var(--fs-10);
  line-height: 1.9;
  margin-block-end: 25px;
  font-style: italic;
  color: var(--rich-black-fogra-29-1);
  position: relative;
}

.testi-text::before {
  content: '"';
  font-size: 60px;
  color: var(--go-green);
  opacity: 0.1;
  position: absolute;
  top: -15px;
  left: -5px;
  font-family: var(--ff-cuprum);
  line-height: 1;
  pointer-events: none;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block-start: 15px;
  border-block-start: 1px solid var(--cultured);
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--avatar-color, var(--go-green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-cuprum);
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--avatar-color, var(--go-green));
}

.testi-name {
  font-family: var(--ff-cuprum);
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
  color: var(--rich-black-fogra-29-1);
  margin-block-end: 3px;
}

.testi-role {
  font-size: var(--fs-12);
  color: var(--granite-gray);
}

@media (min-width: 768px) {
  .testi-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .testi-list {
    grid-template-columns: repeat(3, 1fr);
  }
}


/*-----------------------------------*\
  #PORTFOLIO
\*-----------------------------------*/

.portfolio {
  background-color: var(--white);
}

.portfolio .section-text {
  margin-block: 15px 50px;
  max-width: 55ch;
  margin-inline: auto;
}

.portfolio .grid-list {
  grid-template-columns: 1fr;
}

.port-card {
  text-align: center;
  padding: 35px 30px;
  border-radius: var(--radius-5);
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.port-card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-8px) scale(1.02);
}

.port-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--go-green), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-block-end: 20px;
}

.port-icon ion-icon {
  font-size: 30px;
  color: var(--white);
}

.port-card .card-title {
  margin-block-end: 8px;
}

.port-card .card-text {
  font-size: var(--fs-10);
}

@media (min-width: 768px) {
  .portfolio .grid-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .portfolio .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }
}


/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  background-color: var(--mint-cream);
}

.blog .section-text {
  margin-block: 15px 50px;
  max-width: 55ch;
  margin-inline: auto;
}

.blog .grid-list {
  grid-template-columns: 1fr;
}

.blog-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-5);
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.blog-card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-6px) scale(1.02);
}

.blog-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--go-green_8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-icon ion-icon {
  font-size: 26px;
  color: var(--go-green);
}

.blog-content {
  flex: 1;
}

.blog-date {
  font-size: var(--fs-12);
  color: var(--go-green);
  font-weight: var(--fw-500);
  margin-block-end: 5px;
}

.blog-card .card-title {
  font-size: var(--fs-8);
  margin-block-end: 5px;
}

.blog-card .card-text {
  font-size: var(--fs-11);
  margin-block-end: 10px;
}

.blog-card .btn-link {
  justify-content: flex-start;
  font-size: var(--fs-12);
}

@media (min-width: 768px) {
  .blog .grid-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .blog .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
}


/*-----------------------------------*\
  #WHATSAPP & BACK TO TOP
\*-----------------------------------*/

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px hsla(142, 78%, 49%, 0.4);
  z-index: 99;
  transition: var(--transition-1);
}

.whatsapp-btn:is(:hover, :focus) {
  transform: scale(1.1);
  box-shadow: 0 6px 30px hsla(142, 78%, 49%, 0.5);
}

html.rtl .whatsapp-btn {
  right: auto;
  left: 25px;
}

.back-top-btn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--go-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px var(--go-green_50);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
  border: none;
  cursor: pointer;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.back-top-btn:is(:hover, :focus) {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

html.rtl .back-top-btn {
  right: auto;
  left: 25px;
}


/*-----------------------------------*\
  #SCROLL REVEAL
\*-----------------------------------*/

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}


/*-----------------------------------*\
  #FAQ
\*-----------------------------------*/

.faq .container {
  display: grid;
  gap: 20px;
}

.faq .title-wrapper {
  background-color: var(--white);
  padding: 35px 30px;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-5);
}

.faq .section-title {
  font-size: var(--fs-4);
  margin-block-end: 30px;
}

.faq-card {
  background-color: var(--go-green_5);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.faq-card .card-action {
  --action-bg: var(--go-green_8);
  --color: var(--rich-black-fogra-29-1);

  background-color: var(--action-bg);
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  gap: 20px;
  transition: var(--transition-1);
}

.faq-card .card-action:is(:hover, :focus, .active) {
  --action-bg: var(--go-green);
  --color: var(--white);
}

.faq-card .card-title {
  color: var(--color);
  font-size: var(--fs-8);
  transition: var(--transition-1);
}

.faq-card ion-icon {
  color: var(--color);
  font-size: 15px;
  transition: var(--transition-1);
  --ionicon-stroke-width: 60px;
}

.faq-card .card-action.active .open,
.faq-card .card-action .close { display: none; }

.faq-card .card-action .open,
.faq-card .card-action.active .close { display: block; }

.faq-card .card-content {
  font-size: var(--fs-10);
  padding-inline: 25px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-2);
}

.faq-card .card-content p { margin-block: 15px; }

.faq-card .card-action.active + .card-content { max-height: 500px; }





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--rich-black-fogra-29-2);
  color: var(--cultured);
}

.footer-top {
  padding-block: 40px;
}

.footer-top .container {
  display: grid;
  gap: 20px;
}

.footer .logo-img {
  height: auto;
  max-height: 125px;
  width: auto;
  object-fit: contain;
}

.footer-text { margin-block: 10px; }

.newsletter-form {
  position: relative;
  max-width: 350px;
}

.email-field {
  color: var(--white);
  font-size: var(--fs-11);
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  padding: 15px 50px 15px 15px;
  border-radius: var(--radius-5);
  transition: var(--transition-1);
}

.email-field:focus { border-color: var(--go-green); }

.footer .form-btn {
  background-color: var(--go-green);
  color: var(--white);
  font-size: 24px;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  padding-inline: 10px;
  border-radius: var(--radius-5);
}

.footer-list-title {
  font-family: var(--ff-cuprum);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  line-height: 1.2;
  margin-block-end: 12px;
}

.footer-link {
  padding-block: 3px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) { color: var(--go-green); }

.footer-item,
.social-list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-item { margin-block-start: 10px; }

.footer-item > ion-icon {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 20px;
  margin-block-start: 3px;
}

.contact-link { transition: var(--transition-1); }

.contact-link:not(.address):is(:hover, :focus) { color: var(--go-green); }

.footer-item:last-child {
  margin-block-start: 15px;
  padding-block-start: 15px;
  border-block-start: 1px solid var(--granite-gray);
}

.social-link {
  font-size: 14px;
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  padding: 10px;
  border-radius: var(--radius-5);
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  background-color: var(--go-green);
  border-color: var(--go-green);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-block: 8px;
  border-block-start: 1px solid var(--jet);
}

.copyright {
  font-size: var(--fs-12);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 574px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .copyright {
    white-space: normal;
    margin-block-end: 15px;
  }

  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  html.rtl .whatsapp-btn {
    right: auto;
    left: 15px;
  }

  .back-top-btn {
    bottom: 72px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  html.rtl .back-top-btn {
    right: auto;
    left: 15px;
  }
}

a.partner-circle {
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 574px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .copyright {
    white-space: normal;
    margin-block-end: 15px;
  }

  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  html.rtl .whatsapp-btn {
    right: auto;
    left: 15px;
  }

  .back-top-btn {
    bottom: 72px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  html.rtl .back-top-btn {
    right: auto;
    left: 15px;
  }

  .partner-circle {
    width: 75px;
    height: 75px;
  }

  .partner-img {
    max-width: 55px;
    max-height: 55px;
  }
}

.copyright-link {
  display: inline;
  color: var(--go-green);
  font-weight: var(--fw-500);
}

.footer-bottom-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-bottom-link {
  font-size: var(--fs-11);
  transition: var(--transition-1);
}

.footer-bottom-link:is(:hover, :focus) { color: var(--go-green); }





/*-----------------------------------*\
  #LANG TOGGLE
\*-----------------------------------*/

.lang-toggle {
  background: none;
  border: 1px solid var(--go-green);
  color: var(--go-green);
  font-weight: var(--fw-600);
  font-size: var(--fs-12);
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-5);
  cursor: pointer;
  transition: var(--transition-1);
  font-family: var(--ff-poppins);
  line-height: 1.5;
}

.lang-toggle:is(:hover, :focus) {
  background-color: var(--go-green);
  color: var(--white);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--go-green);
  color: var(--go-green);
  font-size: 16px;
  padding: 5px 8px;
  border-radius: var(--radius-5);
  cursor: pointer;
  transition: var(--transition-1);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.theme-toggle:is(:hover, :focus) {
  background-color: var(--go-green);
  color: var(--white);
}

.navbar .wrapper .theme-toggle {
  border-color: hsla(0, 0%, 100%, 0.3);
  color: var(--white);
  font-size: 14px;
  padding: 4px 8px;
}

.navbar .wrapper .theme-toggle:is(:hover, :focus) {
  border-color: var(--go-green);
}


/*-----------------------------------*\
  #FORM
\*-----------------------------------*/

.contact-form {
  display: grid;
  gap: 15px;
  max-width: 550px;
}

.form-input {
  padding: 14px 20px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-5);
  font-family: var(--ff-poppins);
  font-size: var(--fs-12);
  background: var(--white);
  color: var(--rich-black-fogra-29-1);
  transition: var(--transition-1);
  outline: none;
}

.form-input:focus {
  border-color: var(--go-green);
  box-shadow: 0 0 0 3px var(--go-green_8);
}

.form-input:user-invalid,
.form-input:not(:placeholder-shown):invalid {
  border-color: hsl(0, 70%, 55%);
}

.form-input:user-valid,
.form-input:not(:placeholder-shown):valid {
  border-color: var(--go-green);
}

.form-input::placeholder {
  color: var(--granite-gray);
}

.contact-form .form-btn {
  max-width: 200px;
  padding: 16px 32px;
}


/*-----------------------------------*\
  #MODAL
\*-----------------------------------*/

.modal-overlay {
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--white);
  max-width: 680px;
  width: calc(100% - 30px);
  max-height: 85vh;
  border-radius: var(--radius-5);
  box-shadow: var(--shadow-3d);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--cultured);
  flex-shrink: 0;
}

.modal-title {
  font-size: var(--fs-6);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--granite-gray);
  cursor: pointer;
  padding: 4px;
  display: flex;
  transition: var(--transition-1);
}

.modal-close:is(:hover, :focus) {
  color: var(--go-green);
  transform: rotate(90deg);
}

.modal-body {
  padding: 25px;
  overflow-y: auto;
  line-height: 1.8;
}

.modal-body p {
  margin-block-end: 15px;
  font-size: var(--fs-10);
  color: var(--granite-gray);
}

.modal-body p strong {
  color: var(--rich-black-fogra-29-1);
}

html.rtl .modal {
  direction: rtl;
  text-align: right;
}

html.rtl .modal-header {
  direction: rtl;
}


/*-----------------------------------*\
  #RTL
\*-----------------------------------*/

html.rtl .hero-subtitle::before {
  left: auto;
  right: -20px;
}

html.rtl .about-list .has-before {
  padding-inline-start: 0;
  padding-inline-end: 20px;
}

html.rtl .about-list .has-before::before {
  left: auto;
  right: 0;
}

html.rtl .service-card .btn-link { justify-content: center; }

@media (min-width: 575px) {
  html.rtl .service-card { text-align: right; }
  html.rtl .service-card .btn-link { justify-content: flex-end; }
  html.rtl .service-card .card-icon { margin-inline: 0  auto; }
}

html.rtl .features-card .card-number {
  left: auto;
  right: 25px;
}

html.rtl .faq-card .card-action {
  text-align: right;
}

html.rtl .navbar {
  left: auto;
  right: -280px;
}

html.rtl .navbar.active {
  transform: translateX(-280px);
}

html.rtl .newsletter-form .form-btn {
  right: auto;
  left: 6px;
}

html.rtl .footer {
  direction: rtl;
}

html.rtl .footer .footer-brand {
  padding-inline-start: 20px;
}

html.rtl .footer .contact-link.address,
html.rtl .footer .contact-link[href^="tel:"],
html.rtl .footer .contact-link[href^="mailto:"] {
  unicode-bidi: plaintext;
  text-align: right;
}

html.rtl .newsletter-form .email-field {
  text-align: right;
  padding: 15px 15px 15px 50px;
}


/*-----------------------------------*\
  #MEDIA QUERIES 
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }



  /**
   * SERVICE
   */

  .service .grid-list { grid-template-columns: 1fr 1fr; }

  .service-card { text-align: start; }

  .service-card .card-icon { margin-inline: 0; }
  
  .service-card .btn-link { justify-content: flex-start; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 7rem;
    --fs-2: 4rem;
    --fs-4: 3.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .btn { padding: 16px 32px; }

  .section-text.text-center {
    max-width: 50ch;
    margin-inline: auto;
  }

  .btn-link { --fs-12: 1.4rem; }



  /**
   * HERO
   */

  .hero-subtitle { font-size: 1.8rem; }



  /**
   * FEATURES
   */

  .features .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }



  /**
   * HEADER
   */

  .navbar .wrapper,
  .overlay { display: none; }

  .navbar .wrapper .lang-toggle { display: none; }

  .header { padding: 20px; }

  .navbar,
  .navbar.active {
    all: unset;
    display: flex;
    justify-content: center;
    flex: 1;
  }

  .navbar-list {
    display: flex;
    gap: 35px;
  }

  .navbar-link {
    color: var(--rich-black-fogra-29-1);
    font-weight: var(--fw-500);
    padding-block: 0;
  }

  .header .btn-outline {
    display: block;
    color: var(--go-green);
    font-weight: var(--fw-600);
    text-transform: uppercase;
    border: 1px solid var(--go-green);
    padding: 7px 18px;
    border-radius: var(--radius-5);
    transition: var(--transition-1);
  }

  .header .btn-outline:is(:hover, :focus) {
    background-color: var(--go-green);
    color: var(--white);
    box-shadow: 0 4px 15px var(--go-green_50);
    transform: translateY(-2px);
  }

  .nav-open-btn { display: none; }



  /**
   * HERO
   */

  .hero { text-align: start; }

  .hero .container {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
  }

  .hero-subtitle { margin-inline: 25px 0; }

  html.rtl .hero-subtitle { margin-inline: 0 25px; }

  .hero .btn-group { justify-content: flex-start; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  html.rtl .about .btn-group { justify-content: flex-end; }



  /**
   * SERVICE
   */

  .service-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  html.rtl .service-card { text-align: right; }



  /**
   * FEATURES
   */

  .features .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * FAQ
   */

  .faq .container {
    grid-template-columns: 0.48fr 1fr;
    align-items: flex-start;
  }

  html.rtl .faq .container { direction: rtl; }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 0.8fr 0.8fr 1fr; }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright { margin-block-end: 0; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 7.5rem;
    --fs-4: 3.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1140px; }

  .btn-link { --fs-12: 1.5rem; }



  /**
   * HERO
   */

  .hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
  }



  /**
   * ABOUT
   */

  .about .container { grid-template-columns: 1fr 0.7fr; }



  /**
   * FAQ
   */

  .faq-card .card-action.active + .card-content { max-height: 200px; }

}