body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #F1F5F9;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
}

/* TOPBAR (IMPROVED) */
.topbar {
    background: #0f172a;
    color: white;
    padding: 8px 40px;
    font-size: 14px;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
}

/* NAVBAR (PREMIUM FIX) */
.navbar {
    background: white;   /* 🔥 blue hata ke premium white */
    color: #111;
    padding: 0 40px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* LOGO FIX */
.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
    color: #1e293b;
}

/* NAV LINKS */
.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

/* LINKS */
.navbar a {
    color: #333;   /* 🔥 white se dark kiya */
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

/* UNDERLINE */
.navbar a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #ff4b2b;   /* 🔥 green se premium orange */
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a:hover {
    color: #ff4b2b;
}

/* BUTTON */
.nav-btn {
    flex: 0 0 auto;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    top: 100%;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content:hover {
    display: block;
}

.dropdown-content a {
    color: #111;
    padding: 10px 15px;
    display: block;
}

.dropdown-content a:hover {
    background: #f1f5f9;
}

/* SLIDER */
.slider {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.active {
    display: block;
}

/* DARK OVERLAY */
.slider::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

.hero {
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    position: Cover;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

/* TEXT CONTENT */
.hero .overlay {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    padding: 120px 60px;
}

.hero h1 {
    font-size: 45px;
}

.hero p {
    margin: 15px 0;
}

.hero button {
    padding: 10px 20px;
    background: #22c55e;
    border: none;
    color: white;
    border-radius: 5px;
}

/* BUTTON */
button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #22C55E, #16a34a);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 8px;
}

/* SECTIONS */
section {
    padding: 70px 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARDS */
.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(to right, #2563EB, #3b82f6);
    color: white;
    padding: 50px;
    border-radius: 10px;
    margin: 40px 20px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: #111;
    color: white;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 25px;
}

/* MOBILE */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }
}
.notifications {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.notifications p {
    display: inline-block;
    background: #ffe4e6;
    padding: 8px 15px;
    border-radius: 20px;
    color: #e11d48;
    font-weight: 500;
}
/* 🔥 GALLERY FIX */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images ek row me */
    gap: 20px;
}

.grid img {
    width: 100%;
    height: 180px;   /* 🔥 fixed height */
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
}

/* 🔥 POPUP IMAGE */
.popup {
    display: none; /* initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9); /* Background dark */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.popup span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.about-section {
    padding: 50px;
    max-width: 800px;
    margin: auto;
}

.about-section h2 {
    margin-bottom: 10px;
}
.payment-container {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
}

.bank-details, .qr-section {
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.qr-section img {
    width: 200px;
    margin-top: 10px;
}
/* 🔥 SERVICES SECTION */
.services {
    text-align: center;
    background: #f8fafc;
    padding: 70px 20px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    width: 220px;
}

.icon {
    width: 100px;
    height: 100px;
    background: #facc15;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-top: 15px;
    color: #f97316;
}
/* 🔥 SOCIAL ICONS */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #facc15;
}
/* 🔥 WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp:hover {
    background: #1ebe5d;
}
/* 🔥 WHY SECTION */
.why {
    background: url('../images/why.jpg') no-repeat center/cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.why::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;
}

.why h2 {
    position: relative;
    z-index: 2;
    font-size: 35px;
    margin-bottom: 40px;
}

.why-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.why-card {
    background: white;
    color: #111;
    padding: 30px;
    border-radius: 20px;
    width: 220px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.why-card .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.why-card:hover {
    transform: translateY(-40px);
}
/* 🔥 CERTIFICATIONS PREMIUM */
.certifications {
    text-align: center;
    padding: 70px 20px;
    background: #f8fafc;
}

/* 🔥 CERTIFICATIONS FINAL PREMIUM */
.certifications {
    text-align: center;
    padding: 70px 20px;
    background: #f1f5f9;
}

.cert-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;   /* 🔥 IMPORTANT */
}
.cert-card {
    background: white;
    padding: 30px;
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* ICON CIRCLE */
.cert-card .icon {
    width: 90px;
    height: 90px;
    background: transparent;   /* 🔥 remove circle color */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-card .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* TEXT */
.cert-card h3 {
    margin-top: 15px;
    color: #1e293b;
    font-size: 18px;
}

/* HOVER */
.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.cert-card h3 {
    color: #0f172a;   /* dark premium */
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
/* 🔥 FOOTER PREMIUM */
.footer {
    background: #020617;
    color: white;
    padding: 50px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-box h3 {
    margin-bottom: 15px;
}

.footer-box p,
.footer-box a {
    font-size: 14px;
    color: #cbd5f5;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-box a:hover {
    color: white;
}

.footer iframe {
    border-radius: 10px;
}

.footer .container {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #1e293b;
    padding-top: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* 🔥 CLEAN CERT LOGO STYLE */
.cert-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cert-card h3 {
    font-size: 16px;
    color: #0f172a;
}
.visitor-counter {
    text-align: center;
    margin-top: 15px;
}

.visitor-counter h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #cbd5f5;
}

.visitor-counter img {
    height: 30px;
}
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #cbd5f5;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #22c55e; /* green hover 🔥 */
}
/* 🔥 CONTACT PAGE */
.contact-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form,
.contact-info {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #22c55e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #16a34a;
}
/* 🔥 PREMIUM STATS */
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px;
    margin: 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    text-align: center;
    flex-wrap: wrap;
}

/* BOX */
.stat-box {
    transition: 0.3s;
}

/* NUMBER */
.stat-box h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

/* TEXT */
.stat-box p {
    font-size: 14px;
    opacity: 0.8;
}

/* HOVER */
.stat-box:hover {
    transform: translateY(-8px);
}
/* 🔥 FINAL WORKING MOBILE FIX */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* NAVBAR FIX */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 15px;
  }

  /* LOGO FIX */
  .logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo span {
    font-size: 16px;
  }

  /* MENU FIX */
  .nav-links {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links a,
  .dropdown {
    display: block;
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }

  /* DROPDOWN FIX */
  .dropdown-content {
    position: static;
    display: block;
    box-shadow: none;
    background: #f9f9f9;
  }

  /* HERO FIX */
  .hero {
    height: auto !important;
  }

  .hero .overlay {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  /* TOPBAR FIX */
  .topbar-container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

}
/* 🔥 PREMIUM ABOUT PAGE */
.about-box {
  background: #ffffff;
  padding: 35px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-5px);
}

.about-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0f172a;
  position: relative;
}

/* underline effect */
.about-box h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #22c55e;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* text */
.about-box p {
  color: #444;
  line-height: 1.7;
  font-size: 15px;
}

/* 🔥 Director special look */
.director-box {
  border-left: 5px solid #22c55e;
  background: linear-gradient(to right, #f9fafb, #ffffff);
}
/* 🔥 ABOUT FLEX (LOGO + TEXT) */
.about-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO */
.about-img img {
  width: 120px;
  height: auto;
}

/* TEXT */
.about-text {
  flex: 1;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 90px;
  }
}
/* 🔥 DIRECTOR PREMIUM */
.director-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* IMAGE */
.director-img img {
  width: 220px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* TEXT */
.director-text {
  flex: 1;
}

.director-text h2 {
  margin-bottom: 10px;
}

.director-text h4 {
  margin-top: 15px;
  color: #22c55e;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .director-flex {
    flex-direction: column;
    text-align: center;
  }

  .director-img img {
    width: 160px;
  }
}
/* 🔥 CALL BUTTON */
.call-btn {
  position: fixed;
  bottom: 90px; /* WhatsApp ke upar */
  right: 20px;
  background: #2563eb;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.call-btn:hover {
  background: #1e40af;
}


