        html, body {
  overflow-x: hidden;
}
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Headings ke liye Montserrat */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Body text ke liye Roboto */
body, p, span, li, a {
  font-family: 'Roboto', sans-serif;
}

body {
  background: linear-gradient(to bottom, #f3dada, #b9d7f3);
  color: #333;
  line-height: 1.6;
}

/* =============================== */
/* NAVBAR — Desktop Default Style */
/* =============================== */
header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo + Role Section */
.logo-section {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin: 0;
}

.role {
  font-size: 14px;
  font-weight: 500;
  color: black;
  margin-top: 5px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: blue;
}

/* Hamburger (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger active (X shape) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================== */
/* TABLET VIEW (max-width: 1024px) */
/* =============================== */
@media (max-width: 1024px) {
  header {
    padding: 15px 40px;
  }

  .logo {
    font-size: 22px;
  }

  .role {
    font-size: 13px;
  }

  .nav-links {
    gap: 25px;
  }

  .nav-links li a {
    font-size: 15px;
  }
}

/* =============================== */
/* MOBILE VIEW (max-width: 768px) */
/* =============================== */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    right: 25px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1001;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    font-size: 15px;
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    font-size: 18px;
  }

  .role {
    font-size: 12px;
  }
}

/* ===================================== */
/* VERY SMALL DEVICES (max-width: 480px) */
/* ===================================== */
@media (max-width: 480px) {
  header {
    padding: 12px 20px;
  }

  .logo {
    font-size: 16px;
  }

  .role {
    font-size: 11px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .nav-links {
    right: 15px;
    padding: 15px;
  }

  .nav-links li a {
    font-size: 14px;
  }
}



/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10% 80px; /* top padding for header space */
  min-height: 80vh;
background: linear-gradient(180deg,
    #ffe6eb 0%,     /* light pink start */
    #ffe6eb 8%,     /* pink ends just below navbar */
    #d6eaff 40%,    /* soft blue begins */
    #b9dbff 100%    /* deeper blue bottom */
  );
  flex-wrap: wrap;
  overflow: hidden;
  padding-bottom: 40px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  min-width: 320px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-left: -75px; /* thoda sa left shift */
  margin-top: 10%;
}

.hero-content .desc {
  font-size: 17px;
  color: #555;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: -75px; /* thoda sa left shift */
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-buttons .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 48px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-buttons .primary {
  background: #0044ff;
  color: #fff;
}

.hero-buttons .secondary {
  background: #0044ff;
  color: #fff;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  background: #002db3;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 320px;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  max-width: 520px;
  height: auto;
  position: relative;
  z-index: 2;
  margin-right: 80px;
}

/* BACKGROUND GLOW */
.image-container::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 30, 100, 1) 0%,
    rgba(0, 70, 200, 0.7) 40%,
    transparent 80%);
  filter: blur(40px);
  z-index: 1;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: absolute;
  top: 60px;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 3;
}

.floating-buttons button {
  position: absolute !important;
  background: #fff;
  border: none;
  padding: 10px 20px;   /* extra horizontal space */
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;  /* ❗ stops text from breaking into new line */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}


.floating-buttons button i {
  font-size: 14px;
}

.floating-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Force floating buttons to override any other CSS */
.floating-buttons button {
  position: absolute !important;
}


/* Individual positions */
.floating-buttons button:nth-child(1) {
  top: 70px !important;
  right: 120px !important;
 
}

.floating-buttons button:nth-child(2) {
  top: 160px !important;
  right: 40px !important;
}

.floating-buttons button:nth-child(3) {
  top: 260px !important;
  right: 40px !important;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10% 80px;
  min-height: 80vh;
  background: linear-gradient(180deg,
    #ffe6eb 0%,
    #ffe6eb 8%,
    #d6eaff 40%,
    #b9dbff 100%
  );
  flex-wrap: wrap;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  min-width: 320px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-left: -75px;
  margin-top: 10%;
}

.hero-content .desc {
  font-size: 17px;
  color: #555;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: -75px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-buttons .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 52px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-buttons .primary,
.hero-buttons .secondary {
  background: #0044ff;
  color: #fff;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  background: #002db3;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 320px;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  max-width: 520px;
  height: auto;
  position: relative;
  z-index: 2;
  margin-right: 80px;
}

/* BACKGROUND GLOW */
.image-container::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 30, 100, 1) 0%,
    rgba(0, 70, 200, 0.7) 40%,
    transparent 80%);
  filter: blur(40px);
  z-index: 1;
}

/* ========================= */
/* FLOATING BUTTONS */
/* ========================= */
.floating-buttons {
  position: absolute;
  top: 60px;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 3;
}

.floating-buttons button {
  background: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.floating-buttons button:nth-child(1) {
  top: 70px;
  right: 120px;
}

.floating-buttons button:nth-child(2) {
  top: 160px;
  right: 40px;
}

.floating-buttons button:nth-child(3) {
  top: 260px;
  right: 40px;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* Tablet View (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero {
    display: flex;
    flex-direction: column; /* ✅ text upar, image neeche */
    align-items: center;
    text-align: center;
    padding: 80px 6%;
  }

  .hero-content {
    order: 1; /* text pehle */
  }

  .hero-image {
    order: 2; /* image baad me */
    margin-top: 30px;
  }

  .hero-content h1 {
    font-size: 38px;
    margin-left: 0;
    padding-top: 30px;
  }

  .hero-content .desc {
    font-size: 16px;
    margin: 15px auto;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 180px;
    margin: 5px;
  }

  .image-container img {
    max-width: 360px;
    margin-right: 0;
  }

  /* Floating buttons horizontally arranged under image */
  .floating-buttons {
    position: relative;
    top: 15px;
    right: 0;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .floating-buttons button {
    font-size: 13px;
    padding: 10px 16px;
    position: static !important;
  }
}



/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    padding: 60px 5%;
  }

  .hero-content h1 {
    font-size: 30px;
    padding-top: 50px;
  }

  .hero-content .desc {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 200px;
    height: 45px;
    font-size: 14px;
  }

  .image-container img {
    max-width: 80%;
  }

  /* ✅ Floating buttons grid layout */
  .floating-buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 12px 20px;
    position: relative;
    top: 20px;
  }

  .floating-buttons button {
    font-size: 12px;
    padding: 8px 14px;
    position: static !important;
  }

  /* 3rd button center me niche aa jaye */
  .floating-buttons button:nth-child(3) {
    grid-column: 1 / span 2;
    justify-self: center;
  }
}


/* Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
    padding-top: 30px;
  }

  .hero-content .desc {
    font-size: 13px;
  }

  .hero-buttons .btn {
    width: 180px;
    font-size: 13px;
  }

  .floating-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .floating-buttons button {
    font-size: 11px;
    padding: 7px 12px;
  }
}













/* About Section */
.about {
  padding: 80px 8%;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* responsive */
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
  min-width: 300px;
 margin-top: -30px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.about-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #555;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #666;
}

.about .btn.primary {
  background: blue;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.about .btn.primary:hover {
  background: #005bcc;
}


.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Primary button style */
.btn.primary {
  background: linear-gradient(135deg, #0078ff, #0056d2);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 120, 255, 0.3);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #0056d2, #0041a8);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 120, 255, 0.45);
}

/* Optional: active state for click feedback */
.btn.primary:active {
  transform: scale(0.97);
}

/* Responsive (smaller padding for mobile) */
@media (max-width: 768px) {
  .btn {
    padding: 10px 22px;
    font-size: 15px;
  }
}


/* ✅ Tablet & Mobile Layout */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column; /* ✅ image top, text bottom */
    text-align: center;
  }

  .about-image img {
    max-width: 380px;
  }

  .about-content {
    margin-top: 0;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-content h3 {
    font-size: 1.3rem;
  }

  .about-content p {
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto 25px;
  }
}

/* ✅ Mobile Specific */
@media (max-width: 768px) {
  .about {
    padding: 60px 5%;
  }

  .about-image img {
    max-width: 320px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content h3 {
    font-size: 1.2rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }
}

/* ✅ Small Phones */
@media (max-width: 480px) {
  .about {
    padding: 50px 4%;
  }

  .about-image img {
    max-width: 280px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content h3 {
    font-size: 1.1rem;
  }

  .about-content p {
    font-size: 0.85rem;
  }

  .about .btn.primary {
    padding: 8px 18px;
    font-size: 0.9rem;
    
  }
}


/* Achievements Section CSS */
.achievements {
  text-align: center;
  padding: 80px 50px;
  /* background: linear-gradient(to bottom, #f8e1e7, #bbdefb);  */
  margin-bottom: 8%;
}
.achievements h2 {
  font-size: 28px;
  font-weight: 700;
}
.achievements p {
  color: #555;
  margin-bottom: 40px;
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.achievement {
  text-align: center;
}
.achievement i {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 10px;
}
.achievement h3 {
  font-size: 22px;
  font-weight: 700;
}

.counter::after {
  content: "+"; /* Projects, followers, years ke liye */
  font-size: 18px;
  margin-left: 2px;
}


/* Our Services CSS */
/* Background gradient for both sections */
.section-wrapper {
  background: linear-gradient(to bottom, #f8e1e7 0%, #bbdefb 100%);
}

.services {
  text-align: center;
  padding: 80px 50px;
   /* background: linear-gradient(to bottom, #f8e1e7, #bbdefb);  */
}
.services h2 {
  font-size: 28px;
  font-weight: 700;
}
.services p {
  margin-bottom: 40px;
  color: #555;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #0d6efd;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  height: 150px;
  margin-top: 40px;
  padding-top: 40px;
}
.service-card:hover {
  background: #0056b3;
}

/* Mobile View: Reduce gap between service boxes */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns per row */
    gap: 10px; /* 🔹 reduced gap */
  }

  .service-card {
    padding: 20px;
    height: 130px; /* 🔹 slightly smaller height */
    margin-top: 20px; /* 🔹 reduced top spacing */
    font-size: 15px;
    padding-top: 30px !important;
  }
}

/* Very Small Devices */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 box per row */
    gap: 8px; /* 🔹 even smaller gap */
  }

  .service-card {
    padding: 18px;
    height: 120px;
    margin-top: 15px;
  }
}


/* * Work section */ */


.brand-trust-section {
    width: 100%;
    padding: 80px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin: 0 auto 30px auto; /* sirf neeche margin */
}


        /* .container {
            max-width: 1000px;
            margin: 0 auto;
        } */

        .trust-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #1e293b;
            letter-spacing: -0.5px;
            text-align: center;
        }

        .trust-heading h2 span {
            color: #3b82f6;
            position: relative;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .heading-divider {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .divider-line {
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            border-radius: 10px;
        }

        .trust-description {
            margin-bottom: 60px;
        }

        .trust-description p {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .marquee-content {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        .marquee-tag {
            background: white;
            padding: 25px 30px;
            margin: 0 20px;
            border-radius: 16px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
            font-weight: 700;
            color: #334155;
            white-space: nowrap;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            min-width: 180px;
            transition: all 0.3s ease;
            border: 1px solid blue;
        }

        .marquee-tag:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
        }

        .brand-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 12px;
        }

        .brand-name {
            font-size: 1.1rem;
            font-weight: 600;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Brand-specific colors */
        .daraz { color: #e53238; background-color: #fff2f3; }
        .realme { color: #ff6b00; background-color: #fff5eb; }
        .tecno { color: #0066cc; background-color: #ebf5ff; }
        .indrive { color: #7c3aed; background-color: #f5f3ff; }
        .filmora { color: #00a2ff; background-color: #e6f7ff; }
        .haier { color: #e11d48; background-color: #fff1f2; }
        .gamma { color: #10b981; background-color: #ecfdf5; }
        .studypool { color: #f59e0b; background-color: #fffbeb; }

        /* Responsive design */
        @media (max-width: 1024px) {
            .brand-trust-section {
                padding: 60px 30px;
            }
            
            .trust-heading h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .brand-trust-section {
                padding: 50px 20px;
            }
            
            .trust-heading h2 {
                font-size: 2rem;
            }
            
            .marquee-tag {
                padding: 20px 15px;
                min-width: 150px;
                margin: 0 12px;
            }
            
            .brand-icon {
                font-size: 2rem;
                width: 50px;
                height: 50px;
            }
            
            .brand-name {
                font-size: 1rem;
            }
            
            .marquee-content {
                animation-duration: 25s;
            }
        }

        @media (max-width: 480px) {
            .trust-heading h2 {
                font-size: 1.8rem;
            }
            
            .trust-description p {
                font-size: 1.1rem;
            }
            
            .marquee-tag {
                padding: 15px 10px;
                min-width: 130px;
                margin: 0 10px;
                min-height: 100px;
            }
            
            .brand-icon {
                font-size: 1.8rem;
                width: 45px;
                height: 45px;
                margin-bottom: 10px;
                
            }
            
            .brand-name {
                font-size: 0.9rem;
            }
            
            .marquee-content {
                animation-duration: 20s;
            }
        }

        /* Pause animation on hover */
        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

      

/* CTA Banner */
        .cta-banner {
    width: 100%;
    background: linear-gradient(to right, #2e74a3, #5a89a8, #b0b6bb);
    color: white;
    text-align: center;
    padding: 80px 0;
    margin: 0; /* 0 0 ki jagah sirf 0 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10%;
}

        
        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-banner p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: #616161;
            padding: 15px 40px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
/* Footer Base */
footer {
  background: #93C5FD !important;
  color: #1e293b;
  padding: 60px 0 20px;
}

/* Profile Section (top image + name) */
/* Profile + Name row */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px; /* image aur name ke beech spacing */
  margin-bottom: 50px;
}

.footer-profile {
  width: 70px;
  height: 70px;
  border-radius: 50%; /* round image */
  object-fit: cover;
  margin-left: 10%;
  margin-top: -30px;
   border: 1px solid white; /* added white border */
}

.brand-wrapper h3 {
  margin: 0;
  font-size: 30px !important;
  font-weight: 600;
  color: #fff !important;
  margin-top: -35px;
 
}


/* Footer Content (4 columns) */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  margin-left: 10%;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: blue;
}

.footer-bottom .highlight {
  color: blue !important; /* 🔵 Blue color */
  font-weight: 600;
}


.footer-section p,
.footer-section li {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section a {
  color: #212121;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: blue;
  padding-left: 5px;
}

/* Target 2nd and 4th footer sections */
.footer-content .footer-section:nth-child(2),
.footer-content .footer-section:nth-child(4) {
  margin-left: 40px;  /* thoda left ki taraf shift */
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid white;
  margin: 0 50px;
  flex-wrap: wrap; /* ✅ Responsive ke liye */
}

.footer-bottom p {
  margin: 5px 0;
  color: #1e293b;
  font-size: 14px;
  margin-right: 25%;
}

.footer-bottom .social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 70px;
}

/* Base styling */
.footer-bottom .social-icons a {
  margin-right: 15px;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ✅ Facebook Icon (official blue) */
.footer-bottom .social-icons a .fa-facebook {
  color: #1877F2; /* real facebook blue */
}

/* ✅ TikTok Icon (real multi-color effect) */
.footer-bottom .social-icons a .fa-tiktok {
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effect (neon pop like TikTok glow) */
.footer-bottom .social-icons a .fa-tiktok:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(238, 29, 82, 0.6), 
               0 0 20px rgba(105, 201, 208, 0.6);
}


/* ✅ Common styles (optional for spacing, hover, etc.) */
.footer-bottom .social-icons a {
  margin-right: 15px;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-bottom .social-icons a:hover {
  transform: scale(1.2);
}


/* Hover Effects */
.footer-bottom .social-icons a:hover .fa-instagram {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.footer-bottom .social-icons a:hover .fa-youtube {
  color: #cc0000;
  transform: scale(1.2);
}

/* ✅ Linktree (no change) */
.linktree-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-right: 15px;
  font-size: 14px;
  transition: color 0.3s;
}

.linktree-link:hover {
  color: #39e09b; /* Linktree brand green */
}

.icon-linktree {
  width: 18px;
  height: auto;
  margin-right: 6px;
}


/* ✅ Responsive Fixes (Color Consistent Across All Devices) */
@media (max-width: 768px) {
  .footer-profile {
    text-align: center;
    margin-top: 20px;
  }

  .brand-wrapper h3 {
    margin: 0;
    font-size: 20px !important;
    font-weight: 600;
    color: #fff !important; /* ✅ keep same white as desktop */
    margin-left: -2px !important;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin: 0 20px;
  }

  .footer-bottom p {
    margin-right: 10px;
    text-align: center;
    color: #1e293b; /* ✅ same as desktop */
  }

  .footer-bottom .social-icons {
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Target 2nd and 4th footer sections */
.footer-content .footer-section:nth-child(2),
.footer-content .footer-section:nth-child(4) {
  margin-left: 20px !important;  /* thoda left ki taraf shift */
}

  .footer-section h3 {
    text-align: left;
    margin-left: 30px;
    margin-top: 30px;
    color: blue !important; /* ✅ same blue heading */
  }

  .footer-section ul,
  .footer-section p {
    text-align: left;
    margin-left: 30px;
    color: #212121; /* ✅ same text color */
  }

  .footer-bottom .highlight {
    color: blue !important; /* ✅ same as desktop */
  }
}

@media (max-width: 480px) {
  /* Footer Grid - 2 columns per row */
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;
    text-align: left;
    margin: 0 15px;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: blue !important; /* consistent heading color */
  }

  .footer-section ul,
  .footer-section p,
  .footer-section a {
    font-size: 11px;
    line-height: 1.6;
    color: #212121 !important; /* same as desktop */
  }

    /* ✅ Shift 2nd & 4th section slightly right */
  .footer-content .footer-section:nth-child(2),
  .footer-content .footer-section:nth-child(4) {
    margin-left: 20px; /* adjust to 15–30px if needed */
  }

  .brand-wrapper h3 {
    color: #fff !important; /* same as desktop */
    text-align: center;
  }

  /* Footer bottom area center aligned */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
  }

  .footer-bottom p {
    font-size: 13px;
    color: #1e293b;
  }

  .footer-bottom .highlight {
    color: blue !important;
  }

  .footer-bottom .social-icons {
    justify-content: center;
    margin-bottom: 10px;
  }
}





        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        

         /* Floating WhatsApp Button (Right Bottom) */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    animation: floatBtn 2s ease-in-out infinite;
    z-index: 999;
    transition: all 0.3s ease;
}
.floating-whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(32, 186, 90, 0.4);
    color: black;
}

/* Floating Animation */
@keyframes floatBtn {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


/* Footer */
/* footer {
  text-align: center;
  padding: 20px;
  background: #f3f3f3;
  font-size: 14px;
} */

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    padding: 0;
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .achievements-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Fix WhatsApp Button Click Issue in Hero --- */
.hero .btn.secondary {
  position: relative;
  z-index: 15;         /* bring button above any layer */
  pointer-events: auto; /* ensure it's clickable */
}

[data-aos="zoom-in"] {
  pointer-events: auto !important;
}

.hero-image,
.image-container,
.image-container::before,
.floating-buttons {
  z-index: 1;
  pointer-events: none;  /* prevent them from blocking clicks */
}

.hero-content {
  z-index: 10;
  position: relative;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center; /* Changed back to center */
  overflow-y: auto;
  padding: 20px;
  backdrop-filter: blur(3px);
}

/* Modal Box */
.modal-content {
  background: #fff;
  color: #333;
  max-width: 700px;
  width: 100%;
  max-height: 85vh; /* Added max-height for better mobile view */
  padding: 40px 35px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  text-align: left;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
  margin: auto; /* Simplified margin */
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-y: auto; /* Added scroll for content if needed */
}

/* Headings */
.modal-content h2 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.modal-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 25px;
  margin-bottom: 12px;
}

/* Paragraphs */
.modal-content p {
  margin-bottom: 16px;
  color: #444;
}

/* Lists */
.modal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
  list-style: disc;
}

.modal-content li {
  margin-bottom: 8px;
  color: #444;
}

/* Links */
.modal-content a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.modal-content a:hover {
  color: #004499;
  text-decoration: underline;
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1; /* Ensure close button stays on top */
}

.close:hover {
  color: #ff4b2b;
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

/* Strong text */
.modal-content strong {
  color: #222;
  font-weight: 600;
}

/* Horizontal rule */
.modal-content hr {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 25px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .modal {
    padding: 15px;
    align-items: flex-start; /* Use flex-start for mobile but with proper spacing */
  }
  
  .modal-content {
    max-width: 95%;
    max-height: 90vh; /* Increased height for mobile */
    padding: 30px 25px;
    font-size: 0.95rem;
    margin: 20px auto; /* Reduced margin for mobile */
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-content h3 {
    font-size: 1.2rem;
  }
  
  .close {
    top: 10px;
    right: 15px;
    font-size: 24px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 10px;
    align-items: flex-start;
  }
  
  .modal-content {
    padding: 25px 20px;
    margin: 10px auto; /* Further reduced margin */
    border-radius: 12px;
    max-height: 95vh; /* Maximum height for very small screens */
  }

  .close {
    top: 8px;
    right: 12px;
    font-size: 22px;
    width: 30px;
    height: 30px;
  }
  
  .modal-content h2 {
    font-size: 1.3rem;
    margin-top: 5px; /* Added top margin for heading */
  }

  .modal-content h3 {
    font-size: 1.1rem;
  }
}

/* Animation for modal appearance */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content {
  animation: modalFadeIn 0.3s ease-out;
}


/* Contact Section Styles */
        .contact-section {
            padding: 80px 20px;
            background-color: #f8f9fa;
            text-align: center;
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        
        .contact-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #4a4a4a;
        }
        
        .contact-info {
            margin-bottom: 30px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            margin-right: 15px;
            color: #3a86ff;
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }
        
        .contact-form-btn {
            display: inline-block;
            background-color: #3a86ff;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            margin: 15px 0;
        }
        
        .contact-form-btn:hover {
            background-color: #2667cc;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
        }
        
        .note-text {
            font-size: 0.9rem;
            margin-top: 10px;
            color: #666;
            font-style: italic;
        }
        
        /* Form Modal Styles */
        .form-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .form-modal-content {
            background-color: white;
            width: 90%;
            max-width: 600px;
            border-radius: 10px;
            padding: 30px;
            position: relative;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .form-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }
        
        .form-modal-close:hover {
            color: #333;
        }
        
        .form-modal iframe {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 5px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-content h2 {
                font-size: 2rem;
            }
            
            .contact-content p {
                font-size: 1rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-item i {
                margin-right: 0;
                margin-bottom: 5px;
            }
        }





