<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    margin: 0; 
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #87CEFA, #ffffff); /* Light sky blue to white */
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
}

.bebas-text {
    font-family: 'Bebas Neue', sans-serif;
}

.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Compact Typography */
.hero-text-luxury-heading {
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 0.95;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 20px;
}

.gold-accent {
    background: linear-gradient(135deg, #464646 0%, #484848 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Compact Header */
header {
    background: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    background-color: #2a2a2a;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    width: 100%;
}


.logo img {
  width: 260px;
  height: 50px;
  padding-top: 10px;
  padding-left: clamp(10px, 4vw, 75px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 25px ;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.2px;
    margin-top: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #09d034 0%, #08df04 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 80%;
}
 /* Compact Hero with Product Image */
 .hero {
 
  background-image: url('images/bg.jpg'); /* or use full URL */
  padding-top: 20px; /* Add this */
  position: relative;
  overflow: hidden;
  padding-left: clamp(6px, 2vw, 50px);
}


.hero-content {
  padding: 10px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  
}

.hero-text h1 {
  padding-left: 20px;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .subtitle {
  padding-left: 20px;
  font-size: 30px;
  background: linear-gradient(135deg, #09d034 0%, #08df04 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.hero .description {
  padding-left: 20px;
  font-size: 18px;
  color: #2a2a2a;
  line-height: 1.5;
}

/* Swiss Air Promise - Larger */


.swiss-air-box {
    background-image: url('images/low-angle-woman-nature.jpg'); /* Use a relative path inside your project */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    padding: 20px 20px;
    color: white;
    text-align: center;
    border-radius: 16px;
    position: relative;
}
.swiss-air-box h3 {
  font-size: 25px;
  color: #3f3f3f;
  text-align: left;
  font-weight: 800;
}

.swiss-air-box p {
  font-size: 16px;
  color: #000000;
  text-align: left;
  font-weight: 300;
}



/* Product Image in Hero - Larger */
.hero-image {
  text-align: center;
  padding: 40px 0;
  padding-left: 30px;
}

.purifier-image {
  width: 60%;
  margin-top: 30px;
  height: auto;
  border-radius: 12px; /* optional for rounded edges */
}

.purifier-image:hover {
  transform: translateY(-8px) scale(1.02);
  
}

.cta-button1 {
  display: inline-block;
  background: #09d034;
  color: #fdfcf9;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-button1:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: transparent;
  color: #fdfcf9;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid #19e646
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Sections with better spacing */
.section {
  padding: 30px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Problem Section - Compact */
.problem-section {
  
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 0px;
  margin-bottom: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.95) 0%, rgba(248, 246, 242, 0.9) 100%);
  padding: 35px 25px 25px; /* Reduced top padding to leave space for the bar */
  border-radius: 15px 15px 15px 15px; /* No top radius if you want a flat top */
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 15px 15px 0 0;
  background-color: #09d034;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  line-height: 1.1;
}

.stat-description {
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.stat-source {
  font-size: 12px;
  color: #4a4a4a;
  font-style: italic;
  line-height: 1.2;
}

.family-impact {
  
  background: linear-gradient(135deg, #3f3f3f 0%, #1a1a1a 100%);  
  position: relative;
  padding: 25px 20px;
  text-align: center;
  color: #ffffff;
}


.family-impact h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

.sub1 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
}

.family-impact p {
  font-size: 20px;
  font-weight: 300;
}
.cocktail-section {
  
  padding: 20px;
}

/* Larger Grids */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.luxury-heading1 {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  font-size: 32px;
  font-weight: bold;
}

.luxury-heading-scroll-animate {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.5rem;
  text-align: center;
  z-index: 1;

  /* Center the element horizontally */
  left: 50%;
  transform: translateX(-50%);
  position: relative; /* already present */
}
  
.luxury-heading-scroll-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #09d034;
  border-radius: 15px;
  z-index: -1;
  pointer-events: none;
}

.pollutant-card {
  background: linear-gradient(135deg, rgba(240, 237, 234, 0.6) 0%, rgba(245, 243, 238, 0.4) 100%);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #000000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #8fd0e4;
  margin-left: 20px;
  margin-right: 20px;

}

.pollutant-card:hover {
  transform: translateX(10px);
  border-color:  #8fd0e4;
}

.pollutant-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.pollutant-card p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.4;
}

.pollutant-icon {
  font-size: 48px; /* increase size */
  color: #9ce48f; /* brighter green color */
  margin-bottom: 15px;
  display: block;
}

/* Solution Section - Compact */
.solution-section {
 
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 10px;
}

.solution-card {
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.95) 0%, rgba(248, 246, 242, 0.9) 100%);
  padding: 25px;
  border-radius: 15px 15px 15px 15px; /* No top radius if you want a flat top */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  margin-left: 20px;
  margin-right: 20px;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(135deg, #09d034 0%, #08df04 100%);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.solution-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.solution-card p {
  color: #2a2a2a;
  font-size: 12px;
  margin-bottom: 15px;
  font-weight: 500;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  color: #2a2a2a;
  font-size: 11px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 12px;
}

/* Tech Table - Compact */
.tech-section {
  margin-left: 20px;
  margin-right: 20px;
}
.tech-table {
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.95) 0%, rgba(248, 246, 242, 0.9) 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;

  /* Make table scrollable on smaller screens */
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

.tech-table table {
  width: 100%;
  min-width: 700px; /* ensures table doesn’t cram columns too tightly */
  border-collapse: collapse;
}

.tech-table th,
.tech-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tech-table th {
  background: #4d4d4d;
  color: #fdfcf9;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-table td {
  font-size: 15px;
  color: #08df04;
  font-weight: 200;
}


/* Validation Section - Compact */
.validation-section {
   margin-left: 20px;
  margin-right: 20px;
  
}


.validation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.validation-card {
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.95) 0%, rgba(248, 246, 242, 0.9) 100%);
  padding: 25px;
  border-radius: 15px 15px 15px 15px; /* No top radius if you want a flat top */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  margin-left: 20px;
  margin-right: 20px;
}

.validation-card::before {
   content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(135deg, #09d034 0%, #08df04 100%);
 
}

.validation-card:hover {
 
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.validation-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.validation-card p {
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.5;
}

/* Final CTA - Compact */
.final-cta {
  background: linear-gradient(135deg, #3f3f3f 0%, #1a1a1a 100%);
  color: #fdfcf9;
  padding: 30px 0;
  max-width: 100%;
  text-align: center;
  
}

.final-cta h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.final-cta .container {
  max-width: 100%;
  padding: 0;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #19e646;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: all 0.3s ease;
  box-sizing: border-box;
  height: auto;
}

.cta-secondary:hover {
  transform: translateY(-3px);
  background-color: #19e646;
  
}

/* Footer - Compact */
footer {
  margin-left: 20px;
  margin-right: 20px;
  padding: 40px 0 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #2a2a2a;
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #4a4a4a;
  font-size: 12px;
}

/* Responsive Design - Better sizes */
@media (max-width: 768px) {
  .container {
      padding: 0 20px;
  }

  .hero-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .hero-text h1 {
      font-size: 36px;
  }

  .hero .subtitle {
      font-size: 20px;
  }

  .hero .description {
      font-size: 16px;
  }

  .section-title {
      font-size: 28px;
  }

  .nav-links {
      display: none;
  }

  .solution-grid,
  .cocktail-grid,
  .validation-cards {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .stat-card {
      padding: 25px 20px;
      min-height: 160px;
  }

  .stat-number {
      font-size: 28px;
  }

  .stat-description {
      font-size: 14px;
  }

  .family-impact {
      padding: 35px 25px;
  }

  .family-impact h2 {
      font-size: 24px;
  }

  .family-impact p {
      font-size: 18px;
  }

  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  .cta-secondary{

      flex-direction: column;
      align-items: center;
  }
  

  .swiss-air-box h3 {
      font-size: 20px;
  }

  .swiss-air-box p {
      font-size: 14px;
  }
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}
</style>
