* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #0b1020;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  color: #111;
  z-index: 10;
  
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #5b4cff;
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-outline {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  
}


/* Hero */
.hero-home {
    width: 95%;
    margin: 120px auto 40px;
    min-height: 90vh;
    border-radius: 25px;

    display: flex;
    align-items: center;
    padding-left: 8%;

    background-image:
        linear-gradient(to right, rgba(15,23,60,0.75), rgba(15,23,60,0.2)),
        url("D:\OneDrive\Desktop\Aegis talent\hero aegis.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* Content above overlay */
.hero-content h1 {
   font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;;
}

.hero-content h1 span {
  color: #a78bfa;           /* purple highlight */
}
.hero-content p {
  font-size: 20px;
  line-height: 1.65;
  margin-top: 25px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.85);
}
.hero-content {
  text-align: left;              /* 🔥 important */
  max-width: 750px;
}

.hero-content p {
  font-size: 21px;
  line-height: 1.65;
  max-width: 900px;
  margin: 25px auto 45px;
  color: rgba(255,255,255,0.85);
}

.hero-content {
  max-width: 900px;         /* width badhao */
}
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.151);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
   
    background: linear-gradient(90deg, #7c5cff, #b794f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;

}

.hero-buttons {
    margin-top: 25px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    font-weight: 500;
    transition: 0.3s ease;
}

.primary {
    background: #8b5cf6;
    color: #fff;
}

.primary:hover {
    background: #7c3aed;
}

.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.secondary:hover {
    background: #fff;
    color: #000;
}

.stats {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stats h3 {
    font-size: 43px;
    margin-bottom: 5px;
}

.stats span {
    font-size: 14px;
    color: #d1d5db;
}


.chat-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.chat-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
.services {
  background: #f7f8fb;
  padding: 120px 0;
  color: #0b1020;
}

.services .eyebrow {
  text-align: center;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7b6cff;
  margin-bottom: 10px;
  font-weight: 600;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3933a8, #4d0675);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-card a {
  color: #4b1688;
  font-weight: 600;
  text-decoration: none;
}
.advantages {
  background: #f1f3f7;
  padding: 120px 0;
  color: #0b1020;
}

.advantages .eyebrow {
  text-align: center;
  letter-spacing: 2px;
  font-size: 12px;
  color: #4b1688;
  margin-bottom: 10px;
  font-weight: 600;
}

.advantages h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.adv-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.adv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(123,108,255,0.15);
  color: #4F46E5;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 20px;
}

.adv-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.adv-card p {
  color: #797979;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  background: #f7f8fb;
  padding: 120px 0;
  color: #0b1020;
}

.testimonials .eyebrow {
  text-align: center;
  letter-spacing: 2px;
  font-size: 22px;
  color: #4d1086;
  margin-bottom: 10px;
  font-weight: 600;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stars {
  color: #4F46E5;
  margin-bottom: 12px;
  font-size: 18px;
}

.quote {
  color: #636363;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 18px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5, #4F46E5);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.author span {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.linkedin-cta {
  background: #f1f3f7;
  padding: 120px 0;
  color: #0b1020;
}

.linkedin-cta .eyebrow {
  text-align: center;
  letter-spacing: 2px;
  font-size: 23px;
  color: #491e7a;
  margin-bottom: 10px;
  font-weight: 600;
}

.linkedin-cta h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.cta-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.cta-icon {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  background: rgba(123,108,255,0.15);
  color: #7b6cff;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 26px;
}

.btn-linkedin {
  display: inline-block;
  margin-top: 16px;
  background: #451aac; /* LinkedIn blue */
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-linkedin:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10,102,194,0.35);
}

.final-cta {
  background: linear-gradient(135deg, #051249, #6E59C8);
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.final-cta h2 {
  font-size: 2.6rem;  /* slightly bigger */
}

.final-cta p {
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-outline-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.08);
}
.btn-primary {
  background: linear-gradient(135deg, #712f7e, #6E59C8);
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  filter: brightness(1.05);
}

.footer {
  background: #142a57;
  color: #c9d2ff;
  padding-top: 80px;
}

.footer .logo {
  color: #fff;
}

.footer .accent {
  color: #9b87ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin: 14px 0 18px;
  max-width: 320px;
  line-height: 1.6;
  color: #b9c4ff;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #b9c4ff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #9fb0ff;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color .15s ease;
}

/* underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #6a5cff;
  border-radius: 2px;
  transition: width .2s ease;
}

.nav-links a:hover {
  color: #6a5cff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.btn-brochure {
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn-brochure:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-color: #cfd5ff;
}


.about-hero {
  background:
radial-gradient(circle at 30% 35%, rgba(255,255,255,0.08), transparent 45%),
radial-gradient(circle at 80% 20%, rgba(255,180,255,0.06), transparent 50%),
linear-gradient(120deg, #3f289f 0%, #5e36cc 40%, #7a45f0 75%, #874df7 100%);
  padding: 140px 0 120px; /* top space for fixed navbar */
  color: #fff;
}

.about-hero-inner {
  max-width: 720px;
}

.eyebrow.light {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  
}

.about-hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 120px 0 100px;
  }
  .about-hero h1 {
    font-size: 2.2rem;
  }
}

/* Transparent navbar for about page */
.about-nav {
  position: absolute;
  width: 100%;
  background: transparent;
  color: #fff;
}

.about-nav .nav-links a {
  color: #fff;
}

.about-nav .logo {
  color: #fff;
}

.about-nav .btn-outline-white {
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
}


/* Full hero section */
.about-hero-full {
  
  background:
radial-gradient(circle at 30% 35%, rgba(255,255,255,0.08), transparent 45%),
radial-gradient(circle at 80% 20%, rgba(255,180,255,0.06), transparent 50%),
linear-gradient(120deg, #1c1342, #5a35a3);
  padding: 100px 0 100px;
  color: #fff;
}

.about-hero-inner {
  max-width: 900px;
}

.about-hero-full h1 {
  font-size: 3.3rem;
  line-height: 1.05;
  margin: 20px 0 30px;
}

.about-hero-full p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 700px;
}

.about-mv {
  padding: 120px 0;
  background: #f3f4f7;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2F3E7E, #6E59C8);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #111;
}

.mv-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.core-values {
  padding: 120px 0;
  background: #f3f4f7;
}

.core-values .eyebrow {
  text-align: center;
  color: #6a5cff;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: #111;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(106,92,255,0.12);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: #6a5cff;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #111;
  text-align: center;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== FIXED NAVBAR RESET ===== */


/* Make sure links are visible */
.nav-links a {
  color: #111 !important;
}

/* Logo color */
.logo {
  color: #111 !important;
}

/* ===== Leadership Section ===== */

.leadership {
  padding: 120px 0;
  background: #f0f0f0;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.team-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F3E7E, #6E59C8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.team-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #111;
}

.team-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Footer ===== */

.footer {
  background: #1f3266;
  color: #cbd5ff;
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand p {
  margin: 20px 0 25px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #cbd5ff;
  font-size: 0.95rem;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #9fb0ff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ===== Floating WhatsApp Button ===== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== DROPDOWN ===== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  width: 230px;
  border-radius: 12px;
  padding: 12px 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f3f3f3;
}

/* MAIN LOGIC */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f4f6f9;
}


body{
    background:#f4f6f9;
}

/* Navbar */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    display:flex;
    align-items:center;
    padding:18px 80px;
    background:transparent;
    transition:0.3s ease;
    z-index:1000;
}

.navbar.scrolled{
    background:white;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-box{
    width:42px;
    height:42px;
    background:linear-gradient(to right,#6c5ce7,#8e44ad);
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-weight:bold;
}

.logo-text{
    font-size:20px;
    font-weight:600;
    color:white;
}

.highlight{
    color:#dcd6ff;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo-text{
    color:#333;
}

.navbar.scrolled .highlight{
    color:#6c5ce7;
}

/* Hero */
.hero{
    height:40vh;
 background:
radial-gradient(circle at 30% 35%, rgba(255,255,255,0.08), transparent 45%),
radial-gradient(circle at 80% 20%, rgba(255,180,255,0.06), transparent 50%),
linear-gradient(120deg, #1c1342, #5a35a3);
    display:flex;
    align-items:center;
    padding-left:300px;
    font-weight: 700;    
    color:white;
}

/* Contact */
.contact-section{
    padding:120px 80px;
}

.contact-container{
    display:flex;
    gap:60px;
    max-width:1200px;
    margin:auto;
}

.contact-form{
    background:white;
    padding:40px;
    width:500px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    width: 85%;      /* Agar 70% ya 75% hai to increase karo */
    margin: auto;

}
.contact-wrapper {
    width: 85%;      /* Agar 70% ya 75% hai to increase karo */
    margin: auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.contact-form button{
    padding:14px;
    background:#6c5ce7;
    color:white;
    border:none;
    border-radius:30px;
    cursor:pointer;
}

/* Info Boxes */
.contact-info{
    width:450px;
}

.info-box{
    display:flex;
    gap:20px;
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    margin-bottom:20px;
}

.icon{
    width:50px;
    height:50px;
    background:#eee9ff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6c5ce7;
}

.whatsapp-btn{
    display:block;
    text-align:center;
    padding:15px;
    background:#25D366;
    color:white;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}
.whatsapp-btn:hover {
    background: #1ebe5d;
}
.info-box {
    background: white;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-box h3 {
    font-size: 20px;
    color: #222;        /* 🔥 Ensure dark text */
    margin-bottom: 10px;
}

.info-box p {
    color: #555;        /* 🔥 Visible grey */
    font-size: 15px;
    line-height: 1.6;
}
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon {
    width: 55px;
    height: 55px;
    background: #eee9ff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon i {
    font-size: 20px;
    color: #6c5ce7;
}

.info-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
}

.info-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
/* Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;   /* 🔥 push to right */
}

/* Download Button */
.download-btn {
    padding: 10px 18px;
    border-radius: 30px;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* Call Icon Button */
.call-btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-decoration: none;
}

/* Scroll ke baad adjust */
.navbar.scrolled .download-btn,
.navbar.scrolled .call-btn {
    background: #f2f2f2;
}
.map-container {
    margin: -10px auto;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
/* Footer */
.footer {
  background: #2c3e75;
  color: #dcdcdc;
  padding-top: 70px;
}

.footer-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #cfcfcf;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #8a7dff;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-box {
  background: linear-gradient(45deg, #7f5af0, #9b5de5);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: bold;
  margin-right: 10px;
}

.logo h2 span {
  color: #8a7dff;
}

.brand p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.socials a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding: 25px 0;
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    width: 38px;
    height: 38px;
    background: #2f3f75;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;
}
/* ================= NAVBAR ================= */

/* ===== FINAL CLEAN NAVBAR ===== */

/* ===== FINAL NAVBAR ===== */
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f4f6f9;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,#6c5ce7,#8e44ad);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}

.logo-text {
  font-weight: 600;
  font-size: 20px;
  color: #111;
}

.highlight {
  color: #6c5ce7;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a.active {
  color: #6c5ce7;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #6c5ce7;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.download-btn {
  padding: 8px 18px;
  border-radius: 30px;
  background: #f2f2f2;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.call-btn {
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* ===== BLOG HERO ===== */
.blog-hero {
  background:
radial-gradient(circle at 30% 35%, rgba(255,255,255,0.08), transparent 45%),
radial-gradient(circle at 80% 20%, rgba(255,180,255,0.06), transparent 50%),
linear-gradient(120deg, #1c1342, #5a35a3);
  padding: 100px 0 100px; /* 80px navbar + spacing */
  color: white;
}

.hero-content {
  max-width: 700px;
}

.hero-small {
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.blog-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}
/* ===== BLOG CATEGORIES ===== */
.blog-categories {
  background: #f4f6f9;
  padding: 60px 0 30px;
}

.categories-wrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cat {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #e9ecf3;
  cursor: pointer;
  font-weight: 500;
}

.cat.active {
  background: #6c5ce7;
  color: white;
}


/* ===== BLOG SECTION ===== */
.blog-section {
  background: #f4f6f9;
  padding: 40px 0 120px;
}

.featured-card {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  margin-bottom: 50px;
}

.featured-card h2 {
  font-size: 28px;
  margin: 15px 0;
  color: #111;
}

.featured-card p {
  color: #555;
  max-width: 650px;
  margin-bottom: 20px;
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;   /* ye center karega pura section */
}

footer {
  margin-top: 80px;
}
.blog-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.blog-card h3 {
  margin: 12px 0;
  font-size: 18px;
  color: #111;
}

.blog-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: px;
}

.badge {
  background: #ece9ff;
  color: #6c5ce7;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.card-footer a {
  text-decoration: none;
  color: #6c5ce7;
  font-weight: 500;
}

.date {
  color: #888;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== EXTRA BLOG ROW ===== */
.extra-row {
  margin-top: 30px;
}


/* ===== FOOTER ===== */
.main-footer {
  background: #1f3266;
  color: #cbd5ff;
  padding: 100px 0 40px;
}


.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin: 20px 0;
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #cbd5ff;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9fb0ff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #f3f4f7;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== NAVBAR ===== */


/* ===== HERO ===== */

.services-hero {
  padding: 180px 0 140px;
  background:
radial-gradient(circle at 30% 35%, rgba(255,255,255,0.08), transparent 45%),
radial-gradient(circle at 80% 20%, rgba(255,180,255,0.06), transparent 50%),
linear-gradient(120deg, #1c1342, #5a35a3);
  color: #fff;
}

.services-hero h1 {
  font-size: 3.5rem;
  margin: 20px 0;
}

.services-hero p {
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.7;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ===== SERVICE CARD ===== */

.service-card-main {
  margin: 0 auto;
}

/* MAIN CARD */
.solutions-section {
  padding: 120px 0;
  background: #f3f4f8;   /* light grey section bg */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;             /* equal spacing */
}

.service-card-main {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 22px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* LEFT */
.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2F3E7E, #6E59C8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 25px;
}

.service-content h2 {
  font-size: 26px;         /* consistent size */
  font-weight: 600;
  margin-bottom: 16px;
  color: #111;
}

.service-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 450px;
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #2F3E7E, #6E59C8);
  padding: 12px 28px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* RIGHT */
.service-features {
  background: #f5f6fa;      /* softer grey */
  padding: 35px;
  border-radius: 18px;
}

.service-features h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #333;
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  margin-bottom: 14px;
  color: #444;
  position: relative;
  padding-left: 26px;
  font-size: 14px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6E59C8;
  font-weight: bold;
}
/* ===== Responsive ===== */

@media (max-width: 900px) {
  .service-card-main {
    flex-direction: column;
    padding: 40px;
  }

  .services-hero h1 {
    font-size: 2.5rem;
  }
}

.service-card-main {
  background: #fff;
  border-radius: 22px;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  margin-bottom: 60px;   /* IMPORTANT for stacking */
}
.service-card-main {
  margin-bottom: 60px;
}
/* ===== CTA SECTION ===== */

.custom-cta {
  background: linear-gradient(135deg, #2F3E7E 0%, #6E59C8 100%);
  padding: 140px 0;
  text-align: center;
  color: #fff;
}

.cta-inner h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-inner p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.btn-cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2F3E7E, #6E59C8);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform .2s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */

.footer {
  background: #1f3266;
  color: #cbd5ff;
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand p {
  margin: 20px 0;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #cbd5ff;
  font-size: 0.95rem;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #9fb0ff;
}

/* Responsive */

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cta-inner h2 {
    font-size: 2rem;
  }
}
/* ===== DROPDOWN ===== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  width: 230px;
  border-radius: 12px;
  padding: 12px 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f3f3f3;
}

/* MAIN LOGIC */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Floating WhatsApp Button ===== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.hero-home {
    width: 95%;
    margin: 40px auto;
    min-height: 90vh;
    border-radius: 25px;
    background-image:
        linear-gradient(to right, rgba(15,23,60,0.75), rgba(15,23,60,0.4)),
        url("hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* HAMBURGER DEFAULT HIDE */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* MOBILE + TABLET */
@media (max-width: 992px){

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
}

.logo-text h3{
  margin-left:0 !important;
  font-size:18px;
}

/* hamburger show */
.hamburger{
  display:block;
}

/* menu hidden */
.nav-links{
  position:absolute;
  top:70px;
  left:0;
  width:100%;
  background:white;
  flex-direction:column;
  align-items:center;
  display:none;
  padding:20px 0;
  box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

/* menu active */
.nav-links.active{
  display:flex;
}

.nav-links li{
  margin:10px 0;
}

/* nav right buttons */
.nav-right{
  display:none;
}

/* hero fix */
.hero-home{
  height:auto !important;
  padding:100px 20px;
}

.hero-content{
  margin-left:0 !important;
  margin-top:0 !important;
  text-align:center;
}

.stats{
  margin-left:0 !important;
  justify-content:center;
  flex-wrap:wrap;
}

/* services grid */
.service-grid{
  grid-template-columns:1fr;
}

/* advantages grid */
.adv-grid{
  grid-template-columns:1fr;
}

/* testimonials */
.testimonial-grid{
  grid-template-columns:1fr;
}

/* footer */
.footer-grid{
  grid-template-columns:1fr;
  height:auto !important;
  gap:30px;
}

}

/* NAVBAR */

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.nav-right{
display:flex;
gap:15px;
}

.download-btn{
background:#6a5cff;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
}

.call-btn{
background:#eee;
padding:10px 12px;
border-radius:6px;
}

/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:35px;
background:white;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
display:none;
flex-direction:column;
min-width:200px;
}

.dropdown:hover .dropdown-menu{
display:flex;
}

.dropdown-menu a{
padding:10px 15px;
}

/* HAMBURGER */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* GRIDS */

.mv-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.values-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.team-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

/* TABLET */

@media (max-width:1024px){

.values-grid{
grid-template-columns:repeat(2,1fr);
}

.team-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media (max-width:768px){

.hamburger{
display:block;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
display:none;
padding:20px 0;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.nav-links.active{
display:flex;
}

.nav-right{
display:none;
}

.mv-grid{
grid-template-columns:1fr;
}

.values-grid{
grid-template-columns:1fr;
}

.team-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}

.hamburger{
display:none;
cursor:pointer;
font-size:28px;
}

@media (max-width:768px){

.hamburger{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
}

.nav-links.active{
display:flex;
}

}



/* ====== GENERAL FIX ====== */

*{
box-sizing:border-box;
}

body{
margin:0;
padding:0;
font-family:Arial, sans-serif;
}

img{
max-width:100%;
}

/* ===== NAVBAR ===== */

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
flex-wrap:wrap;
}

.nav-links{
display:flex;
gap:25px;
align-items:center;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#000;
font-size:15px;
}

.nav-right{
display:flex;
gap:15px;
align-items:center;
}

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* ===== HERO ===== */

.hero{
padding:120px 20px;
text-align:center;

}

.hero h1{
font-size:42px;

}

/* ===== CONTACT ===== */

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
padding:60px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:4px;
}

.contact-form button{
padding:12px 20px;
background:#000;
color:#fff;
border:none;
cursor:pointer;
}

.info-box{
display:flex;
gap:15px;
margin-bottom:20px;
align-items:flex-start;
}

/* ===== MAP ===== */

.map-container iframe{
width:100%;
height:450px;
border:0;
}

/* ===== FOOTER ===== */

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding:50px;
}

.footer-col a{
display:block;
margin-bottom:8px;
text-decoration:none;
color:#ccc;
}

.footer-bottom{
text-align:center;
padding:20px;
border-top:1px solid #333;
}

/* ===== TABLET ===== */

@media (max-width:1024px){

.contact-container{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:36px;
}

}

/* ===== MOBILE ===== */

@media (max-width:768px){

.navbar{
padding:15px 20px;
}

.logo-text h3{
margin-left:0 !important;
font-size:18px;
}

/* hamburger */

.hamburger{
display:block;
}

/* menu */

.nav-links{
flex-direction:column;
width:100%;
display:none;
background:#fff;
padding:20px 0;
margin-top:10px;
margin-left: 5rem;
}

.nav-links.active{
display:flex;
}

.nav-links li{
padding:10px 0;
}

/* nav buttons hide */

.nav-right{
display:none;
}

/* contact */

.contact-container{
padding:30px 20px;
}

/* hero */

.hero{
padding:90px 20px;
}

.hero h1{
font-size:30px;
}

/* footer */

.footer-grid{
grid-template-columns:1fr;
padding:30px 20px;
text-align:center;
}

}

/* ===== SMALL MOBILE ===== */

@media (max-width:480px){

.hero h1{
font-size:26px;
}

.hero p{
font-size:14px;
}

.contact-form button{
width:100%;
}

.map-container iframe{
height:300px;
}

}




/* ========================= */
/* ===== TABLET (1024px) === */
/* ========================= */

@media (max-width:1024px){

.nav-links{
gap:18px;
}

.logo-text h3{
margin-left:2rem !important;
font-size:18px;
}

.nav-right{
margin-right:2rem !important;
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.footer{
padding:40px 20px;
}

}

/* ========================= */
/* ===== MOBILE (768px) ==== */
/* ========================= */

@media (max-width:768px){

/* NAVBAR */

.navbar{
flex-direction:column;
align-items:flex-start;
padding:10px 20px;
}

.hamburger{
display:block;
position:absolute;
right:20px;
top:20px;
}

/* MENU */

.nav-links{
flex-direction:column;
width:100%;
display:none;
background:#fff;
margin-top:10px;
padding:10px 0;
}

.nav-links li{
width:100%;
text-align:left;
padding:10px 20px;
}

.nav-links.active{
display:flex;
}

/* BUTTONS */

.nav-right{
display:none;
}

/* LOGO */

.logo-text h3{
margin-left:0 !important;
font-size:18px;
}

/* COOKIE CONTENT */

.cookie-container{
padding:30px 15px;
}

.cookie-container h1{
font-size:26px;
}

.cookie-container h2{
font-size:20px;
}

/* FOOTER */

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-bottom-inner{
flex-direction:column;
gap:10px;
text-align:center;
}

}

/* ========================= */
/* ===== SMALL MOBILE ====== */
/* ========================= */

@media (max-width:480px){

.cookie-container h1{
font-size:22px;
}

.cookie-container p{
font-size:14px;
}

.whatsapp-float{
width:50px;
height:50px;
bottom:20px;
right:20px;
}

}




/* ===== GLOBAL FIX ===== */

*{
box-sizing:border-box;
}

img{
max-width:100%;
height:auto;
}

body{
margin:0;
padding:0;
}

/* ===== NAVBAR ===== */

.navbar{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

.nav-links{
display:flex;
align-items:center;
gap:25px;
list-style:none;
}

.nav-links a{
text-decoration:none;
}

.nav-right{
display:flex;
gap:15px;
align-items:center;
}

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* ===== DROPDOWN ===== */

.dropdown{
position:relative;
}

.dropdown-menu{
display:none;
position:absolute;
background:#fff;
top:100%;
left:0;
min-width:200px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu{
display:block;
}

.dropdown-menu a{
display:block;
padding:10px 15px;
}

/* ===== PRIVACY CONTENT ===== */

.privacy-container{
max-width:900px;
margin:auto;
padding:40px 20px;
}

.privacy-container h1{
font-size:34px;
}

.privacy-container h2{
font-size:22px;
}

/* ===== FOOTER ===== */

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.footer-bottom-inner{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:55px;
height:55px;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
z-index:999;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* ========================= */
/* ===== TABLET VIEW ======= */
/* ========================= */

@media (max-width:1024px){

.nav-links{
gap:18px;
}

.logo-text h3{
margin-left:2rem !important;
font-size:18px;
}

.nav-right{
margin-right:2rem !important;
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* ========================= */
/* ===== MOBILE VIEW ======= */
/* ========================= */

@media (max-width:768px){

.navbar{
flex-direction:column;
align-items:flex-start;
padding:10px 20px;
}

.nav-links{
flex-direction:column;
width:100%;
display:none;
background:#fff;
margin-top:10px;
padding:10px 0;
}

.nav-links li{
width:100%;
padding:10px 20px;
}

.nav-links.active{
display:flex;
}

.nav-right{
display:none;
}

.logo-text h3{
margin-left:0 !important;
font-size:18px;
}

/* privacy content */

.privacy-container{
padding:30px 15px;
}

.privacy-container h1{
font-size:26px;
}

.privacy-container h2{
font-size:20px;
}

/* footer */

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-bottom-inner{
flex-direction:column;
gap:10px;
text-align:center;
}

}

/* ========================= */
/* ===== SMALL MOBILE ====== */
/* ========================= */

@media (max-width:480px){

.privacy-container h1{
font-size:22px;
}

.privacy-container p{
font-size:14px;
}

.whatsapp-float{
width:50px;
height:50px;
bottom:20px;
right:20px;
}

}





/* ============================= */
/* RESPONSIVE NAVBAR + HAMBURGER */
/* ============================= */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* tablet */

@media (max-width:1024px){

.nav-links{
gap:18px;
}

.nav-right{
margin-right:2rem !important;
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.service-card-main{
flex-direction:column;
gap:30px;
}

}

/* mobile */

@media (max-width:768px){

.nav-wrap{
display:flex;
justify-content:space-between;
align-items:center;
}

.hamburger{
display:block;
}

.nav-links{
position:absolute;
top:80px;
left:0;
width:100%;
background:white;
flex-direction:column;
display:none;
padding:20px 0;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.nav-links li{
padding:12px 20px;
}

.nav-links.active{
display:flex;
}

.nav-right{
display:none;
}

.logo-text h3{
margin-left:0 !important;
font-size:18px;
}

/* services */

.service-card-main{
flex-direction:column;
padding:25px;
}

.service-features{
margin-top:20px;
}

/* hero */

.services-hero h1{
font-size:32px;
}

.services-hero p{
font-size:15px;
}

/* CTA */

.cta-inner{
text-align:center;
padding:40px 20px;
}

/* footer */

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-bottom-inner{
flex-direction:column;
gap:8px;
text-align:center;
}

}

/* small mobile */

@media (max-width:480px){

.services-hero h1{
font-size:26px;
}

.service-card-main{
padding:20px;
}

.whatsapp-float{
width:50px;
height:50px;
bottom:20px;
right:20px;
}

}

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* mobile */

@media (max-width:768px){

.hamburger{
display:block;
}

.nav-links{
position:absolute;
top:80px;
left:0;
width:100%;
background:white;
flex-direction:column;
display:none;
padding:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.nav-links.active{
display:flex;
}

.nav-right{
display:none;
}

}

/* General Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: white;
    z-index: 1000;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    .hamburger { display: block; }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active { left: 0; }

    .nav-right, .logo1 h3 { margin: 0 !important; }
    
    .hero-content {
        margin: 0 !important;
        padding: 20px;
        text-align: center;
    }
    
    .stats {
        margin: 20px 0 0 0 !important;
        justify-content: center;
    }

    .service-grid, .footer-grid {
        grid-template-columns: 1fr;
        margin: 0 !important;
    }
}

/* Hero Section Base */
.hero-home {
    margin-top: 70px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 40, 90, 0.65), rgba(0, 40, 90, 0.20)), url('hero-aegis.jpg');
    background-size: cover;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 10px;
    border-radius: 50%;
    z-index: 2000;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none; /* Default band */
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
        height: auto;
    }

    /* Jab hamburger click ho to ye class add hogi */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    /* Mobile Dropdown Fix */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: relative; /* Absolute se hata kar relative kiya taaki niche space banaye */
        top: 0;
        width: 100%;
        box-shadow: none;
        display: none; /* Click ya hover pe dikhane ke liye */
        background: #f9f9f9;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}


/* Container reset */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Responsive */
@media (max-width: 1024px) {
    .hamburger { display: block; cursor: pointer; font-size: 1.8rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-right { display: none; } /* Mobile pe buttons hide */
    
    /* Hero section fix */
    .about-hero-inner h1 { font-size: 2rem; }
}

/* Grid Layouts for Mobile */
@media (max-width: 768px) {
    .mv-grid, .values-grid, .team-grid, .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .about-hero-inner {
        padding: 40px 10px;
        text-align: center;
    }
    
    .mv-card, .value-card, .team-card {
        margin-bottom: 20px;
    }
}

/* About Hero Styles */
.about-hero-full {
    background: #00285a;
    color: white;
    padding: 100px 0;
    text-align: center;
}

/* Footer Fix */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}


/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Alignment Fix */
.navbar {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a { text-decoration: none; color: #333; font-weight: 500; }

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Contact Hero (Centered) */
.contact-hero {
    padding: 120px 0 60px;
    background: #f8f9fa;
    text-align: center;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 60px 20px;
}

/* --- Responsive Rules (Mobile & Tablet) --- */
@media (max-width: 1024px) {
    .hamburger { display: block; margin-right: 2rem; }

    .nav-links {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active { display: flex; }
    
    .nav-right { display: none; } /* Hide buttons on mobile for clean look */

    /* Contact Grid to Stack */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Alignment Fix */


.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    .footer-links-wrap {
        justify-content: center;
        display: flex;
        gap: 20px;
    }
}

/* Container & Resets */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section Alignment */
.services-hero {
    padding: 100px 0;
    
    text-align: center;
}

.hero-content {
    margin: 0 auto !important; /* Fixed 26rem margin removed */
}

/* Service Cards */
.service-card-main {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
}

.service-card-main.reverse { flex-direction: row-reverse; }

.service-content, .service-features { flex: 1; }

/* Responsive Media Queries */

@media (max-width: 1024px) {
    .hamburger { display: block; margin-right: 5rem; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .services-hero.{
      margin-left: -20rem;
    }
    
    
    .nav-links.active { display: flex; }
    .nav-right { display: none; }

    /* Service Cards Stack on Tablet/Mobile */
    .service-card-main, .service-card-main.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features ul {
        display: inline-block;
        text-align: left;
    }
}

/* Footer Reset */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin: 0 auto !important; /* Fixed 27rem margin removed */
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
    /* Footer Grid Reset */
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-left: 0 !important; /* Aapka 27rem hata diya */
        height: auto !important;   /* Fixed height hata di */
    }

    .footer-col {
        margin-left: 0 !important;   /* Aapka 5rem aur 26rem hata diya */
        margin-top: 0 !important;    /* Aapka -13.5rem hata diya */
        margin-bottom: 20px;
    }

    .footer-brand {
        margin-bottom: 30px;
    }

    hr {
        margin-top: 20px !important;
    }

    .footer-bottom-inner {
        margin-top: 0 !important;    /* Aapka -5rem hata diya */
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-bottom: 20px;
    }
}

/* Services Hero Responsiveness */
@media (max-width: 1024px) {
    .services-hero .container {
        margin-left: 0 !important; /* Aapka 26rem mobile pe 0 ho jayega */
        text-align: center !important; /* Content center ho jayega */
        padding: 0 20px !important; /* Sides se thoda space */
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .services-hero {
        padding: 60px 0 !important; /* Mobile pe height adjust */
    }

    .services-hero h1 {
        font-size: 2rem !important; /* Mobile pe heading size adjust */
        margin-left: 0 !important;
    }

    .services-hero p {
        margin-left: 0 !important;
        max-width: 100% !important;
    }
}


/* Desktop Margins (Wahi jo aapne rakhe hain) */
.responsive-logo { margin-left: 5rem; }
.services-hero .container { margin-left: 26rem; }

/* Responsive Media Query */
@media (max-width: 1024px) {
    /* 1. Reset Margins */
    .responsive-logo, 
    .services-hero .container, 
    .footer-grid, 
    .footer-col {
        margin-left: 0 !important;
        margin-top: 0 !important;
        height: auto !important;
        text-align: center;
    }

    /* 2. Hamburger Menu Logic */
    .hamburger {
        display: block !important;
        cursor: pointer;
        font-size: 30px;
        color: #333;
    }

    .nav-links {
        display: none; /* Mobile pe band rahega default */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex; /* Click pe khulega */
    }

    .desktop-show { display: none; }
    .mobile-show { display: block; }
    
    /* Footer Stack */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}