 :root {
      --bg-color: #000;
      --text-color: #fff;
      --prim-color: #01afef;
      --primary-color: #ffffff;
      --secondary-color: #373536;
      --dark-primary: #161D96FF;
 }
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    @keyframes slide-in {
      0% {
        transform: translateX(-100%); /* Start off-screen to the left */
        opacity: 0;
      }
      100% {
        transform: translateX(0); /* End at its original position */
        opacity: 1;
      }
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.3);
      }
      100% {
        transform: scale(1);
      }
    }

    /* The typing effect */
    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }

    /* The typewriter cursor effect */
    @keyframes blink-caret {
      from, to { border-color: transparent }
      50% { border-color: orange; }
    }


    /* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Wiggle bounce keyframes */
@keyframes wiggle {
  0% { transform: scale(1.05) translateY(-5px) rotate(0deg); }
  25% { transform: scale(1.05) translateY(-5px) rotate(2deg); }
  50% { transform: scale(1.05) translateY(-5px) rotate(-2deg); }
  75% { transform: scale(1.05) translateY(-5px) rotate(1deg); }
  100% { transform: scale(1.05) translateY(-5px) rotate(0deg); }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%); /* Start off-screen to the left */
  }
  to {
    opacity: 1;
    transform: translateX(0); /* End at its natural position */
  }
}

    header {
      position: sticky;
      top: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      z-index: 1000;

    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        
    }

    header .logo {
      display: flex;
      align-items: center;
      font-weight: bold;
      font-size: 1.2rem;
      gap: 10px;
    }

     header .logo a {
      text-decoration: none;
      display: flex;
      align-items: center;
      color: #333;
     }

     header .logo a:active, header .logo a:focus {
      color: #333;
     }

     .logo-link {
       text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: start;
        color: inherit;
        gap: 15px;
     }

     .logo-link:active, .logo-link:focus {
      color: inherit;
     }

    header .nav-actions {
        display: flex;
        align-items: center;
        gap: 60px; /* space between menu and button */
    }

    header nav {
      display: flex;
      align-items: center;
    }


    header nav a {
      font-weight: 500; 
      margin: 0 1.4rem;
      text-decoration: none;
      color: #565E6CFF;
      font-size: 0.95rem;
      
    }

     header nav a:hover {
      font-weight: 500; 
      color: rgb(54, 59, 66); 
    }

    header nav a:active {
      font-weight: 500; 
      color: #161D96FF;
    }

    header .call-btn {
      background:  #636AE8FF;
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 16px;
      text-decoration: none;
      font-size: 14px; 
      line-height: 28px; 
      font-weight: 400;
    }

    header .call-btn:hover {
        color: #FFFFFFFF; /* white */
        background: #4850E4FF; /* primary-550 */
    }

     header .call-btn:hover:active {
        color: #FFFFFFFF; /* white */
        background: #2C35E0FF; /* primary-600 */
    }
    .navbar .burger-wrapper {
      display: none;
    }

    /* BURGER MENU */
    .navbar .burger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }

    .navbar .burger span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: #cecece;
      border-radius: 3px;
      transition: 0.3s;
    }

    /* ===== Navbar Base ===== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  color: white;
  opacity: 1;
  transform: translateY(0);
  transition:
    background 0.6s ease,
    color 0.6s ease,
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

/* ===== Glass Effect when Scrolled ===== */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 32px rgba(2, 46, 93, 0.12);
  color: var(--navy);
  opacity: 1;
  transform: translateY(0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient sheen overlay for realistic glass shine */
.navbar.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.02)
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* ===== Fade/Slide States ===== */
.navbar.fading-out {
  opacity: 0;
  transform: translateY(-12px);
}

/* ===== Logo & Links ===== */
.navbar .logo {
  position: relative;
  z-index: 2; /* above gradient overlay */
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.5s ease;
  color: inherit;
}

.navbar .nav-actions nav {
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.navbar .nav-actions nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.4s ease;
}

.navbar .mobile-logo {
        display: none;
      }



 /* MOBILE STYLES */
    @media (max-width: 768px) {

      .navbar .web-logo {
        display: none;
      }

      .navbar .mobile-logo {
        display: block;
      }

      .navbar .nav-actions nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      }

      .navbar .nav-actions nav.active {
        display: flex;
        animation: slideDown 0.3s ease;
      }

       .logo .logo-link {
        font-size: 1.1rem;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .navbar .burger-wrapper { 
        flex: 1;
        display: flex;
        justify-content: flex-end;
      }

      .navbar .burger {
        display: flex;
      }

      header .call-btn {
        display: none;
      }

      /* Animate burger into X */
      .navbar .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .navbar .burger.active span:nth-child(2) {
        opacity: 0;
      }
      .navbar .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }

      .navbar .nav-actions nav a {
        color: #373536;
      }
    }

    @media screen and (min-width: 769px) and (max-width: 1024px) {
      .logo .logo-link {
        font-size: 1.1rem;
      }
    }

/* Banner Section */
.banner {
  background:#161D96FF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 10%;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  max-width: 100%;
}

    .design1 {
      position: absolute;
      top: 20%;
      right: 20%;
      animation: slide-in 5s ease-out forwards, pulse 3s 2s infinite alternate; /* Slide in, then pulse */

    }

    .design2 {
      position: absolute;
      bottom: 60px;
      right: 15px;
      animation: slide-in 7s ease-out backwards, pulse 2s 1s infinite alternate; /* Slide in, then pulse */

    }

    .design3{
      position: absolute;
      bottom: 50px;
      left: -40px;
      animation: slide-in 4s ease-out forwards, pulse 4s 3s infinite alternate; /* Slide in, then pulse */
    }


    .banner-text {
      flex: 1;
      min-width: 280px;
    }
    .banner-text h1 {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 1rem;
      line-height: 3.7rem;
      height: 120px;
      animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
    }

    @media screen and (min-width: 769px) and (max-width: 1024px) {
       .banner-text h1 {
          font-size: 2.5rem;
          line-height: 2.6rem;
          height: 140px;
          
        }
    }

      @media (max-width: 768px) {
         .banner-text h1 {
          font-size: 2.5rem;
          line-height: 2.6rem;
          height: 140px;
          
        }

        .banner-text {
          order: 2;
          padding-bottom: 40px;
        }

        .banner-image {
          order: 1;
          margin-bottom: 40px;
        }

        .design1 {
          top: 10%;
          right: 5%;
        }

        .design2 {
          bottom: 20px;
          right: 15px;
          width: 60px;
        }

        .design3{
          bottom: 25px;
          left: -40px;
          width: 70px;
          animation: slide-in 4s ease-out forwards, pulse 5s 4s infinite alternate; /* Slide in, then pulse */

        }

     }

    .banner-text p {
      font-size: 1rem;
      margin-bottom: 2rem;
      max-width: 500px;
    }
    .banner-text .btn {
      background: #3daaf5;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 0.7rem;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
    }

    .btn-outline {
        font-size: 15px; 
        display: inline-block;
        padding: 10px 40px;
        border: 1.5px solid #636AE8FF;
        border-radius: 24px;
        font-size: 1rem;
        color: #636AE8FF;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Hover */
    .btn-outline:hover {
        background: #636AE8FF;
        color: white;
    }
    /* Pressed */
    .btn-outline:hover:active {
        background: #636AE8FF;
        color: white;
    }
    /* Disabled */
    .btn-outline:disabled {
        opacity: 0.4; 
    }

    .banner-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 280px;
      margin-top: 2rem;
    }
    .banner-image img {
      max-width: 100%;
      border-radius: 1rem;
    }


   
    /* Responsive */
    @media (max-width: 768px) {
      header nav {
        display: none;
      }
      .banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
      }
      .banner-text h1 {
        font-size: 2rem;
      }
      .banner-text p {
        font-size: 0.95rem;
      }
      .banner-image {
        margin-top: 1.5rem;
      }
    }
    /* Who We Are Section */
.who-we-are {
  padding: 120px;
  background: #FFFFFF;
}

.who-we-are .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.who-we-are .who-text {
  flex: 1 1 50%;
}

.who-we-are .who-text h2 {
  font-size: 0.9em;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--prim-color);
  margin-bottom: 30px;
}

.who-we-are .who-text h6 {
  font-size: 2.9em;
  font-weight: 500;
  position: relative;
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1;
}


.who-we-are .who-text p {
  font-size: 0.9em;
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--secondary-color);
}

 @media (max-width: 768px) {

    .who-we-are {
      padding: 80px 20px;
      background: #FFFFFF;
    }
    .who-we-are .who-text h2 {
      font-size: 1.0em;
    }

    .who-we-are .who-text h6 {
      font-size: 2.4em;
    }

 }

.img-who-underline {
    width: 200px;
}

/*
.who-we-are .who-text h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #4444dd;
  margin-top: 10px;
  border-radius: 2px;
}
  */

.who-we-are .who-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}



.who-we-are .who-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Why We Standout Section */
.why-standout {
  padding: 120px;
  background: #FFFFFF;
  text-align: center;
   opacity: 0;
  transform: translateY(50px);
 
}

.why-standout.animate {
   animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}


.why-standout h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

@media (max-width: 768px) {
   .why-standout h2  {
      font-size: 2.5rem;
    }

 }

.why-standout .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 even columns */
  gap: 20px;
}

.why-standout .card {
  opacity: 0;
  transform: scale(0.9);
}

.why-standout .card.animate {
  animation: scaleIn 0.8s ease forwards;
}



.why-standout .card:nth-child(1) {
  animation-delay: 0.3s;
}
.why-standout .card:nth-child(2) {
  animation-delay: 0.6s;
}
.why-standout .card:nth-child(3) {
  animation-delay: 0.9s;
}
.why-standout .card:nth-child(4) {
  animation-delay: 1.2s;
}

/* Hover animation on cards */
.why-standout .card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Top row */
.card-green {
  grid-column: span 1; /* smaller width */
}

/* Bottom row */
.card-orange,
.card-purple {
  grid-column: span 2; /* wide card */
  flex-direction: row; /* text left, icon right */
  align-items: center;
  justify-content: space-between;
}

.card-pink {
  grid-column: span 1; /* small card */
}


/* Same base card styles */
.card {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  overflow: hidden;
  height: 355px;
}


.card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.card p {
  color: #444;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #171A1FFF;
}

.card a {
  font-weight: 600;
  text-decoration: none;
}

 @media screen and (min-width: 769px) and (max-width: 1024px) {
    .card h3 {
      font-size: 1.4rem;
    }

    .card p {
      line-height: 1.5;
      font-size: 1.0rem;
    }

    .card {
      padding: 40px 20px;
    }

 }

.card .orange-icon-area {
  position: relative;
  bottom: -35%;
}

.card .pink-icon-area {
    position: absolute;
    bottom: -15%;
    right: -30px;
}

.card .green-icon-area {
    position: absolute;
    bottom: -20%;
    right: -20px;
}

/* Background colors */
.card-green {
  background: #d4f6f1;
}
.card-purple {
  background: #dcd6f7;
}
.card-orange {
  background: #f9dfd8;
}
.card-pink {
  background: #fce4ec;
}

/* Link Colors */
.card-green a { color: #00bfa5; }
.card-purple a { color: #5c6bc0; }
.card-orange a { color: #e65100; }
.card-pink a { color: #ec407a; }

.card-purple svg,
.card-orange svg {
  width: 70px;
  height: 70px;
  margin: 0; /* remove top margin */
}

/* Responsive */
@media (max-width: 768px) {
  .card .icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
 .why-standout .cards {
    grid-template-columns: 1fr;
  }

  .card-green,
  .card-purple,
  .card-orange,
  .card-pink {
    grid-column: auto !important;
  }
}

.btn-try {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.large-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

@media (max-width: 768px) {
  .large-cards {
    display: block;
  }

  .large-text-area {
    height: 90%;
    width: 100% !important;
  }

  .card .large-icon-area {
    position: absolute;
    bottom: 20%;
    right: 120px;
  }

  .card .orange-icon-area {
      position: absolute;
      bottom: 20%;
      right: 120px;
  }

}

@media screen and (min-width: 769px) and (max-width: 1024px) {

  .large-text-area {
    height: 100% !important;
  }

  .btn-try {
    left: 20px;
}

.card .orange-icon-area {
  bottom: -35%;
  right: -10px;
}

.card .green-icon-area {
    position: absolute;
    bottom: -25%;
    right: -30px;
}

.large-icon-area {
  margin-right: -20px;
}


}



.large-text-area {
    height: 90%;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.small-text-area {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

} 

/* What We Do Section */
.what-we-do {
  padding: 120px;
  background: #FFFFFF;
  overflow: hidden;
}

.what-we-do .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  flex-wrap: wrap;
}

.what-we-do .what-image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.what-we-do .what-image img{
    max-width: 100%;
    border-radius: 20px;
    height: 680px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.what-we-do .what-text {
  flex: 1 1 30%;
}

.what-we-do .what-text h2 {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  line-height: 3rem;
  color: var(--secondary-color);
}

@media (max-width: 768px) {

  .what-we-do {
    padding: 80px 30px;
  }

  .what-we-do .container {
    display: block;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .what-we-do .what-image img{
      height: 340px;
  }

  .what-we-do .what-text h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {

 .what-we-do .what-image img{
      height: 385px;
  }
}

.what-we-do .what-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #6E7787FF;
}

.what-text .btn-outline {
    margin-top: 50px;
}


 /* --- Left Column: Text & Stats Styling --- */
        .what-text-column {
            width: 50%;
        }

        @media (max-width: 768px) {
            .what-text-column {
                width: 100%;
                margin-bottom: 40px;
            }

        }

        /* Typography */
        .home-what-subtitle {
            font-size: 0.9em;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--prim-color);
            margin-bottom: 30px;
        }

        .home-what-title {
            font-size: 2.9em;
            line-height: 1;
            margin: 0 0 30px 0;
            font-weight: 500;
            color: var(--secondary-color);
        }

        .home-what-description {
            font-size: 1em;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.8;
            color: var(--secondary-color);
        }

        /* Progress Bars */
        .progress-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .progress-item {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .progress-item:last-child {
            border-bottom: none;
        }

        .label {
            flex: 1;
            color: var(--secondary-color);
        }

        .percent {
            font-weight: bold;
            color: var(--prim-color);
        }

        .bar-bg {
            width: 100%;
            height: 3px;
            background-color: rgba(0, 0, 0, 0.2);
            margin-top: 5px;
        }

        .bar {
            height: 100%;
            width: 0; /* Initial state for animation */
            background-color: var(--prim-color);
            transition: width 1.5s ease-out; /* Controlled by JS */
        }

        /* CTA Button */
        .home-what-cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--prim-color);
            color: var(--bg-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

.products {
  text-align: center;
  padding: 120px 10%;
  background: #FFFFFF;
}

.products h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
    .products h2 {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 30px;
    }


}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  animation: wiggle 0.6s ease;
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-label {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.products-btn {
  margin-top: 80px;
}

.shop-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid #6c63ff;
  border-radius: 24px;
  font-size: 1rem;
  color: #6c63ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: #6c63ff;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Staggered grid effect (middle column higher) */
@media (min-width: 993px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(5) {
    margin-top: -30px; /* adjust this value to match design */
  }
}

.testimonials {
  text-align: center;
  padding: 120px 10%;
  background: #FFFFFF;
}

.testimonials h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 700;
}

@media (max-width: 768px) {
   .testimonials h2 {
      font-size: 2.5rem;
    }

}

.testimonial-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 920px;
  height: 345px;
  position: relative;
}


.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  background: #379ae8;
  border-radius: 25px;
  color: #fff;
  padding: 40px 30px;
  height: 340px;
  text-align: center;
  opacity: 0;
  position: absolute;
  transform: scale(0.9);
  transition: all 0.5s ease;
}


@media (max-width: 768px) {
   .testimonial-wrapper {
      height: 670px;
    }

    .testimonial-card {
      height: 670px;
    }

}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .testimonial-wrapper {
      height: 400px;
    }

    .testimonial-card {
      height: 400px;
    }

}


.testimonial-card p {
    font-size: 1.1rem;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.quote-icon {
  font-size: 28px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.testimonial-author {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-author .author-img {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #b0e8e2, #a3c7f3);
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-author span {
  font-size: 1.2rem;
  font-weight: 500;
}

.stars {
  margin-top: 5px;
  font-size: 1rem;
  color: gold;
}

/* Navigation Arrows */
.testimonial-nav {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin: 0 15px 15px;
  color: #333;
  transition: transform 0.2s;
}

.testimonial-nav:hover {
  transform: scale(1.2);
}

.blogs {
  text-align: center;
  padding: 120px;
  background: #f9fafb;
}

.blogs h2 {
  font-size: 3rem;
  margin-bottom: 100px;
  font-weight: 700;
}

@media (max-width: 768px) {

  .blogs {
    text-align: center;
    padding: 80px 30px;
    background: #f9fafb;
  }

  .blogs .container {
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .blogs h2 {
    font-size: 2.5rem;
    line-height: 2.7rem;
  }

}

.posts {
    display: flex;
    justify-content: space-between;
}

.post {
    background-color: #f9fafb;
    border-radius: 15px;
    padding: 20px;
    width: 32%;
    text-align: left;
    border: 1px solid #c5c5c5;
    text-decoration: none;
   
}

@media (max-width: 768px) {
  post {
    width: 100%;
  }

}

.post:hover {
  background-color: #f0f0f0;
  border: 1px solid var(--prim-color);
}

.post-img-container {
  width: 100%;
   overflow: hidden;
   border-radius: 25px;
   margin-bottom: 30px;
}

.post .post-img {
  transition: transform .8s ease-in-out;
}



.post:hover .post-img {
  transform: scale(1.4);
  transform-origin: 50% 50%;
}

@media (max-width: 768px) {

  .posts {
    display: block;
  }
  .post {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }

  .post:hover .post-img {
    transform: scale(1);
  }

}

.post img {
    width: 100%;
    border-radius: 15px;
}
.post h2 {
    font-size: 1.5em;
    color: #333;
    margin: 10px 0;
    font-weight: 400;
}
.post p {
    color: #666;
    margin: 10px 0;
}
.post .tag {
    display: inline-block;
    background: #F2F2FDFF;
    color: #4c51bf;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
}

.post .grey-tag {
  display: inline-block;
    background: #F3F4F6FF;
    color: #323842FF;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
}

.post .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}
.post a {
    color: var(--prim-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

/* Section background */
.subscribe-section {
  padding: 120px;
  display: flex;
  justify-content: center;
  background: #f9fafb;
}

/* Container */
.subscribe-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap; /* for mobile */
}

/* Left image */
.subscribe-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}


/* Right content */
.subscribe-content {
  flex: 1;
  min-width: 280px;
}

@media (max-width: 768px) {
  .subscribe-section {
    padding: 80px 30px;
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Left image */
  .subscribe-image img {
    width: 100%;
    max-width: 400px;
  }


}

.subscribe-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

@media (max-width: 768px) {
  .subscribe-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 2.7rem;
  }

}

.subscribe-content p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Form */
.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
}

.subscribe-form button {
  background: #1d4ed8;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #2563eb;
}

/* Mobile styles */
@media (max-width: 768px) {
  .subscribe-container {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input, 
  .subscribe-form button {
    width: 100%;
  }
}

/* Sponsors section */
.sponsors-section {
  background: #f9fafb;
  padding: 120px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sponsors-section {
    padding: 80px 30px;
    display: block;
  }
}

.sponsors-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.sponsors-container h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111827;
}

@media (max-width: 768px) {
  .sponsors-container h2 {
   line-height: 2.2rem;
  }

}

/* Sponsor logos */
.sponsors-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sponsor-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  flex: 1 1 250px; /* responsive sizing */
  max-width: 250px;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sponsor-card {
    max-width: 180px;
  }
  
}

.sponsor-card img {
  max-width: 150px;
  height: auto;
}

.sponsor-card:hover {
  transform: translateY(-5px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .sponsors-logos {
    flex-direction: column;
    align-items: center;
  }

  .sponsor-card {
    width: 100%;
    max-width: 320px;
  }
}


/* General Footer */
.footer {
  background: #161D96FF;
  color: #fff;
  padding: 60px 20px 30px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand section */
.footer-brand {
  flex: 1 1 300px;
}

.footer-logo-area {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo {
  width: 60px;
}

.footer-brand h3 {
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.chat-btn {
  background: #379AE6FF;
  color: #fff;
  padding: 12px 30px;
  border-radius: 15px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.chat-btn:hover {
  background: #197DCAFF;
}

/* Links */
.footer-links {
  display: flex;
  flex: 2;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dbeafe;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
  padding-right: 15px; 
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links a::after {
  content: "↗"; /* the arrow */
  position: absolute;
  right: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Socials */
.socials {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.socials a {
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  color: #60a5fa;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 40px auto 0px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
}

.footer-bottom a {
  color: #dbeafe;
  font-size: 14px;
  margin-right: 20px;
  text-decoration: none;
}

footer h3, footer h4 {
  color: var(--text-color);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom a.back-to-top {
   position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  color: #323842FF;
  font-weight: bold;
  border-radius: 50%;
  text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    opacity: 0;         /* hidden by default */
    pointer-events: none;
    transform: translateY(20px);
}


  .footer-bottom a.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .back-to-top:hover {
    background: #e0e7ff;
  }

.footer-bottom-links {
  display: flex;
  gap: 10px;
}

.about-section {
      width: 100%;
      margin: 0 auto;
      padding: 120px;
  }

  .section-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-header h2 {
      font-size: 2.5rem;
      color: #1a5f7a;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
  }

  .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #2ecc71;
  }

  .about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 120px 0px;
  }

  .about-text {
      flex: 1;
      min-width: 300px;
  }
/*
  .about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    line-height: 3rem;
  }
    */

  .about-text h3 {
      font-size: 1.5rem;
      color: var(--dark-primary);
      margin: 30px 0px;
  }

    @media screen and (min-width: 769px) and (max-width: 1024px) {
      .about-text h3 {
          font-size: 1.2rem;
      }

      .about-text h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
      }

    

  }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #555;
            line-height: 1.8;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .stat-box {
            background: #161D96FF;
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            flex: 1;
            min-width: 150px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-text {
            font-size: 1rem;
        }

        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

         @media screen and (min-width: 769px) and (max-width: 1024px) {
           

           .stat-number {
                font-size: 2rem;
           }

            .stat-text {
                font-size: 1rem;
            }

            .about-image img {
              height: 750px;
              object-fit: cover;
            }

         }


        .values-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .value-box {
            flex: 1;
            min-width: 250px;
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .value-box:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 2.5rem;
            color: #2ecc71;
            margin-bottom: 15px;
        }

        .value-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1a5f7a;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .about-text, .about-image {
                min-width: 100%;
            }
            
            .stat-box {
                min-width: calc(50% - 20px);
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 120px 30px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .stat-box {
                min-width: 100%;
            }
            
            .value-box {
                min-width: 100%;
            }
        }

        .services-section {
            width: 100%;
            margin: 0 auto;
            padding: 120px 10%;
        }

         .services-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .services-content-top {
           display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            padding: 120px 0px 0px;
        }

         @media (max-width: 480px) {
          .stat-box {
            background: #161D96FF;
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
            .services-section {
                padding: 0px 30px 120px;
            }

            .services-content {
                flex-direction: column;
            }

             .services-section .about-image{
                display: none;
            }


          }

        .section-mission {
          display: flex;
          gap: 30px;
          padding-top: 120px;

        }

        /* Same base card styles */
  .card-about {
    position: relative;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    overflow: hidden;
  }

  .card-about h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
  }

  .card-about p {
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #171A1FFF;
  }

  .section-build {
    padding: 60px 10% 240px;
  }

  .core-values {
    padding: 120px;
    background-color: #f9fafb;
  }

  @media (max-width: 768px) {
    .core-values {
        padding: 0px 10% 120px;
    }

  }

        

  .core-values-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

    .core-values h2 {
      font-size: 3rem;
    font-weight: 500;
    position: relative;
    line-height: 3rem;
    text-align: center;
  }


    /* Core Values */
  .core-values .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto;
  }

  .core-values .grid .flipper {
      text-align: center;
      padding: 40px 20px;
      background: #f8f9fa;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      height: 250px;
      /*transition: transform 0.3s;*/
  }

  /* .core-values .grid div:hover {
      transform: translateY(-5px);
  }*/

  .core-values .grid i {
      font-size: 3em;
      color: var(--text-color);
      margin-bottom: 15px;
  }

  .core-values .grid h3 {
      font-size: 1.5em;
      margin-bottom: 10px;
  }

  .core-values .grid p {
      font-size: 1em;
      font-weight: 300;
  }

  .flip-container {
    perspective: 1000px; /* Adjust as needed */
  }

  .flipper {
      transition: 0.8s; /* For smooth animation */
      transform-style: preserve-3d;
      position: relative; /* Or adjust positioning as needed */
  }

  .front, .back {
    backface-visibility: hidden;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    padding: 40px 20px;
    width: 100%;
    height: 100%;
  }

  .front h3 {
    color: var(--text-color);
  }

  .card1{
    background: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_services_leadership.jpg") no-repeat center center/cover;
    border-radius: 15px;
    
  }

  .card2{
    background: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_services_technical_expertise1.jpg") no-repeat center center/cover;
    border-radius: 15px;
    color: #FFFFFF;
  }

  .card3{
    background: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_services_global_partnership.jpg") no-repeat center center/cover;
    border-radius: 15px;
    color: #FFFFFF;
  }

  .card4{
    background: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_services_custom_solution1.jpg") no-repeat center center/cover;
    border-radius: 15px;
    color: #FFFFFF;
  }

  .back {
    transform: rotateY(180deg); /* For a horizontal flip */
    -webkit-transform: rotateY(180deg) translateZ(1px);
    -moz-transform: rotateY(180deg) translateZ(1px);
    background-color: #FFFFFF;
    border-radius: 15px;
  }

  .flip-container:hover .flipper {
    transform: rotateY(180deg); /* Flips the entire flipper */
  }

  @media screen and (min-width: 769px) and (max-width: 1024px) {
      .core-values h2 {
      font-size: 2.5rem;
      line-height: 2.5rem;
    }

      .core-values .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

}

  .banner-section {
      color: white; 
      padding: 80px;
      text-align: left;
  }

    @media screen and (min-width: 769px) and (max-width: 1024px) {
      .banner-section {
          padding: 80px 60px;
      }
    }


  .banner1 {
      background-image: linear-gradient(rgba(22, 29, 150, 0.7), #636ae8), url("../img/img_banner2.jpg");
      background-size: cover; /* Ensures the background image covers the entire element */
      background-position: center; /* Centers the background image */
      background-repeat: no-repeat;
  }

    .banner2 {
      background-image: linear-gradient(rgba(22, 29, 150, 0.7), #636ae8), url("../img/img_banner3.jpg");
      background-size: cover; /* Ensures the background image covers the entire element */
      background-position: center; /* Centers the background image */
      background-repeat: no-repeat;
  }

    .banner3 {
      background-image: linear-gradient(rgba(22, 29, 150, 0.7), #636ae8), url("../img/img_banner4.jpg");
      background-size: cover; /* Ensures the background image covers the entire element */
      background-position: center; /* Centers the background image */
      background-repeat: no-repeat;
  }

    .banner4 {
      background-image: linear-gradient(rgba(22, 29, 150, 0.7), #636ae8), url("../img/img_banner5.jpg");
      background-size: cover; /* Ensures the background image covers the entire element */
      background-position: center; /* Centers the background image */
      background-repeat: no-repeat;
  }

    .banner5 {
      background-image: linear-gradient(rgba(22, 29, 150, 0.7), #636ae8), url("../img/img_banner6.jpg");
      background-size: cover; /* Ensures the background image covers the entire element */
      background-position: center; /* Centers the background image */
      background-repeat: no-repeat;
  }

    .banner6 {
      background-image: linear-gradient(rgba(22, 29, 150, 0.7), #636ae8), url("../img/img_banner7.jpg");
      background-size: cover; /* Ensures the background image covers the entire element */
      background-position: center; /* Centers the background image */
      background-repeat: no-repeat;
  }

  .banner-container {
      width: 100%;
      margin: 0 auto;
  }

  .breadcrumb {
      display: flex;
      justify-content: start;
      margin-bottom: 30px;
      font-size: 1rem;
  }

  .breadcrumb a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
      margin-right: 5px;
  }

  .breadcrumb p {
      display: flex;
      justify-content: start;
      margin-bottom: 30px;
      font-size: 1rem;
  }

  .breadcrumb a:hover {
      color: #636ae8;
  }

  .breadcrumb span {
      margin: 0 5px;
      color: #FFFFFF;
  }

  .banner-title {
      font-size: 3.3rem;
      letter-spacing: 2px;
      font-weight: 700;
  }

  .banner-content {
      max-width: 800px;
      margin: 0;
      font-size: 1.2rem;
      padding: 20px 0;
  }

  .highlight {
      color: #22ccb2;
      font-weight: 700;
  }

  .cta-button {
      display: inline-block;
      margin-top: 40px;
      padding: 15px 40px;
      background-color: #2ecc71;
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cta-button:hover {
      background-color: #25a25a;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
      .banner-title {
          font-size: 2.5rem;
      }
      
      .banner-content {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 768px) {
      .banner-section {
          padding: 60px 20px;
      }
      
      .banner-title {
          font-size: 2rem;
      }
      
      .banner-content {
          font-size: 1.1rem;
      }
      
      .cta-button {
          padding: 12px 30px;
          font-size: 1rem;
      }
  }

  @media (max-width: 480px) {
      .banner-section {
          padding: 50px 15px;
      }
      
      .breadcrumb {
          font-size: 0.9rem;
      }
      
      .banner-title {
          font-size: 1.8rem;
          letter-spacing: 1px;
      }
      
      .banner-content {
          font-size: 1rem;
      }
      
      .cta-button {
          padding: 10px 25px;
          font-size: 0.9rem;
          margin-top: 30px;
      }
  }




  /* SERVICES */
  /* Services Section */
  .services {
      padding: 80px 0;
      background-color: white;
  }

  .section-title {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
  }

  .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--secondary);
  }

  .section-title p {
      color: var(--gray);
      max-width: 800px;
      margin: 0 auto;
  }

  .service-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .service-card {
      background-color: var(--light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
  }

  .service-card:hover {
      transform: translateY(-10px);
  }

  .service-card-content {
      padding: 25px;
  }

  .service-card h3 {
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 15px;
  }

  .service-card p {
      color: var(--gray);
      margin-bottom: 20px;
  }

  .divider {
      height: 2px;
      background: linear-gradient(to right, transparent, var(--secondary), transparent);
      margin: 30px 0;
  }

  /* Features Section */
  .features {
      padding: 80px 0;
      background-color: var(--light);
  }

  .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .feature {
      text-align: center;
      padding: 30px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .feature-icon {
      font-size: 2.5rem;
      color: var(--secondary);
      margin-bottom: 20px;
  }

  .feature h3 {
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 15px;
  }

  .feature p {
      color: var(--gray);
  }

  /* CTA Section */
  .cta {
      padding: 80px 0;
      background: linear-gradient(to right, var(--primary), #2c3e50);
      color: white;
      text-align: center;
  }

  .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }

  .cta p {
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 1.1rem;
  }

/* Lists */
.services-content ul, .offer ul {
      list-style: none;
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
      padding-left: 0px;
  }

  .services-content ul li, .offer ul li {
      margin-bottom: 15px;
      padding-left: 30px;
      position: relative;
      font-size: 1.0em;
  }

  .services-content ul li::before, .offer ul li::before {
      content: '\f058';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--dark-primary);
  }

  .services-stat-box {
      background: var(--secondary-color);
      color: white;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      flex: 1;
      min-width: 150px;
  }

  .services-content .about-image {
    display: flex;
  }

@media (max-width: 768px) {
  .services-content .about-image {
    display: none;
  }
}

.mb-30 {
    margin-bottom: 30px;
}

.ic-services {
  width: 80px;
}

.blog-post {
    background: #f9fafb;
    border-radius: 25px;
    box-shadow:  0px 4px 9px #171a1f1C, 0px 0px 2px #171a1f1F;
    padding: 20px;
    width: 32%;
    text-align: left;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-8px);
}

.blog-post img {
    width: 100%;
    border-radius: 10px;
}
.blog-post h2 {
    font-size: 1.5em;
    color: #333;
    margin: 10px 0;
    font-weight: 400;
}
.blog-post p {
    color: #666;
    margin: 10px 0;
}
.blog-post .tag {
    display: inline-block;
    background: #F2F2FDFF;
    color: var(--dark-primary);
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
}

.blog-post .grey-tag {
  display: inline-block;
    background: #F3F4F6FF;
    color: #323842FF;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
}

.blog-post .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.blog-post a {
    text-decoration: none;

}


    .section-contact {
      padding: 120px 10%;
    }
 
    .contact-section {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
    }

    .subtitle {
      margin-bottom: 50px;
    }

    .subtitle h2 {
      font-size: 45px;
      color: #000000;
      font-weight: 700;
    }

    .subtitle p {
      font-size: 17px;
      color: rgb(100 114 143);
    }

    .contact-form {
        flex: 1.5;
        padding: 40px;
        background: #f9f9f9;
        border-radius: 10px;
    }

    .form-cols {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .group-width {
      width: 50%;
    }

    @media (max-width: 900px) {
      .group-width {
        width: 100%;
      }
     .form-cols {
        flex-direction: column;
        gap: 0px;
      }
    }

    .contact-info {
        flex: 1;
        padding: 0px;
    }
    .contact-form h2, .contact-info h2 {
        font-size: 1em;
        margin-bottom: 10px;
    }
    .contact-form p, .contact-info p {
        color: #666;
        margin-bottom: 20px;
    }
    .form-group {
        margin-bottom: 35px;
    }
    .form-group input, .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid rgb(206 212 218);
        background-color: #FFFFFF;
        border-radius: .25rem;
        box-sizing: border-box;
        font-size: 1rem;
        line-height: 1.25rem;
    }
    .form-group textarea {
        height: 100px;
    }
    .form-group label {
        display: block;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .form-group input[type="checkbox"] {
        margin-right: 10px;
    }
    .send-button {
        background-color: #636ae8;
        color: white;
        padding: 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        font-size: 17px;
    }
    .send-button:hover {
        background-color: #4b50b3;
    }
    .contact-info div {
        margin-bottom: 20px;
    }
    .contact-info div i {
        margin-right: 10px;
    }

    @media (max-width: 900px) {
      .contact-section {
        flex-direction: column;
      }

      .contact-info {
        margin-top: 40px;
      }
    }


    ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    rgb(161, 161, 161);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:   rgb(161, 161, 161);
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:   rgb(161, 161, 161);
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    rgb(161, 161, 161);
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    rgb(161, 161, 161);
}

::placeholder { /* Most modern browsers support this now. */
   color:   rgb(161, 161, 161);

}

.faq-container {
      max-width: 800px;
      margin: 50px auto;
      padding: 0 20px;
    }
    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 25px 0;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      color: #636ae8;
      font-size: 20px;
    }
    .faq-question span {
      font-size: 25px;
      font-weight: bold;
    }
    .faq-answer {
      display: none;
      transition: padding 0.4s ease-in-out, opacity 0.4s ease-in-out;
      opacity: 0;
      margin-top: 0;
      font-size: 17px;
      color: #333;
    }

       .faq-question:after {
            content: "+";
            font-size: 1.5em;
            transition: transform 0.4s ease-in-out;
        }
        .faq-question.open:after {
            content: "-";
            transform: rotate(180deg);
        }

    .faq-answer.show {
            display: block;
            padding: 15px;
            opacity: 1;
        }


    /* Enquiry Section */
    .enquiry {
      text-align: center;
      margin-top: 120px;
      padding: 80px 20px;
      background-color: #f9fafb;
    }
    .enquiry h2 {
      font-size: 45px;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--secondary-color);
    }
    .enquiry p {
      color: var(--secondary-color);
      margin-bottom: 30px;
    }
    .enquiry-cards {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 80px;
    }


    .enquiry-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 10px;
      width: 320px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

     .enquiry-card a {
        width: 100%;
        height: 100%;
        display: block;
        padding: 40px 20px;
        text-decoration: none;
    }

    .enquiry-card:hover {
      transform: translateY(-5px);
    }
    .enquiry-card i {
      font-size: 28px;
      color: var(--prim-color);
      margin-bottom: 10px;
    }
    .enquiry-card p {
      margin: 5px 0;
      font-size: 16px;
    }

    .enquiry-title {
      font-weight: 600;
      font-size: 16px;
    }

    /* Mobile-friendly CSS */
        @media (max-width: 768px) {
            .faq-container {
                margin: 20px;
                padding: 10px;
            }
            .faq-question {
                padding: 10px;
                font-size: 1em;
            }
            .faq-question:after {
                font-size: 1.2em;
            }
            .faq-answer {
                padding: 0 10px 10px;
                font-size: 0.9em;
            }
            .contact-section {
                margin-top: 30px;
            }
            .contact-box {
                display: block;
                width: 80%;
                margin: 10px auto;
                padding: 15px;
            }
          /*  h1 {
                font-size: 1.5em;
            }*/
        }


         .products-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 40px 40px;
            padding: 120px 10%;
        }
        .product-item {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 60px;
            padding: 0px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-img {
          object-fit: cover;
          width: 100%;
          height: 100%;
        }
        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .product-item p {
            color: #666;
            margin: 0;
        }
        .product-hover {
            position: absolute;
            bottom: -60px;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: bottom 0.3s ease;
        }
        .product-item:hover .product-hover {
            bottom: 0;
        }
        .product-hover h3 {
            margin: 0;
            color: #000;
            font-size: 1.2em;
            font-weight: bold;
        }
        @media (max-width: 600px) {
            .products-section {
                grid-template-columns: 1fr;
            }
            
            .product-hover {
                height: 60px;
                bottom: 0;
            }
            .product-hover h3 {
                font-size: 1.3em;
            }
        }

        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 120px 20px;
        }
.img-bg-equity {
  position: relative;
  background: linear-gradient(rgba(22, 29, 150, 0.5), #636ae8), url("../img/img_blog_post_equity.png") no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: left;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
}

.img-bg-diversity {
  position: relative;
  background: linear-gradient(rgba(22, 29, 150, 0.5), #636ae8), url("../img/img_blog_post_diversity.png") no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: left;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
}


.img-bg-financial {
  position: relative;
  background: linear-gradient(rgba(22, 29, 150, 0.5), #636ae8), url("../img/img_blog_post_financial.png") no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: left;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
}

.blog-content h2 {
            color: #000;
            font-size: 1.3em;
            margin-top: 40px;
        }
        .blog-content h3 {
            color: #000;
            font-size: 1.2em;
            margin: 30px 0px 0px;
        }
        .blog-content p {
            color: #000;
            margin: 10px 0 30px;
            display: block;
        }
        .blog-content ul {
            color: #000;
            margin: 10px 0 10px 20px;
            list-style-type: disc;
        }
        .blog-content ul li {
            margin-bottom: 10px;
        }

         .blog-content-details {
          margin-bottom: 60px;
        }
        .comment-section {
            margin-top: 60px;
        }
        .comment-section h3 {
            color: #000;
            font-size: 1.2em;
        }
       
        .comment-section form {
            display: flex;
            flex-direction: column;
        }
        .comment-section input,
        .comment-section textarea {
            margin-bottom: 10px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
        }
        .comment-section input[type="submit"] {
            background-color: #636ae8;
            color: #fff;
            border: none;
            cursor: pointer;
            padding: 20px;
            border-radius: 5px;
            font-size: 16px;
            margin-top: 30px;
        }
        .comment-section input[type="submit"]:hover {
            background-color: #4b50b3;
        }
        @media (max-width: 600px) {
            .blog-content h2 {
                font-size: 1.3em;
            }
            .blog-content h3 {
                font-size: 1em;
            }
        }


         .carousel-container {
            width: 100%;
            height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .carousel-wrapper {
            overflow: hidden;
            flex: 1;
            display: flex;
            align-items: center;
        }

        .carousel {
            display: flex;
            height: 100%;
            align-items: center;
        }

        .slide {
            min-width: 100vw;
            width: 100vw;
            height: 100%;
            background: white;
            padding: 60px 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-shrink: 0;
        }

        .slide-number {
            font-size: 80px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .slide-title {
            font-size: 32px;
            color: #333;
            margin-bottom: 15px;
        }

        .slide-description {
            font-size: 16px;
            color: #FFFFFF;
            line-height: 1.6;
            width: 60%;
        }

  @media (max-width: 768px) {

       .slide {
            padding: 60px 30px;
        }

         .slide-description {
            width: 100%;
        }
  }

        .subtitle {
            font-size: 0.8em;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #01afef;
            margin-bottom: 10px;
            font-weight: 600;
            width: 60%;
        }

        .banner-slide-title {
            font-size: 3.0em;
            line-height: 1.1;
            margin: 0 0 20px 0;
            font-weight: 600;
            color: #FFFFFF;
            width: 60%;
        }

        .banner-text-area {
            width: 60%;
        }

                /* --- CTA Button Styling --- */
.banner-cta-button {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    
    /* Set the button container to black or fully transparent */
    background-color: #01afef; /* Use the dark overlay color or black */
    padding: 15px 30px;
    color: #FFFFFF; /* Text is white */
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    border: 1px solid #01afef; /* Add a border to define the shape when transparent */
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

 .banner-cta-button:hover {
      background-color: #027daa;
      color: #FFFFFF; /* New background color on hover */
      border: 1px solid #027daa;
    }


        .cta-text, .cta-arrow {
    position: relative;
    z-index: 2;
    padding: 15px 30px; /* Apply padding to the inner elements */
    color: #373536; /* Ensure text is white by default */
    /* Add a subtle transition for the text color change */
    transition: color 0.3s ease-out; 
}

/* State for when the button is hovered and the bar is in place */
.banner-cta-button.hovered .cta-text, 
.banner-cta-button.hovered .cta-arrow {
    color: #373536; /* Change text to black when background is yellow */
}

.cta-arrow {
    margin-left: -20px; /* Adjust spacing since padding is on inner spans */
    padding-left: 0;
    padding-right: 30px;
}

/* The yellow bar element */
.cta-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    /* Initial state: Hidden to the left */
    transform: translateX(-100%); 
    z-index: 1; 
}

.btn-area {
  margin-top: 30px;
}

  @media (max-width: 768px) {

       .banner-slide-title {
            font-size: 2.2em;
            width: 100%;
        }
  }

       /* .banner-cta-button {
           position: relative;
            display: inline-block;
            padding: 20px 30px;
            background-color: #01afef;
            color: #373536;
            text-decoration: none;
            font-weight: 500;
            font-size: 1em;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 40px;
            border-radius: 10px;
            width: 250px;
        }
*/

       
        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 30px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

        .btn {
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            transform: scale(1.1);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
        }

        .btn:active {
            transform: scale(0.95);
        }

      .indicators {
            position: absolute;
            right: 80px;
            top: -450px;
            gap: 15px;
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .indicator {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.5);
            overflow: hidden;
            position: relative;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .indicators {
                position: relative;
                display: flex;
                right: 0px;
                top: 0px;
                gap: 15px;
            }

          .indicator {
              width: 50px;
              height: 50px;
              margin-bottom: 0px;

          }
        }

        .indicator::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .indicator.active {
            transform: scale(1.15);
            border-color: #01afef;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
        }

        .indicator.active::after {
            background: rgba(0, 0, 0, 0.3);
        }

        .indicator:hover:not(.active) {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .indicator:hover:not(.active)::after {
            background: rgba(0, 0, 0, 0.1);
        }

        .first {
            background-image: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url('../img/img_banner1.jpg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

        .second {
            background-image: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url('../img/img_banner5.jpg');
             background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

        .third {
            background-image: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url('../img/img_banner8.jpg');
             background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

        .four {
            background-image: url('img/frame12.jpeg');
             background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

         .btn {
            display: none;
        }



         .why-we-standout {
            padding: 120px;
            background-color: #FFFFFF;
        }

        .why-we-standout h1 {
          font-size: 1.0em;
          font-weight: 600;
          position: relative;
          color:var(--prim-color);
          margin-bottom: 30px;
          text-align: center;
          text-transform: uppercase;
        }

        .why-we-standout h6 {
          font-size: 2.9em;
          font-weight: 500;
          position: relative;
          color: var(--secondary-color);
          margin-bottom: 30px;
          line-height: 1;
          width: 50%;
          margin: 0 auto;
          text-align: center;
        }

        @media (max-width: 768px) {
          .why-we-standout {
              padding: 80px 20px;
             
          }

          .why-we-standout h1 {
            font-size: 1.0em;
          }

          .why-we-standout h6 {
            font-size: 2.4em;
            width: 100%;
          }

        }

        .home-services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            position: relative;
            margin-top: 40px;
        }

        .home-service-card {
            padding: 60px 40px;
            text-align: center;
            position: relative;
            background: white;
        }

        .home-service-card:nth-child(1),
        .home-service-card:nth-child(2) {
            border-bottom: 1px solid #e0e0e0;
        }

        /*.home-service-card:nth-child(odd) {
            border-right: 1px solid #e0e0e0;
        }*/

        .icon-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-container img {
            width: 80px;
            height: 80px;
        }

        .home-service-title {
            font-size: 25px;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--secondary-color);;
        }

        .home-service-description {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            max-width: 400px;
            margin: 0 auto;
        }

        /* Center dot */
        .center-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: #000;
            border-radius: 50%;
            z-index: 10;
            padding: 10px;
        }

        /* Animated lines */
        .line {
            position: absolute;
            background: #e0e0e0;
            z-index: 5;
        }

        .line-vertical-left {
            width: 1px;
            height: 0;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .line-vertical-right {
            width: 1px;
            height: 0;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
        }


        .line-horizontal-top {
            height: 1px;
            width: 0;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .line-horizontal-bottom {
            height: 1px;
            width: 0;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

         @media (max-width: 768px) {

          .line-vertical-left {
            display: none;
          }

          .line-vertical-right {
            display: none;
          }

          .line-horizontal-top {
            display: none;
          }

          .line-horizontal-bottom {
             display: none;
          }

          .center-dot {
             display: none;
          }
        }

        /* Animation classes */
        .home-services-grid.animate .line-vertical-left {
            animation: slideDownTop 1s ease-out forwards;
        }

        .home-services-grid.animate .line-vertical-right {
            animation: slideDownBottom 1s ease-out forwards;
        }

        .home-services-grid.animate .line-horizontal-top {
            animation: slideRightLeft 1s ease-out 0.3s forwards;
        }

        .home-services-grid.animate .line-horizontal-bottom {
            animation: slideRightRight 1s ease-out 0.3s forwards;
        }

        @keyframes slideDownTop {
            from {
                height: 0;
            }
            to {
                height: 50%;
            }
        }

        @keyframes slideDownBottom {
            from {
                height: 0;
            }
            to {
                height: 50%;
            }
        }

        @keyframes slideRightLeft {
            from {
                width: 0;
            }
            to {
                width: 50%;
            }
        }

        @keyframes slideRightRight {
            from {
                width: 0;
            }
            to {
                width: 50%;
            }
        }

        @media (max-width: 768px) {
            .home-services-grid {
                grid-template-columns: 1fr;
            }

            .home-service-card:nth-child(odd) {
                border-right: none;
            }

            .home-service-card {
                border-bottom: 1px solid #e0e0e0;
            }

            .home-service-card:last-child {
                border-bottom: none;
            }
         }

           /* --- SCROLL ANIMATION: INITIAL STATE (HIDDEN) ---
        */

        /* Text Elements: Slide up from the bottom */
        .animate-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        /* The delays will be applied by JS for the staggering effect */

        /* Image Elements: Slide in from their respective directions */
        .animate-img-1 { /* Logo Box - Fades in */
            opacity: 0;
            transition: opacity 0.8s ease-out 0.8s; /* Delayed fade-in */
        }
        .animate-img-2 { /* Main Left Image - Slides up */
            transform: translateY(20%);
            transition: transform 0.8s ease-out;
        }
        .animate-img-3 { /* Bottom Right Image - Slides up and left */
            transform: translate(20px, 20px);
            opacity: 0;
            transition: transform 0.8s ease-out 0.2s, opacity 0.6s ease-out 0.2s; 
        }


        /* --- SCROLL ANIMATION: FINAL STATE (ACTIVE) ---
        This class is added by JavaScript when the element is scrolled into view.
        */

        /* Text Elements */
        .animate-in.visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* Image Elements */
        .logo-box.visible { /* Logo Box */
            opacity: 1;
        }
        .img-1.visible { /* Main Left Image */
            transform: translateY(0);
        }
        .img-2.visible { /* Bottom Right Image */
            transform: translate(0, 0);
            opacity: 1;
        }

        
.sub-heading {
    color: var(--prim-color);
}

.about-banner-title {
  font-size: 60px;
  color: var(--text-color);
  font-weight: 400;
  text-align: center;
  padding: 30px 120px;
}

@media (max-width: 768px) {
  .about-banner-title {
    font-size: 35px;
    padding: 20px;
  }

}



.about-hero  {
  max-height: 100vh;
  height: 100vh;
  padding-top: 0px;
  padding-bottom: 0px;
}

.about-hero-information {
   display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 768px) {
  .about-hero-information h1 {
    font-size: 2em !important;
  }
}

.gallery {
  --s: 300px; /* control the size */
  --g: 10px;  /* control the gap */
  --f: 1.5;   /* control the scale factor */
  
  display: grid;
  gap: var(--g);
  width: calc(3*var(--s) + 2*var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(3,auto);
  margin: 0 auto;
}

@media (max-width: 768px) {
    .gallery {
      --s: 100px; /* control the size */
      --g: 10px;  /* control the gap */
      --f: 1.5;   /* control the scale factor */
      
      display: grid;
      gap: var(--g);
      width: calc(3*var(--s) + 2*var(--g));
      aspect-ratio: 1;
      grid-template-columns: repeat(2,auto);
      margin: 0 auto;
    }

}

.gallery .home-product-item {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  transition: .35s linear;
  border-radius: 15px;
  position: relative;
}

.gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  filter: grayscale(80%);
}

.gallery .home-product-item:hover{
  filter: grayscale(0);
  width:  calc(var(--s)*var(--f));
  height: calc(var(--s)*var(--f));
}

.product-item-overlay {
  background-color: rgba(0, 0, 0, .2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.gallery .home-product-item:hover img{
  filter: grayscale(0);
   width: 100%;
  height: 100%;
}


.gallery .home-product-item:hover .product-item-overlay {
  background-color: rgba(0, 0, 0, 0);
}

.product-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
}

.product-item-title {
  font-size: 1.3rem;
  color: var(--text-color);
  font-weight: 600;
}

.heading-style-h2 {
  color: var(--secondary-color);
}

.testimonial-one-card-wrap {
  border-left: 1px solid #c5c5c5;
}

.testimonial-one-review-wrap {
    border-top: 1px solid #c5c5c5;
}

.testimonial-one-information-text {
  color: var(--secondary-color);
}

.testimonial-card-one {
    border-bottom: 1px solid #c5c5c5;
}

.testimonial-one {
  padding: 60px 0px 120px;
}

@media (max-width: 768px) {
  .testimonial-one {
    padding: 60px 30px;
  }

  .testimonial-one-card-wrap {
    border-left: none;
    margin-top: 40px;
  }

}

.post-date {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.post-date i {
  color: var(--prim-color);
  margin-right: 7px;
}


.home-call-to-action {
  padding: 120px 120px 200px;
   background-color: #f9fafb;
  overflow: hidden;
}

.home-cta-content {
  padding: 120px 40px;
}

 .home-cta-body {
    inset: 0%;
    background-image:   linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_call_to_action.jpg");
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
    border-radius: 20px;
  }

  .home-cta-title {
    font-size: 40px;
    color: var(--text-color);
    font-weight: 400;
    text-align: center;
    padding: 30px 120px;
  }

.cta-btn-area {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .home-call-to-action {
    padding: 80px 30px 200px;
    background-color: #f9fafb;
    overflow: hidden;
  }

  .home-cta-content {
    padding: 80px 20px;
  }


   .home-cta-title {
    font-size: 30px;
    padding: 30px 0px;
  }
}





.about-subtitle-right {
  margin-top: 15px;
}

.about-hero-v2.position-absolute {
    inset: 0%;
    /* background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_banner_blue_barrels.jpg"); 
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;*/
    background-image: linear-gradient(to right, #161D96D9 20%, #0f0f0fE6 70%),  url("../img/img_banner_blue_barrels.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    inset: 0%;
}

.about-section .w-layout-blockcontainer {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.planning-image-content-title-wrapper {
    width: 100%;
    max-width: 350px;
}

.about-modern-infrastructure-right {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 100px 60px;
}


.about-numbers-achievements {
    letter-spacing: -.32px;
    letter-spacing: -.32px;
    font-family: "Bdogrotesk Bf 648 A 656 Fc 86 B 8", Arial, sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.16667;
    font-size: 50px;
}

.modern-infrastructure-counter {
    max-width: 30%;
    width: 30%;
}

.about-numbers-subtitle {
    color: var(--secondary-color);
    letter-spacing: 0;
    font-family: "Bdogrotesk Bf 648 A 656 Fc 86 B 8", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-align:start;
}

.modern-infrastructure-counter-text-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    padding-top: 0px;
    display: flex;
}

.modern-infrastructure-button-wrapper i {
  color: var(--secondary-color);
  font-size: 17px;
}

@media (max-width: 768px) {
  .about-modern-infrastructure-right {
    padding: 80px 30px;
    margin-top: 40px;
  }

  .about-numbers-achievements {
      font-size: 35px;
  }

  .about-numbers-subtitle {
      text-align: center;
  }

}

.expertise-bottom-content-wrapper {
    padding-top: 0px;
}

.expertise-icon-content {
    padding-bottom: 0px;
}

.expertise-bottom-content {
    margin-top: 50px;
}

.outside-overlay:where(.w-variant-75dcd1fa-3094-454a-1c3a-179ea4c4f3c0) {
    background-color: #FFFFFF;
    border-radius: 20px;
}

.foundation-left_conainer {
  align-items: center;
}

.about_foundation_right_img {
  border-radius: 20px;
  height: 665px;
}


.modern-construction-wrapper i {
  color: var(--prim-color);
  font-size: 100px;
}

.about-foundation-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 120px;
    padding-right: 120px;
}

.about-foundation-section {
  padding-left: 15px;
  padding-right: 15px;
}

.about-foundations-mandate {
  padding: 130px 135px 0px;
}

.about-core-values {
  padding-top: 120px !important;
  background-color: #f9fafb !important;
}

@media (max-width: 768px) {
  .about-foundation-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-foundation-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about_foundation_right_img {
    border-radius: 20px;
    height: auto;
    margin-top: 40px;
  }

  .about-foundations-mandate {
    padding: 130px 30px 0px;
  }

  .features-three-card {
    margin-bottom: 60px;
  }

  .about-core-values {
    padding-left: 30px;
    padding-right: 30px;
  }

}


.services-banner-bg {
    inset: 0%;
    background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_banner3.jpg");
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}

.icon-box-three {
    padding-top: 0px;
    padding-right: 20px;
}

.services-left-img {
  height: 750px;
}

.our-services-section {
  padding: 120px;
}

@media (max-width: 768px) {

  .our-services-section {
    padding: 120px 20px;
  }

  .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .services-left-img {
    height: auto;
  }
}

.blog-banner-bg {
    inset: 0%;
    background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_banner6.jpg");
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}

.short-banner-hero {
  max-height: 600px;
  height: 580px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.short-hero-content {
  position: relative;
  height: 580px;
}

.short-banner-container {
  height: 100%;
}

.equity-banner-bg {
    inset: 0%;
    background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_blog_post_equity.png");
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}

.diversity-banner-bg {
    inset: 0%;
    background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_blog_post_diversity.png");
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
}

.financial-banner-bg {
   inset: 0%;
    background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_blog_post_financial.png");
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
}

.blog-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4 even columns */
  gap: 20px;
}

@media (max-width: 768px) {

  .blog-v2-card-content {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 30px;
    padding-right: 30px;
  }

}

.blog-main-post {
  width: 100%;
  padding: 60px 40px 0px;
  border-radius: 20px;
}

.post-img-container-main {
  width: 100%;
   overflow: hidden;
   border-radius: 25px;
   margin-top: 30px;
}

.blog-post-header {
  display: flex;
  justify-content: space-between;
}

.blog-card-arrow {
  background-color: #FFFFFF !important;
   border-color: #c5c5c5 !important;
}

.blog-card-two  {
   border-color: #c5c5c5 !important;
}

.blog-card-two:hover  {
   border-color: var(--prim-color) !important;
   background-color: #f9feff !important;
}

.blog-card-two:hover .blog-card-arrow {
   background-color: var(--prim-color) !important;
}

.blog-card-two:hover .blog-card-arrow img {
   fill: var(--prim-color) !important;
}

.banner-title-style {
  color: var(--text-color);
}

@media (max-width: 768px) {

  .contact-box-wrapper {
    padding-top: 120px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-one-form-section {
    padding-bottom: 120px;
    padding-left: 30px;
    padding-right: 30px;
  }

}

.contact-title-style {
  color: var(--text-color);
}

.blog-card-arrow i {
  color: c5c5c5;
}

.blog-card-two:hover .blog-card-arrow i {
   color: #FFF;
}

.about-hero-bg.position-absolute.blog-two-banner {
    /*background-image: linear-gradient(to right, #0f0f0fc4, #161D96c4), url("../img/img_banner6.jpg");
    background-image: linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_banner6.jpg"); */
    background-image: linear-gradient(to right, #161D96B3 20%, #0f0f0fE6 70%), url("../img/img_banner6.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



.w-webflow-badge {
  display: none !important;
}

.contact-box-grid {
    background-color: var(--dark-primary);
}

.contact-box-one .sub-heading, .contact-box-one .heading-style-h5 {
    color: #FFFFFF;
}


.about-hero-bg.position-absolute.contact-one-bg {
   /* background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_banner4.jpg");*/
   background-image:  linear-gradient(to right, #161D9699 20%, #0f0f0fBF 70%), url("../img/img_banner4.jpg");
    background-position: 0 0, 0 0, 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.products-bg {
   background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_banner11.jpg");
    background-position: 0 0, 0 0, 50%;
     background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}


.additive-bg {
    background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_additives2.jpg");
    background-position: 0 0, 0 0, 50%;
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}

.blog-details-hero-bg {
    background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_additives_man.jpg");
    background-position: 0 0, 0 0, 50%;
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}


.pigments-bg {
   background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_pigments3.jpg");
    background-position: 0 0, 0 0, 50%;
     background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}
spacing-top
.resin-bg  {
   background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_resin3.jpg");
    background-position: 0 0, 0 0, 50%;
     background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;

}

.faqs-bg {
   background-image:  linear-gradient(to right, #0f0f0f, #0f0f0f1a 62%, #0f0f0f00), linear-gradient(#161D9600, #161D965e 44%, #161D96f2), url("../img/img_banner7.jpg");
    background-position: 0 0, 0 0, 50%;
     background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    inset: 0%;
}

.icon-box-four-line.two {
    background-color: #c5c5c5;
    height: 1px;
}

.contact-one-form-input {
    color: var(--secondary-color);
    background-color: #FFFFFF;
    border: 0 solid #FFFFFF;
    border-bottom: 1px solid #c5c5c5;
    width: 100%;
    padding: 34px 15px 34px 0;
}

.contact-one-form-input:focus {
    color: var(--secondary-color);
    border-bottom-color: #979797;
}

.w-input:focus, .w-select:focus {
    border-color: #979797;
    outline: 0;
}

.icon-box-four {
    color: var(--secondary-color);
}

.contact-one-text-area {
    color: var(--secondary-color);
    border-bottom: 1px solid #c5c5c5;
}

.button-style-one {
    background-color: var(--prim-color);
}

.button-text {
    color: #FFFFFF;
}

.button-style-one-background.position-absolute {
        inset: 0%;
        background-color: var(--dark-primary);
        inset: 0%;
  }

.contact-form-check-box.no-margin.one {
    border: 1px solid #c5c5c5;
}

.call-center-logo-style img {
  width: spacing-top40px;
  height: 40px;
}

.blog-card-two {
    background-color: #FFFFFF;
    border: 1px solid #c5c5c5;
    padding: 55px 50px 60px;
}


.blog-card-two:hover  {
   border-color: var(--prim-color) !important;
   background-color: #f9feff !important;
}

.blog-card-information-main-wrap .blog-head-subtitle {
    color: var(--prim-color);
    font-size: 1.1em;
}

.blog-topic-style {
  color: var(--secondary-color);
  opacity: 1 !important;
}

.blue-title {
  color: var(--dark-primary) !important;
  font-weight: 900 !important;
}

.gray-title {
  color: var(--secondary-colory) !important;
  font-weight: 900 !important;
}

.product-name h6{
  color: var(--secondary-color);
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
}

.product-list-item img {
  border-radius: 15px;
}

.product-list-item {
  margin-bottom: 80px;
  height: 400px;
}

.spacing-top-bottom {
  padding: 120px 120px 200px;
}

.blog-posts-hero-title h1 {
  color: var(--text-color);
}

@media (max-width: 768px) {
  .spacing-top-bottom {
    padding: 120px 30px 200px;
  }

}

.blog-title-style {
  text-align: left;
}


.blog-v2-card-content.two {
    background-color: var(--text-color);
    padding-top: 0;
    padding-bottom: 0;
}

blockquote {
    border-left: 2px solid var(--prim-color);
}

/*
.planning-image-one.position-relative.full-height.overflow-hidden {
    border-radius: 20px;
}

*/

/*
.product-item-description {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-top: 15px;
  margin-bottom: 15px;
  transform: translateY(30px);
  opacity: 0;
}
    */  