* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  width: 100%;
  background: #e63946;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Logo */
.logo img {
  height: 45px;
  width: auto;
}

/* Nav */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 18px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffd166;
}

/* CTA Button */
.cta-btn {
  background: #ffd166;
  color: #e63946;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #e63946;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    width: 100%;
    background: #e63946;
    text-align: center;
    transition: 0.4s;
    padding: 20px 0;
  }

  nav ul li {
    margin: 15px 0;
  }

  nav ul.show {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: static; /* ✅ fix */
  }
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Background Video */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

/* Slogan Text */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 400;
  color: #ffd166;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
}
/* About Section */
.about {
  padding: 80px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: #f8f9fa;
}

.about img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.about-content .highlight {
  font-weight: 600;
  color: #e63946;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }
  .about img {
    max-width: 100%;
  }
}/* Why Choose Us Section */
.why {
  padding: 80px 10%;
  background: #f8f9fa;
  text-align: center;
}

.why h2 {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 40px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.why-card .icon {
  font-size: 40px;
  color: #e63946;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Product Section */
.product {
  padding: 80px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: #fff;
}

.product img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.product-content {
  flex: 1;
}

.product-content h2 {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 20px;
}

.product-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  font-size: 17px;
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #444;
}

.product-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e63946;
  font-weight: bold;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .product {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }
  .product img {
    max-width: 100%;
  }
  .product-features li {
    text-align: left;
  }
}
/* Product Cards Section */
.product-cards {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.product-cards h2 {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 25px 20px;
  text-align: left;
  transition: 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Top Badge */
.card .badge {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Title */
.card h3 {
  margin-top: 30px;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

/* Subtitle */
.card small {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Features */
.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.card ul li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #333;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #06c167;
  font-weight: bold;
}

/* Button */
.card .btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.card .btn:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  box-shadow: 0 4px 10px rgba(255,0,0,0.4);
}
/* Features Section */
.features {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff5f5, #fff0e6);
  position: relative;
}

.features .section-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
  letter-spacing: 1px;
}

.features .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 60, 90, 0.2);
}

.feature-card .icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  animation: pulse 3s infinite;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #111;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.98rem;
  color: #666;
  line-height: 1.6;
}

/* Icon Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 60, 90, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 60, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 60, 90, 0);
  }
}
/* Gallery Section */
.gallery {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "🔍 View";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(230,57,70,0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover::after {
  bottom: 15px;
  opacity: 1;
}
/* Shorts / Reels Section */
.shorts {
  padding: 80px 10%;
  background: #f8f9fa;
  text-align: center;
}

.shorts h2 {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 40px;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.short-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
  background: #000;
}

.short-item:hover {
  transform: translateY(-6px);
}

.short-item iframe {
  width: 100%;
  height: 500px; /* ✅ Mobile-friendly vertical size */
  border: none;
}
.coverage-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.coverage-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ff6b00;
}

.coverage-title span {
  color: #111;
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  background: #fff7f0;
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ff6b00;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111;
}

.card p {
  font-size: 15px;
  color: #555;
}

.note {
  margin-top: 25px;
  font-size: 14px;
  color: #d9534f;
  font-weight: 500;
}
.featured-certifications {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #ff6b00;
  margin: 30px 0 20px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.logo-grid img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.1);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 40px auto;
  max-width: 1100px;
}

.cert-item {
  background: #f9fafb;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-5px);
  background: #fff7f0;
}

.cert-item img {
  height: 50px;
  margin-bottom: 10px;
}

.cert-item p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
/* Footer Styling */
.footer {
  background: #0f172a;
  color: #f1f5f9;
  padding: 60px 20px 30px; /* पहले 40px था, अब ज्यादा space */
  font-family: 'Poppins', sans-serif;
  min-height: 250px; /* minimum height बढ़ाई */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px; /* पहले 20px था */
}

.footer h2,
.footer h3 {
  margin-bottom: 18px; /* थोड़ा spacing बढ़ाया */
  color: #ff6b6b;
}

.footer p,
.footer a {
  font-size: 15px; /* text थोड़ा बड़ा */
  color: #e2e8f0;
  text-decoration: none;
}

.footer a:hover {
  color: #ff6b6b;
  transition: 0.3s;
}

/* Social Icons */
.footer-social a {
  margin-right: 12px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;  /* पहले 38px था */
  height: 42px; /* पहले 38px था */
  border-radius: 50%;
  background: #1e293b;
  color: #f1f5f9;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ff6b6b;
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #334155;
  padding-top: 20px; /* पहले 15px था */
  font-size: 14px;
  color: #94a3b8;
}
/* Other Brands Section */
.footer-brands ul {
  list-style: none;
  padding: 0;
}

.footer-brands li {
  margin-bottom: 8px;
}

.footer-brands a {
  color: #e2e8f0;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-brands a:hover {
  color: #cd0303; /* Fire theme hover */
  padding-left: 5px; /* Hover पर हल्का सा slide effect */
}
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #df1414, #ff914d);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.cta-container h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-container h2 span {
  color: #0f172a;
  background: #fff;
  padding: 2px 8px;
  border-radius: 6px;
}

.cta-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #fdfdfd;
}

.cta-btn {
  background: #eec008;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.cta-btn:hover {
  background: #fff;
  color: #ff6b6b;
}
/* FAQ Section */
.faq-section {
  background: #f9fafb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #0f172a;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f1f5f9;
  padding: 0 15px;
}

.faq-answer p {
  padding: 10px 0;
  margin: 0;
  color: #334155;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 15px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: #ff6b6b;
}
/* #MAP  */
 .map-section {
    text-align: center;
    padding: 40px 20px;
    background: #f7f8fb;
  }
  .map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  .map-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }