        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #dbeafe;
            --secondary: #0ea5e9;
            --accent: #8b5cf6;
            --accent-light: #ede9fe;
            --dark: #1e293b;
            --light: #f8fafc;
            --light-alt: #f1f5f9;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --border-radius: 12px;
            --border-radius-lg: 20px;
            --shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 20px 25px -5px rgba(212, 142, 142, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.025em;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: var(--gradient);
            color: white;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline::before {
            background: var(--primary);
        }

        .btn-outline:hover {
            color: white;
        }

        .btn-accent {
            background: var(--gradient-accent);
        }

        .btn-accent::before {
            background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
        }

        .btn-icon {
            margin-right: 0.75rem;
            font-size: 1.1rem;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title h2 {
            font-size: 2.75rem;
            color: var(--dark);
            margin-bottom: 1.25rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -0.75rem;
            left: 50%;
            transform: translateX(-50%);
            width: 5rem;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--gray);
            margin-bottom: 0;
        }

        .text-gradient {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Header Styles */
       /* ========== Base (already included by you) ========== */
/* ========== Base Header ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(93, 153, 153, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header-scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  background-image: url("newlogo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 55px;
  height: 48px;
  border-radius: 10px;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e2e8f0;
}

.logo-text span {
  background: var(--dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========== Desktop Menu ========== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #f1f5f9;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu a:hover {
  color: #cbb3ff;
}
/* Prevent scrolling when mobile menu is open */
.nav-menu.active {
  right: 0;
  overflow-y: auto;
}

/* Smooth transition for links */
.nav-menu a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
  transform: translateX(5px);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #6366f1;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ========== Hamburger ========== */
.hamburger {
  display: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bar {
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ========== Responsive Breakpoints ========== */

/* Tablets */
@media (max-width: 992px) {
  .logo-text {
    font-size: 1.4rem;
  }

  .logo-icon {
    width: 50px;
    height: 45px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    height: calc(100vh - 70px);
    width: 250px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    transition: right 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 40px;
    height: 38px;
    margin-right: 0.5rem;
  }

  .nav-menu {
    width: 100%;
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


    /* Hero Section */
    .hero1 {
      position: relative;
      height: 100vh;
      background: url("https://images.unsplash.com/photo-1508780709619-79562169bc64") no-repeat center center/cover;
      background-attachment: fixed;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 0 20px;
    }

    .hero1 h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }

    .hero1 p {
      font-size: 1.3rem;
      max-width: 600px;
    }

    .hero1 button {
      margin-top: 1.5rem;
      padding: 12px 28px;
      border: none;
      border-radius: 8px;
      background: #ffd45f;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero1 button:hover {
      background: #e6b800;
    }

    /* Vision & Mission Section */
.vision-mission {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 80px 20px;
  background: #fff;
  gap: 30px;
}

.vision-mission .image {
  flex: 1 1 45%;
  max-width: 500px;
  height: 400px;  /* desktop height */
  background: url("image1.jpg") no-repeat center center;
  background-size: cover;     /* ensures image fills perfectly */
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}

.vision-mission .content {
  flex: 1 1 50%;
  padding: 20px;
}

.vision-mission h1 {
  color: #222;
  margin-bottom: 20px;
}
.vision-mission p {
    font-size: 1.1rem;
    
}
/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .vision-mission .image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .vision-mission {
    flex-direction: column;
    text-align: center;
  }

  .vision-mission .image {
    width: 100%;
    max-width: 100%;
    height: 250px;
  }

  .vision-mission .content {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .vision-mission .image {
    height: 200px;
  }
}

/* Parallax-like Gradient Background */
.initiative-section {
  position: relative;
  background: linear-gradient(135deg, #d1fae5, #bfdbfe);
 /* choose your colors */
  background-attachment: fixed; /* parallax effect */
  padding: 5rem 2rem;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

.initiative-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, #a7f3d0, #93c5fd); /* blue-green gradient */
  transform: translateY(0);
  z-index: -1;
  will-change: transform;
}

.initiative-overlay {
  background: rgba(0, 0, 0, 0.4); /* optional overlay for contrast */
  padding: 4rem 2rem;
  border-radius: 12px;
}

.initiative-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.initiative-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.initiative-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.initiative-image img:hover {
  transform: scale(1.05);
}

.initiative-text {
  flex: 2;
  text-align: center;
  padding: 0 1rem;
}


.initiative-text h1 {
  font-family: 'Playfair Display', serif; /* classy font */
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
  display: inline-block;
}

/* Black underline */
.initiative-text h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: #000; /* solid black */
  border-radius: 2px;
}


.initiative-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #003333;
  max-width: 600px;
  margin: 0 auto;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .initiative-container {
    flex-direction: column;
    text-align: center;
  }

  .initiative-text {
    order: -1; /* keeps text in middle */
    margin-bottom: 1.5rem;
  }
}

/* Mobile fix (disable parallax) */
@media (max-width: 768px) {
  .initiative-section {
    background-attachment: scroll;
  }
}


    /* Marquee Section */
    .marquee-section {
      background: linear-gradient(135deg, #d4fc79, #96e6a1);

      padding: 40px 0;
      overflow: hidden;
      position: relative;
    }

    .marquee {
      display: flex;
      gap: 60px;
      animation: scroll 20s linear infinite;
      white-space: nowrap;
    }

    .marquee span {
      font-size: 1.3rem;
      font-weight: 500;
      color: #fff;
      background: rgba(0,0,0,0.15);
      padding: 10px 20px;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    }

    @keyframes scroll {
      from { transform: translateX(100%); }
      to { transform: translateX(-100%); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero1 h1 { font-size: 2.2rem; }
      .hero1 p { font-size: 1rem; }

      .vision-mission {
        flex-direction: column;
      }

      .vision-mission .image {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
      }

      .vision-mission .content {
        padding: 20px;
      }

      .marquee span {
        font-size: 1rem;
        padding: 8px 16px;
      }
    }
 section {
            padding: 0.1rem 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title h2 {
            font-size: 2.75rem;
            color: var(--dark);
            margin-bottom: 1.25rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -0.75rem;
            left: 50%;
            transform: translateX(-50%);
            width: 5rem;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--gray);
            margin-bottom: 0;
        }

        .text-gradient {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
           /* background: rgba(156, 219, 156, 0.6);*/
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
            -webkit-transition: var(--transition);
            -moz-transition: var(--transition);
            -ms-transition: var(--transition);
            -o-transition: var(--transition);
}

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: #fff;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            transition: var(--transition);
            -webkit-transition: var(--transition);
            -moz-transition: var(--transition);
            -ms-transition: var(--transition);
            -o-transition: var(--transition);
}

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(191, 204, 231, 0.3);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #e2e8f0;
        }
        .feature-card p{
          color: #dbeafe;
        }
        section.features {
  position: relative;
  padding: 5rem 0;
  z-index: 1;
}

section.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.pexels.com/photos/531880/pexels-photo-531880.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500") center/cover no-repeat fixed;
  filter: brightness(0.35) blur(2px); /* darken + soften for better readability */
  z-index: -1;
}

.services {
  padding: 70px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("compr.jpg") 
              center/cover no-repeat fixed;
  filter: brightness(0.4) blur(2px);
  z-index: -1;
}

/* Section title */
.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.section-title p {
  color: #ddd;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Service cards */
.service-card {
  background: rgba(245, 170, 170, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  color: #222;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
}

.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0077ff;
  font-size: 0.9rem;
}

/* ---------------- */
/* RESPONSIVENESS */
/* ---------------- */

/* Tablets */
@media (max-width: 992px) {
  .services {
    padding: 50px 15px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .service-image {
    height: 180px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .services {
    padding: 40px 10px;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 15px;
  }

  .service-image {
    height: 150px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card ul li {
    font-size: 0.8rem;
  }
}


.clients {
  position: relative;
  padding: 6rem 2rem;
  z-index: 1;
  overflow: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://t3.ftcdn.net/jpg/05/30/24/52/360_F_530245241_mJ6oVkvAykuldvLsnZbNHxy5aNokNBnC.jpg") center/cover no-repeat fixed;
  filter: brightness(0.4) blur(2px);
  z-index: -1;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: #ddd;
}

/* Carousel effect */
.clients-carousel {
  display: flex;
  gap: 1.5rem;
  animation: scrollClients 25s linear infinite;
  width: max-content;
}

.client-card {
  min-width: 200px;
  background: rgba(184, 213, 222, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(204, 226, 232, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card i {
  font-size: 3rem;
  color: #c9eece;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.client-card h3 {
  color: #fff;
  font-size: 1.1rem;
}

.client-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.client-card:hover i {
  transform: scale(1.2);
  color: #00c9ff;
}

/* Auto-scroll animation */
@keyframes scrollClients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.clients-carousel:hover {
  animation-play-state: paused; /* ✅ Pause on hover */
}
@media screen and (max-width: 992px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .clients-carousel {
    gap: 1rem;
    animation: scrollClients 20s linear infinite; /* slightly faster */
  }

  .client-card {
    min-width: 160px;
    padding: 1.5rem 1rem;
  }

  .client-card i {
    font-size: 2.5rem;
  }

  .client-card h3 {
    font-size: 1rem;
  }
}

/* Mobile (<= 600px) */
@media screen and (max-width: 600px) {
  .clients {
    padding: 4rem 1rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .clients-carousel {
    gap: 0.8rem;
    animation: scrollClients 15s linear infinite; /* faster for smaller screens */
  }

  .client-card {
    min-width: 130px;
    padding: 1rem;
    border-radius: 12px;
  }

  .client-card i {
    font-size: 2rem;
  }

  .client-card h3 {
    font-size: 0.9rem;
  }
}

/* Extra small (<= 400px) */
@media screen and (max-width: 400px) {
  .section-title h2 {
    font-size: 1.4rem;
  }

  .client-card {
    min-width: 110px;
    padding: 0.8rem;
  }

  .client-card i {
    font-size: 1.8rem;
  }

  .client-card h3 {
    font-size: 0.8rem;
  }
}
.counters {
  padding: 3em 2em;
  background-image: url("https://images.pexels.com/photos/956999/milky-way-starry-sky-night-sky-star-956999.jpeg?cs=srgb&dl=pexels-umkreisel-app-956999.jpg&fm=jpg");
  color: #fff;
  text-align: center;
}

.counters > div {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4em 2em;
}

.counter {
  position: relative;
}

.counter h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.counter:not(:last-child)::before {
  content: '';
  background: #fff;
  position: absolute;
  width: 2px;
  height: 3em;
  top: 50%;
  right: -1em;
  transform: translateY(-50%);
}

/* Tablet screens */
@media screen and (max-width: 900px) and (min-width: 501px) {
  .counters > div {
    grid-template-columns: 1fr 1fr;
  }
  .counter:nth-child(2)::before {
    display: none;
  }
}

/* Mobile screens */
@media screen and (max-width: 500px) {
  .counters > div {
    grid-template-columns: 1fr;
    row-gap: 5em;
  }
  .counter:not(:last-child)::before {
    width: 90%;
    height: 2px;
    bottom: -3em;
    left: 50%;
    top: auto;
    right: auto;
    transform: translateX(-50%);
  }
}

.testimonials {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: url("testi.jpg") center/cover no-repeat fixed; /* Parallax */
  background-attachment: fixed;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.4) blur(2px);
  background: rgba(0,0,0,0.6); /* dark overlay */
  z-index: -1;
}


.testimonials .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  opacity: 0.85;
}

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  gap: 2rem;
  animation: scrollTestimonials 25s linear infinite;
  width: max-content;
}

.testimonials-carousel:hover {
  animation-play-state: paused; /* pause on hover */
}

@keyframes scrollTestimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  min-width: 350px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-right: 1rem;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

.rating {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}
@media (max-width: 768px) {
  .testimonials {
    background-attachment: scroll; /* fallback for mobile */
  }
}


@media (max-width: 480px) {
  .testimonials {
    background-position: center;
    background-size: cover; /* ensures full image is visible */
    background-color: #000; /* fallback fill behind image */
  }
}
       footer {
    position: relative;
    background: url("https://static.vecteezy.com/system/resources/thumbnails/052/614/554/small_2x/abstract-blue-header-footer-transparent-curve-business-background-design-illustration-template-vector.jpg") no-repeat center center/cover;
    color: white;
    padding: 5rem 0 0;
    z-index: 1;
}
.contact {
  background-image: url("https://t4.ftcdn.net/jpg/05/04/78/25/360_F_504782581_LHwsDbXlrFiiadWC4i15yV2lhbJnB8g0.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* creates parallax */
  position: relative;
  padding: 5rem 2rem;
  color: #fff;
  z-index: 0; /* ensures ::before overlay sits correctly */
}

.contact::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #000;               /* fallback solid color */
  background: rgba(0, 0, 0, 0.4); /* overlay with transparency */
  filter: brightness(0.4) blur(2px);
  z-index: -1;
}

.contact .container {
  position: relative;
  z-index: 1; /* keeps text above overlay */
}



        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
            color: white;
            transition: var(--transition);
            cursor: pointer;
        }

        .contact-icon:hover {
            transform: rotate(10deg) scale(1.1);
        }

        .contact-details h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }


/* Dark overlay for text readability */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* adjust transparency */
    z-index: -1;
}

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            font-size: 1.375rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-col p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            font-size: 1.05rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a i {
            margin-right: 0.75rem;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
            font-size: 1.25rem;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: var(--border-radius);
            font-family: 'Roboto', sans-serif;
        }

        .copyright {
            text-align: center;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .logo-icon1 {
  background-image: url("WhatsApp Image 2025-08-20 at 9.13.26 PM.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 12px;

  width: 12vw;          /* scales with screen width */
  height: auto;         /* auto height */
  aspect-ratio: 7 / 5;  /* keeps the proportion */
  max-width: 70px;      /* prevent it from getting too big */
  min-width: 40px;      /* prevent it from getting too small */
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .logo-icon {
    width: 15vw;
    aspect-ratio: 1/1;  /* square on small screens */
    border-radius: 8px;
  }
}
