body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}


/* Top Info Bar */
.top-bar {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.top-bar .contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  margin-left: 8px;
  text-decoration: none;
  font-size: 16px;
}

/* Navbar */
.navbar {
  background-color: #0057b8;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px; /* Increased padding for bulkier feel */
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Adds subtle depth */
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 16px; /* Slightly more spacing */
}

.logo {
  background-color: #fff;
  color: #0057b8;
  font-weight: bold;
  font-size: 22px; /* Slightly larger logo text */
  padding: 8px 16px; /* More padding for bulk */
  border-radius: 6px;
}

.leaf {
  color: #00a859;
  font-size: 20px; /* Slightly larger leaf */
}

.tagline {
  font-style: italic;
  font-size: 15px;
  color: #aad8ff;
}

/* Company Name */
.company-name {
  font-size: 22px;
  font-weight: 600;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 24px; /* Slightly more spacing between links */
  font-size: 16px; /* Larger font for visibility */
  font-weight: 500;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #ffd700; /* Gold hover for premium feel */
}

/* Social Icons */
.social-icons a {
  margin-left: 12px;
  color: white;
  font-size: 18px; /* Slightly larger icons */
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00aaff;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
}






/* image */
.promo-section {
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
}

.promo-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-img {
  width: 45%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* intro*/
.holyland-section {
  background-color: #e0f7ff; /* Sky blue */
  padding: 50px 20px;
}

.holyland-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.holyland-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.holyland-intro {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.holyland-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.holyland-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 350px;
}

.holyland-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 20px;
  color: #0057b8;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

.festival-offer {
  margin-top: 30px;
  text-align: center;
}

.festival-offer img {
  width: 300px;
  height: auto;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  /* Promo Section */
  .promo-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .promo-img {
    width: 90%;
    max-width: 100%;
  }

  /* Holyland Section */
  .holyland-section {
    padding: 40px 16px;
  }

  .holyland-section h2 {
    font-size: 24px;
  }

  .holyland-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .holyland-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .holyland-card {
    max-width: 100%;
  }

  .holyland-card img {
    height: 180px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 13px;
  }

  /* Festival Offer */
  .festival-offer img {
    width: 90%;
    max-width: 280px;
  }
}



/* new launches*/
.launches-section {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.launches-section h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.launches-strip {
  overflow: hidden;
  width: 100%;
}

.launches-track {
  display: flex;
  gap: 30px;
  animation: scrollLaunches 20s linear infinite;
}

.launch-card {
  min-width: 200px;
  background-color: #f0f8ff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
  text-align: center;
}

.launch-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.launch-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #0057b8;
  font-weight: 500;
}

@keyframes scrollLaunches {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (max-width: 768px) {
  .launches-section {
    padding: 30px 16px;
  }

  .launches-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .launches-track {
    gap: 20px;
  }

  .launch-card {
    min-width: 160px;
    padding: 8px;
  }

  .launch-card img {
    height: 120px;
  }

  .launch-card p {
    font-size: 13px;
  }
}




/* ratings*/
.stats-section {
  background-color: #f0f8ff;
  padding: 50px 20px;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stats-container h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.stat-card h3 {
  font-size: 24px;
  color: #0057b8;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 14px;
  color: #555;
}
@media (max-width: 768px) {
  .stats-section {
    padding: 40px 16px;
  }

  .stats-container h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .stat-card h3 {
    font-size: 20px;
  }

  .stat-card p {
    font-size: 13px;
  }
}



/* client*/
.testimonial-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000;
}

.testimonial-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: #003366; /* Dark blue */
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 300px;
  flex: 1;
  color: #fff;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-size: 1rem;
  color: #f0f8ff;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-card .author {
  font-size: 0.9rem;
  color: #aad8ff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .testimonial-section {
    padding: 1.5rem;
  }

  .testimonial-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-card {
    max-width: 100%;
    padding: 1.2rem;
  }

  .testimonial-card .quote {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .testimonial-card .author {
    font-size: 0.85rem;
  }
}



/* blog*/
.blog-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.blog-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
  color: #0057b8;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.blog-content a {
  font-size: 14px;
  color: #0077c2;
  text-decoration: none;
  font-weight: 600;
}

.blog-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 40px 16px;
  }

  .blog-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card img {
    height: 160px;
  }

  .blog-content {
    padding: 16px;
  }

  .blog-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .blog-content p,
  .blog-content a {
    font-size: 13px;
  }
}




/* faqs*/
.faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #0057b8;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #e0f7ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  color: #444;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 16px;
  }

  .faq-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .faq-container {
    padding: 0 4px;
  }

  .faq-question {
    font-size: 16px;
    padding: 12px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 0 12px;
  }
}



/* banner*/
.gov-banner {
  background-color: #003366; /* Deep blue */
  color: #ffffff;
  text-align: center;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 900px;
}
/*.gov-banner {*/
/*  background-color: #e6f2ff;*/
/*  padding: 40px 20px;*/
/*  text-align: center;*/
/*  border-radius: 12px;*/
/*  margin-bottom: 40px;*/
/*}*/

.gov-banner p {
  font-size: 30px;
  color:#fff;
  margin-bottom: 30px;
  font-weight: 500;
}

.certificates {
  display: flex;
  justify-content: center;
  gap: 60px; /* ✅ Increased spacing between images */
  flex-wrap: wrap;
  margin-top: 20px;
}

.certificates img {
  width: 200px; /* ✅ Made images larger */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.certificates img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .gov-banner {
    padding: 20px 16px;
    font-size: 15px;
    max-width: 100%;
    margin: 30px 10px;
  }

  .gov-banner p {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .certificates {
    gap: 30px;
    justify-content: center;
  }

  .certificates img {
    width: 140px;
  }
}



/*footer*/
.footer-section {
  background-color: #003366;
  color: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #aad8ff;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;

}

.footer-newsletter h4 {
    text-align:center;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.social-icons a {
  color: #aad8ff;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-newsletter input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-newsletter button {
  background-color: #ffd700;
  color: #003366;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  max-width: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0 auto; /* ensures horizontal centering */
}


.footer-newsletter button:hover {
  background-color: #ffcc00;
}
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 140px;
    margin-bottom: 16px;
  }

  .footer-contact h4,
  .footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-contact p {
    font-size: 13px;
  }

.footer-newsletter input {
    width: 90%; /* ✅ Slightly narrower input */
    max-width: 280px;
    font-size: 13px;
    padding: 8px;
    margin-bottom: 10px;
    text-align: center; /* Optional: center text inside input */
  }


  
.footer-newsletter button {
    width: 120px; /* ✅ Smaller button */
    font-size: 13px;
    padding: 8px;
    margin: 0 auto; /* ✅ Center the button */
  }


  .social-icons a {
    font-size: 16px;
    margin-right: 8px;
  }
}




/
/* ====== ABOUT HERO SECTION ====== */
.about-hero {
  background-color: #0057b8;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.about-overlay {
  max-width: 800px;
  margin: 0 auto;
}

.about-overlay h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-overlay p {
  font-size: 18px;
  margin-top: 0;
}

/* ====== ABOUT CONTENT SECTION ====== */
.about-content {
  padding: 60px 20px;
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0057b8;
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text li {
  font-size: 16px;
  margin-bottom: 10px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ====== VALUES SECTION ====== */
.about-values {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.about-values h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #003366;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
  font-size: 20px;
  color: #0057b8;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #555;
}
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 16px;
  }

  .about-overlay h1 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .about-overlay p {
    font-size: 15px;
  }

  .about-content {
    padding: 40px 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-text h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .about-text p,
  .about-text li {
    font-size: 14px;
  }

  .about-image img {
    border-radius: 10px;
  }

  .about-values {
    padding: 40px 16px;
  }

  .about-values h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .value-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 13px;
  }
}



/*ourteam*/
.team-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.team-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.team-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 87, 184, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 87, 184, 0.2);
}

.team-image {
  width: 100%;
  max-width: 220px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 16px;
}

.team-image img {
  width: 100%;
  transition: transform 0.4s ease;
  border-radius: 50%;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 20px;
  color: #0057b8;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.bio {
  font-size: 14px;
  color: #444;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-card:hover .bio {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .team-section {
    padding: 40px 16px;
  }

  .team-section h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .team-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 16px;
  }

  .team-image {
    max-width: 180px;
    margin-bottom: 12px;
  }

  .team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .team-card p,
  .bio {
    font-size: 13px;
  }
}




/* product page */
.products-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.products-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.products-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 87, 184, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 87, 184, 0.2);
}

.product-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 20px;
  color: #0057b8;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

/* banner */
.coming-soon-banner {
  background-color: #0057b8;
  color: #fff;
   text-align: center;
  padding: 60px 20px;
  margin: 40px auto 60px auto; /* Top and bottom margin, centered horizontally */
  border-radius: 12px;
  max-width: 800px;  
  
}

.coming-soon-banner h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.coming-soon-banner p {
  font-size: 16px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .products-section {
    padding: 40px 16px;
  }

  .products-section h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .products-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 16px;
  }

  .product-card img {
    max-width: 180px;
    margin-bottom: 12px;
  }

  .product-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .product-card p {
    font-size: 13px;
  }

  .coming-soon-banner {
    padding: 40px 16px;
    margin: 30px 10px;
  }

  .coming-soon-banner h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .coming-soon-banner p {
    font-size: 14px;
    max-width: 100%;
  }
}



/*franchise*/
.franchise-hero {
  background-color: skyblue;
  margin-top: 60px;
  color: #000;
  text-align: center;
  padding: 80px 20px;
}

.franchise-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.franchise-hero p {
  font-size: 16px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.franchise-benefits {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.franchise-benefits h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card i {
  font-size: 32px;
  color: #0057b8;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
}

.franchise-requirements {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.franchise-requirements h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 20px;
}

.franchise-requirements ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.franchise-requirements li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}

.franchise-cta {
  background-color: skyblue;
  color: #000;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.franchise-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.franchise-cta p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #003366;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ffcc00;
}
@media (max-width: 768px) {
  .franchise-hero {
    padding: 60px 16px;
    margin-top: 40px;
  }

  .franchise-hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .franchise-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .franchise-benefits {
    padding: 40px 16px;
  }

  .franchise-benefits h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-card i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .benefit-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  .franchise-requirements {
    padding: 40px 16px;
  }

  .franchise-requirements h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .franchise-requirements li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .franchise-cta {
    padding: 40px 16px;
    margin-bottom: 40px;
  }

  .franchise-cta h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .franchise-cta p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* contact*/
.contact-hero {
  background-color: skyblue;
  color: #000;
  text-align: center;
  padding: 80px 20px;
   margin-bottom: 60px;
  
}

.contact-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 16px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #fff;
}

.contact-form {
  max-width: 380px; /* reduced from 600px */
  margin: 0 auto;
  display: grid;
  gap: 16px; /* slightly tighter spacing */
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  color: #003366;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.submit-button {
  width: 160px; /* smaller button */
  margin: 0 auto; /* centers it */
  background-color: #0057b8;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  text-align: center;
}

.submit-button:hover {
  background-color: #003366;
}
.contact-cta {
  background-color: #f4f4f4;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-cta h2 {
  font-size: 24px;
  color: #0057b8;
  margin-bottom: 10px;
}

.contact-cta p {
  font-size: 16px;
  color: #444;
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 16px;
    margin-bottom: 40px;
  }

  .contact-hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .contact-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .contact-form-section {
    padding: 40px 16px;
  }

  .contact-form {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /*  Center the form fields */
    gap: 14px;
  }

  .form-group {
    width: 90%; /*  Reduce width of each input group */
    max-width: 320px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 10px;
    width: 100%;
  }

  .submit-button {
    width: 140px; /* Smaller button */
    font-size: 13px;
    padding: 8px 12px;
    margin-top: 10px;
  }

  .contact-cta {
    padding: 40px 16px;
    margin-bottom: 40px;
  }

  .contact-cta h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .contact-cta p {
    font-size: 14px;
  }
}



/* login and signup*/
.auth-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f4f4f4;
}

.auth-section h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 20px;
}

.auth-tabs {
  margin-bottom: 30px;
}

.auth-tabs button {
  background-color: #0057b8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.auth-tabs button.active {
  background-color: #003366;
}

.auth-form {
  max-width: 360px; /* smaller width */
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px; /* ✅ more space between fields */
  text-align: left;
}

.auth-form h3 {
  font-size: 22px;
  color: #0057b8;
  margin-bottom: 10px;
  text-align: center;
}

.auth-form label {
  font-size: 14px;
  color: #003366;
  margin-bottom: 4px;
  display: block;
}

.auth-form input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px; /* ✅ added spacing between inputs */
}

.auth-form button {
  background-color: #0057b8;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 140px; /* ✅ smaller button */
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .auth-section {
    padding: 40px 16px;
  }

  .auth-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .auth-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
  }

  .auth-tabs button {
    padding: 10px;
    margin: 0;
    font-size: 14px;
    width: 140px;
  }

  .auth-form {
    max-width: 100%;
    padding: 24px 16px;
    gap: 16px;
  }

  .auth-form h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .auth-form label {
    font-size: 13px;
  }

  .auth-form input {
    font-size: 13px;
    padding: 10px;
  }

  .auth-form button {
    width: 120px;
    font-size: 13px;
    padding: 8px;
  }
}


/* admin panel*/
 
h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 30px;
}

table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #0057b8;
  color: #fff;
}

tr:hover {
  background-color: #f0f8ff;
}

.admin-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  margin-bottom: 60px; /* ✅ Adds space above footer */
}

.search-bar {
  text-align: center;
  margin-bottom: 30px; /* ✅ Adds space below search bar */
}

.search-bar input[type="text"] {
  padding: 8px 12px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-bar button,
.search-bar a {
  padding: 8px 14px;
  margin-left: 8px;
  background-color: #0057b8;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.search-bar form {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.delete-btn {
  background-color: #d9534f;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.delete-btn:hover {
  background-color: #c9302c;
}

/* ✅ Mobile responsiveness */
@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .admin-container {
    padding: 0 10px;
    margin: 20px auto 40px;
  }

  .search-bar input[type="text"] {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }

  .search-bar form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .search-bar button,
  .search-bar a {
    width: 100%;
    max-width: 300px;
    margin-left: 0;
  }

  table {
    width: 100%;
    overflow-x: auto;
    display: block;
  }

  th, td {
    padding: 10px;
    font-size: 0.9rem;
  }

  .delete-btn {
    padding: 6px 8px;
    font-size: 0.85rem;
  }
}