/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
}

/* Header / Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: static;
  width: 100%;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

/* Logo */
.logo h2 {
  color: #ff6600;
  font-size: 24px;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ff6600;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  background-color: #fff;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #333;
}

.dropdown-content a:hover {
  background-color: #ff6600;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ✅ Header Icons */
.header-icons {
  display: flex;
  gap: 15px;
}

.header-icons a {
  color: #333;
  font-size: 20px;
  transition: color 0.3s;
}

.header-icons a:hover {
  color: #ff6600;
}
/* Hero Video Section */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  flex-direction: column;
}

.hero-overlay .hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInText 1.5s forwards 0.5s;
}

.hero-overlay .hero-text p {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInText 1.5s forwards 1.2s;
}

.hero-overlay .btn {
  font-size: 18px;
  padding: 12px 25px;
  opacity: 0;
  animation: fadeInButton 1.5s forwards 2s;
  transition: transform 0.3s, background-color 0.3s;
}

.hero-overlay .btn:hover {
  background-color: #e65c00;
  transform: translateY(-5px);
}

/* Hero Animations */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInButton {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about {
  text-align: center;
  padding: 60px 30px;
  background-color: #fff;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6600;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

/* Products Section */
.home-products {
  padding: 60px 30px;
  text-align: center;
}

.home-products h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff6600;
}

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

.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
  color: #333;
}

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

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials {
  padding: 60px 30px;
  background-color: #f2f2f2;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff6600;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background-color: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  color: #ff6600;
}

/* FAQ Section */
.faq {
  padding: 60px 30px;
  background-color: #fff;
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff6600;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 20px auto;
  text-align: left;
  padding: 15px;
  border-left: 4px solid #ff6600;
  background-color: #f9f9f9;
  border-radius: 5px;
  transition: transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h4 {
  margin-bottom: 5px;
}

.faq-item p {
  color: #555;
}

/* Contact Section */
.contact {
  padding: 60px 30px;
  text-align: center;
  background-color: #f2f2f2;
}

.contact form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
}

.contact button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.contact button:hover {
  background-color: #e65c00;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 30px;
  text-align: center;
}

footer .footer-content h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

footer .footer-content p {
  margin-bottom: 15px;
  color: #ccc;
}

footer .socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s;
}

footer .socials a:hover {
  color: #ff6600;
}

footer .contact-info {
  margin-top: 10px;
  color: #ccc;
}

footer .footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  nav ul {
    flex-direction: column;
    display: none;
    background-color: #fff;
    width: 100%;
    padding: 15px 0;
  }

  nav ul.show {
    display: flex;
  }

  .products,
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .hero-overlay .hero-text h1 {
    font-size: 32px;
  }

  .hero-overlay .hero-text p {
    font-size: 16px;
  }

  .hero-overlay .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #fff;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.features {
  padding: 60px 30px;
  text-align: center;
  background-color: #f2f2f2;
}

.features h2 {
  font-size: 36px;
  color: #0077cc;
  margin-bottom: 40px;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  background-color: #fff;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #333;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}
.cta-banner {
  background-color: #0077cc;
  color: #fff;
  padding: 60px 30px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-banner .btn {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 5px;
  transition: transform 0.3s, background-color 0.3s;
}

.cta-banner .btn:hover {
  background-color: #e65c00;
  transform: translateY(-3px);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works {
  padding: 60px 30px;
  text-align: center;
  background-color: #f9f9f9;
}

.how-it-works h2 {
  font-size: 36px;
  color: #0077cc;
  margin-bottom: 40px;
}

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

.step-card {
  background-color: #fff;
  padding: 25px;
  width: 220px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.step-card i {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 15px;
}

.step-card h3 {
  margin-bottom: 10px;
  color: #333;
}

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

.reviews {
  padding: 60px 30px;
  background-color: #f2f2f2;
  text-align: center;
}

.reviews h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 40px;
}

.review-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  background-color: #fff;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.review-card h3 {
  margin-bottom: 10px;
  color: #ff6600;
}

.review-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.product-comparison {
  padding: 60px 30px;
  text-align: center;
  background-color: #fff;
}

.product-comparison h2 {
  font-size: 36px;
  color: #0077cc;
  margin-bottom: 40px;
}

.comparison-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.comparison-card {
  background-color: #f2f2f2;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.social-handles {
  background-color: #0077cc;
  /* You can change this to your brand color */
  padding: 60px 30px;
  text-align: center;
  color: #fff;
}

.social-handles h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-btn.whatsapp {
  background-color: #25d366;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.contact-btn {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  /* default WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.contact-btn.call {
  background-color: #0077cc;
  /* Blue for call button */
}

/* About Hero */
.about-hero {
  background-color: #0077cc;
  /* Or a nice image using background-image */
  color: #fff;
  padding: 100px 30px;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 20px;
}

/* Our Story */
.our-story {
  padding: 60px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.our-story h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 20px;
}

.our-story p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

/* Why Choose Us */
.why-choose {
  padding: 60px 30px;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background-color: #f2f2f2;
  padding: 30px 20px;
  border-radius: 10px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #0077cc, #00aaff);
  color: #fff;
  padding: 100px 30px;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 20px;
}

/* Our Story */
.our-story {
  padding: 60px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.our-story h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 20px;
}

.our-story p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

/* Why Choose Us */
.why-choose {
  padding: 60px 30px;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background-color: #f2f2f2;
  padding: 30px 20px;
  border-radius: 10px;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

nav {
  background-color: #0077cc;
  padding: 15px 30px;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

/* General About Page Container */
.about-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Hero Section */
.about-hero {
  background-color: #f2f2f2;
  padding: 80px 20px;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  color: #ff6600;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 20px;
  color: #333;
}

/* Our Story */
.our-story {
  padding: 60px 0;
  text-align: center;
}

.our-story h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 20px;
}

.our-story p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.our-story p,
.timeline-item p {
  max-width: 800px;
  /* wider text block */
  margin: 0 auto;
  /* center the text */
}

/* Timeline */
.timeline {
  padding: 60px 0;
  text-align: center;
}

.timeline h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 40px;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  width: 10px;
  height: 100%;
  background: #0077cc;
  border-radius: 5px;
}

.timeline-year {
  font-size: 24px;
  font-weight: bold;
  color: #0077cc;
  margin-bottom: 10px;
}

/* Core Values */
.core-values {
  padding: 60px 0;
  text-align: center;
  background: #f9f9f9;
}

.core-values h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 40px;
}

.values-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card i {
  font-size: 50px;
  color: #0077cc;
  margin-bottom: 15px;
}

.value-card h3 {
  margin-bottom: 10px;
}

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

.values-cards,
.fun-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /* Spread cards evenly */
  gap: 20px;
}

.value-card,
.fun-card {
  flex: 1 1 250px;
  /* Flexible width, minimum 250px */
  max-width: 300px;
}
/* Fun Facts / Stats */
.fun-facts {
  padding: 60px 0;
  text-align: center;
}

.fun-facts h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 40px;
}

.fun-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.fun-card {
  background: #f2f2f2;
  padding: 30px 20px;
  border-radius: 15px;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fun-card i {
  font-size: 50px;
  color: #0077cc;
  margin-bottom: 15px;
}

.fun-card h3 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 5px;
}

.fun-card p {
  font-size: 16px;
  color: #555;
}

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

.timeline {
  background-color: #f2f2f2;
}

.core-values {
  background-color: #fff;
}

.fun-facts {
  background-color: #f9f9f9;
}

/* Social Media */
.social-media {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.social-media h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 30px;
}

.social-icons a {
  text-decoration: none;
  font-size: 36px;
  color: #0077cc;
  margin: 0 15px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ff6600;
  transform: scale(1.2);
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
  background-color: #333;
  color: #fff;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.floating-buttons a.whatsapp {
  background-color: #25D366;
}

.floating-buttons a.call {
  background-color: #0077cc;
}

/* Fade-in Animation with staggered delays */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInAnim 1s forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.5s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.8s;
}

.fade-in:nth-child(4) {
  animation-delay: 1.1s;
}

.fade-in:nth-child(5) {
  animation-delay: 1.4s;
}

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

.products-hero {
  background-color: #f2f2f2;
  text-align: center;
  padding: 80px 20px;
}
.products-hero h1 { color: #ff6600; font-size: 48px; margin-bottom: 15px; }
.products-hero p { color: #333; font-size: 20px; }

.products-container { max-width: 95%; margin: 0 auto; padding: 40px 10px; }

.product-category { margin-bottom: 60px; }
.product-category h2 { color: #ff6600; font-size: 36px; margin-bottom: 30px; text-align: center; }

.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.product-card h3 { color: #0077cc; margin-bottom: 10px; }
.product-card p { color: #555; margin-bottom: 15px; }

.order-btn {
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}
.order-btn:hover { transform: scale(1.05); }

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInAnim 1s forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.5s; }
@keyframes fadeInAnim { to { opacity: 1; transform: translateY(0); } }

.products-hero {
  background-color: #f2f2f2;
  text-align: center;
  padding: 80px 20px;
}

.products-hero h1 {
  color: #ff6600;
  font-size: 48px;
  margin-bottom: 15px;
}

.products-hero p {
  color: #333;
  font-size: 20px;
}

.products-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 60px 20px;
}

.product-link {
  background: #f9f9f9;
  text-align: center;
  padding: 50px 30px;
  border-radius: 20px;
  text-decoration: none;
  color: #0077cc;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 300px;
  max-width: 400px;
}

.product-link i {
  font-size: 60px;
  margin-bottom: 15px;
}

.product-link h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff6600;
}

.product-link p {
  font-size: 16px;
  color: #333;
}

/* Hover Effect */
.product-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInAnim 1s forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.5s;
}

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

.products-hero {
  background-color: #f2f2f2;
  text-align: center;
  padding: 80px 20px;
}

.products-hero h1 {
  color: #ff6600;
  font-size: 48px;
  margin-bottom: 15px;
}

.products-hero p {
  color: #333;
  font-size: 20px;
}

.products-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 40px 10px;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.product-card h3 {
  color: #0077cc;
  margin-bottom: 10px;
}

.product-card p {
  color: #555;
  margin-bottom: 15px;
}

.order-btn {
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.order-btn:hover {
  transform: scale(1.05);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInAnim 1s forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

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

/* Dropdown styling for Products menu */
.nav-menu li.dropdown {
  position: relative;
}

.nav-menu li.dropdown a.dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
}

.nav-menu li.dropdown:hover a.dropbtn {
  color: #ff6600;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  z-index: 10;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: #0077cc;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background-color: #f2f2f2;
  color: #ff6600;
}

/* Show dropdown on hover */
.nav-menu li.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile support: make dropdown stack below */
@media screen and (max-width: 768px) {
  .dropdown-content {
    position: static;
    display: none;
    /* hidden by default */
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #ffe5d9, #fff5f0);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonials-header h2 {
  font-size: 42px;
  color: #ff6600;
  margin-bottom: 10px;
}

.testimonials-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 25px;
  padding: 40px 25px;
  flex: 0 0 350px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-icon {
  font-size: 70px;
  color: #ff6600;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  font-size: 18px;
}

.testimonial-card h4 {
  color: #0077cc;
  font-weight: bold;
  font-size: 18px;
}

/* Fade-in Animation */
.testimonial-card.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInAnim 1s forwards;
}

.testimonial-card.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}

.testimonial-card.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}

.testimonial-card.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

.testimonial-card.fade-in:nth-child(4) {
  animation-delay: 0.8s;
}

.testimonial-card.fade-in:nth-child(5) {
  animation-delay: 1s;
}

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

/* Arrow Buttons */
.prev,
.next {
  background-color: #ff6600;
  border: none;
  color: white;
  font-size: 28px;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 5;
}

.prev:hover,
.next:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .testimonial-wrapper {
    flex-direction: column;
  }

  .prev,
  .next {
    margin: 15px 0;
  }

  .testimonial-card {
    flex: 0 0 80%;
  }
}

@media screen and (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 25px;
  }
}

/* Offer Highlights Section */
.offer-highlights {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.offer-box {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-box i {
  font-size: 40px;
  color: #004aad;
  margin-bottom: 12px;
}

.offer-box h4 {
  color: #222;
  font-size: 18px;
  margin-bottom: 8px;
}

.offer-box p {
  color: #666;
  font-size: 14px;
}

/* Hover Effect */
.offer-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .offer-highlights {
    flex-direction: column;
    align-items: center;
  }

  .offer-box {
    width: 90%;
  }
}

/* Top Offer Banner */
.top-offer {
  background-color: #004aad;
  /* Blue */
  color: white;
  text-align: center;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.top-offer .highlight {
  color: #ff6600;
  /* Orange highlight */
  font-weight: bold;
}

/* Navbar Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.nav-icons a {
  color: #004aad;
  font-size: 20px;
  transition: color 0.3s ease;
}

.nav-icons a:hover {
  color: #ff6600;
  /* Orange on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-icons {
    gap: 12px;
  }

  .nav-icons a {
    font-size: 18px;
  }
}

/* Header Icons */
.header-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  position: absolute;
  right: 30px;
  top: 20px;
}

.header-icons a {
  text-decoration: none;
  color: #004aad;
  /* Blue Theme */
  font-size: 22px;
  position: relative;
  transition: color 0.3s ease;
}

.header-icons a:hover {
  color: #ff6a00;
  /* Orange Hover */
}

/* Cart Count Badge */
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff6a00;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 50%;
}
/* Header Icons */
.header-icons {
  display: flex;
  gap: 25px;
  /* Space between icons */
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 30px;
  top: 20px;
}

.header-icons a {
  text-decoration: none;
  color: #004aad;
  /* Blue */
  font-size: 24px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.header-icons a:hover {
  color: #ff6a00;
  /* Orange on hover */
  transform: scale(1.2);
  /* Slight zoom effect */
}

/* Cart Count Badge */
.cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  background: #ff6a00;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Header Styling */
header {
  width: 100%;
  background-color: #0077cc;
  /* Modern blue */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar Layout */
.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}

/* Logo */
.logo h2 {
  font-size: 28px;
  color: #ff6600;
  /* Foamix logo color */
  font-weight: 700;
  letter-spacing: 1px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff6600;
  border-bottom: 2px solid #ff6600;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
  border-radius: 6px;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-weight: 500;
}

.dropdown-content li a:hover {
  background-color: #f1f1f1;
  color: #ff6600;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icons a {
  color: white;
  font-size: 20px;
  position: relative;
  transition: 0.3s ease;
}

.header-icons a:hover {
  color: #ff6600;
}

/* Cart Count */
.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff6600;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

/* Profile Page Styling */
.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #0077cc, #004c99);
}

.profile-box {
  background-color: #fff;
  width: 380px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.profile-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* Form Inputs */
.profile-form .input-group {
  position: relative;
  margin-bottom: 15px;
}

.profile-form .input-group i {
  position: absolute;
  top: 12px;
  left: 10px;
  color: #0077cc;
  font-size: 18px;
}

.profile-form input {
  width: 100%;
  padding: 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.profile-form input:focus {
  border-color: #0077cc;
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.4);
}

/* Sign In Button */
.btn-login {
  width: 100%;
  background-color: #0077cc;
  color: white;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-login:hover {
  background-color: #005fa3;
}

/* Footer Links */
.form-footer {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.form-footer a {
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
}

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

/* Divider */
.divider {
  margin: 20px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ccc;
}

.divider span {
  padding: 0 10px;
  color: #666;
  font-size: 14px;
}

/* Social Login Buttons */
.social-login a {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.google {
  background-color: #db4437;
  color: white;
}

.google:hover {
  background-color: #c23321;
}

.facebook {
  background-color: #3b5998;
  color: white;
}

.facebook:hover {
  background-color: #2d4373;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-login a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.social-login a.google {
  background-color: #db4437;
}

.social-login a.facebook {
  background-color: #1877f2;
}

.social-login a i {
  margin-right: 8px;
  font-size: 18px;
}

.social-login a:hover {
  opacity: 0.85;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 50px 20px;
  background-color: #f8f8f8;
  text-align: center;
  flex-wrap: wrap;
  border-radius: 15px;
}

.feature {
  width: 220px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.feature:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f3c88;
}

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

.foamix-work {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f9fa;
  border-radius: 15px;
  margin: 40px 0;
}

.foamix-work h2 {
  font-size: 28px;
  color: #1f3c88;
  margin-bottom: 10px;
}

.foamix-work .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.work-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.work-step {
  background-color: #fff;
  padding: 20px;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.work-step:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.work-step img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.work-step h3 {
  font-size: 18px;
  color: #1f3c88;
  margin-bottom: 10px;
}

.work-step p {
  font-size: 14px;
  color: #555;
}

/* Foamix Works Section */
.foamix-works {
  padding: 70px 20px;
  text-align: center;
  background-color: #f8f9fa;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 1200px;
}

.foamix-works h2 {
  font-size: 32px;
  color: #1f3c88;
  margin-bottom: 10px;
}

.foamix-works .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.works-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.work-card {
  background: #fff;
  width: 260px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.work-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.work-card h3 {
  font-size: 18px;
  color: #1f3c88;
  margin-bottom: 8px;
}

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

/* Promo Video */
.foamix-video {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.foamix-video video {
  width: 80%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.foamix-works .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #ff6600;
  /* Foamix orange accent */
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.foamix-works h2 {
  font-size: 42px;
  /* Heading ko bada kar diya */
  font-weight: 800;
  /* Heading ko bold banaya */
  color: #1f3c88;
  /* Attractive dark blue color */
  text-transform: uppercase;
  /* Sare letters capital me */
  letter-spacing: 1px;
  /* Thoda space diya letters ke beech */
  margin-bottom: 15px;
}

.foamix-text {
  max-width: 900px;
  margin: 20px auto;
  padding: 10px 15px;
  font-size: 18px;
  /* Thoda bada font */
  font-weight: bold;
  /* Bold text */
  color: #1f3c88;
  /* Dark blue color */
  text-align: center;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
  /* Modern font */
}
.foamix-text2 {
  max-width: 950px;
  margin: 25px auto;
  padding: 15px 20px;
  font-size: 19px;
  /* Thoda bada font */
  font-weight: bold;
  /* Bold text */
  color: #ff6600;
  /* Attractive orange color */
  text-align: center;
  line-height: 1.9;
  font-family: "Montserrat", sans-serif;
  /* Stylish modern font */
  background-color: #f9f9f9;
  /* Light background */
  border-radius: 12px;
  /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.foamix-promo {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.foamix-promo p {
  font-size: 18px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: #1f3c88;
  margin: 12px 0;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

/* Hover Effect */
.foamix-promo p:hover {
  color: #ff6600;
  transform: scale(1.05);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.foamix-about {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background-color: #f9f9ff;
  border-left: 6px solid #1f3c88;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.foamix-about p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #333333;
  line-height: 1.7;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.foamix-about:hover {
  background-color: #eef3ff;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 🌟 Universal Space Fix */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌟 Paragraphs ke beech ka space fix */
p {
  margin: 8px 0;
  /* Default gap thoda kam */
  line-height: 1.5;
  /* Paragraph lines ka spacing balanced */
}

/* 🌟 Heading aur Paragraph ke beech ka gap kam */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  /* Upar-niche ka gap controlled */
}

/* 🌟 Section ke upar-niche equal space */
section {
  margin: 20px 0;
  /* Har section me balanced spacing */
}

/* 🌟 Image ke neeche ka gap fix */
img {
  display: block;
  margin: 0 auto;
  padding: 0;
}

/* 🌟 Buttons ke upar-niche ka gap control */
button {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* 🌟 Mobile view spacing fix */
@media (max-width: 768px) {
  section {
    margin: 15px 0;
  }

  p {
    margin: 6px 0;
    line-height: 1.4;
  }
}

/* 🌟 About Page Compact Layout */
.about-page {
  padding: 0;
  margin: 0;
}

/* 🌟 About Page Main Container */
.about-page .container,
.about-page .about-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

/* 🌟 Headings ko compact karo */
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  margin: 5px 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
}

/* 🌟 Paragraphs ko near-near rakho */
.about-page p {
  margin: 3px 0;
  padding: 0;
  line-height: 1.4;
  font-size: 17px;
  color: #333;
}

/* 🌟 Image spacing remove */
.about-page img {
  display: block;
  margin: 5px auto;
  padding: 0;
  max-width: 100%;
  border-radius: 6px;
}

/* 🌟 Section spacing remove */
.about-page section {
  margin: 8px 0;
  padding: 0;
}

/* 🌟 Buttons bhi compact honge */
.about-page button {
  margin: 5px 0;
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 6px;
}

/* 🌟 Mobile view optimization */
@media (max-width: 768px) {
  .about-page p {
    font-size: 15px;
    line-height: 1.3;
  }

  .about-page h1,
  .about-page h2 {
    font-size: 22px;
  }
}

.about-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  margin: 12px 0;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

/* Hover effect for premium feel */
.about-text:hover {
  color: #ff6600;
  transform: scale(1.02);
}

/* 🌟 About Page Main Container */
.about-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  background-color: #f9f9ff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

/* 🌟 Title Styling */
.about-title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #1f3c88;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 🌟 Paragraph Styling */
.about-text {
  font-size: 18px;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  color: #333;
  margin: 15px 0;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Highlighted Words */
.about-text span {
  color: #ff6600;
  font-weight: 700;
}

/* Hover Effects */
.about-text:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .about-container {
    padding: 15px;
    margin: 15px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.mattress-info {
  max-width: 900px;
  margin: 20px auto;
  padding: 15px 20px;
  background-color: #f9f9ff;
  border-left: 6px solid #1f3c88;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.mattress-info p {
  font-size: 18px;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.mattress-info p span {
  color: #ff6600;
  font-weight: 700;
}

/* Hover Effect */
.mattress-info:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .mattress-info {
    padding: 12px;
  }

  .mattress-info p {
    font-size: 16px;
    line-height: 1.6;
  }
}

.pillow-info {
  max-width: 900px;
  margin: 20px auto;
  padding: 15px 20px;
  background-color: #fef9f3;
  border-left: 6px solid #ff6600;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.pillow-info p {
  font-size: 18px;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.pillow-info p span {
  color: #1f3c88;
  font-weight: 700;
}

/* Hover Effect */
.pillow-info:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .pillow-info {
    padding: 12px;
  }

  .pillow-info p {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* Desktop Navbar */
.navbar {
  background-color: #007BFF;
  /* blue line */
  padding: 15px 50px;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* Mobile Responsive Navbar */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
    /* reduce padding for small screens */
  }

  .nav-links {
    flex-direction: column;
    /* stack links vertically */
    align-items: center;
    gap: 10px;
  }

  .nav-links li a {
    font-size: 16px;
  }
}
/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007BFF;
  /* Blue line */
  padding: 15px 50px;
  position: relative;
  z-index: 999;
}

.navbar .logo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  display: block;
  transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #0056b3;
  border-radius: 5px;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #007BFF;
  min-width: 150px;
  top: 100%;
  left: 0;
  z-index: 999;
  flex-direction: column;
  border-radius: 0 0 5px 5px;
}

.dropdown-content li a {
  padding: 10px 15px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    /* hide initially */
    background-color: #007BFF;
    position: absolute;
    top: 60px;
    left: 0;
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    background-color: #0056b3;
    border-radius: 0;
  }

  .menu-toggle {
    display: flex;
  }
}
/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007BFF;
  padding: 15px 50px;
  position: sticky;
  /* navbar stays on top */
  top: 0;
  z-index: 9999;
}

.navbar .logo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  display: block;
  transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #0056b3;
  border-radius: 5px;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #007BFF;
  min-width: 150px;
  top: 100%;
  left: 0;
  z-index: 999;
  flex-direction: column;
  border-radius: 0 0 5px 5px;
}

.dropdown-content li a {
  padding: 10px 15px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    /* hide initially */
    background-color: #007BFF;
    position: relative;
    /* relative instead of absolute to avoid overlap */
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    background-color: #0056b3;
    border-radius: 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* Add spacing for top content so navbar doesn't cover hero/video */
  body {
    padding-top: 70px;
    /* adjust according to navbar height */
  }
}

/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007BFF;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  display: block;
  transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #0056b3;
  border-radius: 5px;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #007BFF;
  min-width: 150px;
  top: 100%;
  left: 0;
  flex-direction: column;
  border-radius: 0 0 5px 5px;
  z-index: 1001;
}

.dropdown-content li a {
  padding: 10px 15px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #007BFF;
    position: relative;
    /* remove absolute to avoid overlap */
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    background-color: #0056b3;
    border-radius: 0;
  }

  .menu-toggle {
    display: flex;
  }
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007BFF;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  display: block;
  transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #0056b3;
  border-radius: 5px;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #007BFF;
  min-width: 150px;
  top: 100%;
  left: 0;
  flex-direction: column;
  border-radius: 0 0 5px 5px;
  z-index: 1001;
}

.dropdown-content li a {
  padding: 10px 15px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Header Icons */
.header-icons a {
  color: #fff;
  font-size: 18px;
  margin-left: 15px;
}

/* Hero Video */
.hero {
  position: relative;
  width: 100%;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: #007BFF;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-links.show {
    max-height: 500px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    background-color: #0056b3;
    border-radius: 0;
  }

  .menu-toggle {
    display: flex;
  }
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007BFF;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo h2 {
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  display: block;
}

.nav-links li a.active,
.nav-links li a:hover {
  background-color: #0056b3;
  border-radius: 5px;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: #007BFF;
  min-width: 150px;
  border-radius: 0 0 5px 5px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Header Icons */
.header-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
}

/* Hero Video */
.hero {
  position: relative;
  width: 100%;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

/* Mobile */
@media screen and (max-width:768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #007BFF;
  }

  .nav-links.show {
    max-height: 500px;
  }

  .nav-links li {
    text-align: center;
    margin: 5px 0;
  }

  .dropdown-content {
    position: relative;
    background: #0056b3;
    border-radius: 0;
    top: 0;
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    margin-top: 60px;
  }

  /* offset for sticky navbar */
}
/* Remove extra static spacing – hero section will naturally start below navbar */
/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  /* spacing between icons */
  margin-left: auto;
  /* push icons to right in flex container */
}

.header-icons a {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Adjustment */
@media screen and (max-width:768px) {
  .header-icons {
    margin-left: 0;
    /* center below hamburger if needed */
    justify-content: center;
    margin-top: 10px;
  }
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  /* push right on desktop */
}

.header-icons a {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .header-icons {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

/* Floating Buttons */
.floating-buttons {
  position: static;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn {
  background-color: #007BFF;
}

/* Mobile Responsive Navbar */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    /* hide by default on mobile */
    flex-direction: column;
    width: 100%;
    position: static;
    top: 60px;
    /* header height adjust karein */
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9;
  }

  .nav-links.active {
    display: flex;
    /* show when hamburger clicked */
  }

  .nav-links li {
    width: 100%;
  }

  .dropdown-content {
    position: relative;
    /* mobile me relative */
    top: 0;
    left: 0;
    box-shadow: none;
    display: none;
    /* hidden by default */
  }

  .dropdown-content.active {
    display: flex;
    /* show when dropdown clicked */
    flex-direction: column;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
  }

  /* Disable hover for mobile dropdown */
  .dropdown:hover .dropdown-content {
    display: none;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  /* nav/menu ke upar */
}

.floating-buttons a img {
  width: 50px;
  /* adjust size */
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.floating-buttons a img:hover {
  transform: scale(1.1);
}