* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', 'Segoe UI', sans-serif;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     color: #1a202c;
     line-height: 1.6;
 }

 .get-started-container {
    display: flex;
    justify-content: center;
    margin-top: 55px;
 }

.get-started-btn {        
    background: linear-gradient(135deg, #f97316, #ea580c); /* vibrant orange gradient */
    color: white;
    padding: 16px 36px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}


.get-started-btn:hover {
    background: linear-gradient(135deg, #fb923c, #f97316);
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.5);
    transform: translateY(-3px);
}

 .desktop-only {
     display: grid !important;
 }

 .mobile-only {
     display: none !important;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }


 
 /* Header Section */
 .header-landing {
     background: linear-gradient(135deg, #2f5f5f 0%, #1a3a3a 100%);
     color: white;
     padding: 100px 0;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .header-landing::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
 }

 .header-landing-content {
     position: relative;
     z-index: 1;
 }

 .header-landing h1 {
     font-size: 3.5em;
     font-weight: 700;
     margin-bottom: 20px;
     text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
 }

 .header-landing p {
     font-size: 1.3em;
     opacity: 0.9;
     max-width: 600px;
     margin: 0 auto;
 }

/* Enhanced Hero Section */
.hero {
  position: relative;
  background: white;
  padding: 100px 20px 60px 20px;
  color: #1f5b66;
  display: flex;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  /* background: linear-gradient(90deg, #1f5b66, #4a90a4, #1f5b66); */
}

.hero-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 0px;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
  z-index: 2;
}

.hero-logo {
  position: relative;  
}


.hero-logo img {
  max-width: 680px;
  height: auto;
  position: relative;
  z-index: 1;  
  
}



.hero-text {
  max-width: 600px;
  position: relative;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.highlight {  
  color: #1e1e1e;  
  border-radius: 6px;
  font-weight: 700;  
}

.subtext {
  font-size: 2.6rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #1e5b67;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-list {
  list-style: none;
  padding: 0;
  font-size: 2rem;
  font-weight: 500;
}

.hero-list li {
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;  
}

.hero-list li:nth-child(1) { --i: 1; }
.hero-list li:nth-child(2) { --i: 2; }
.hero-list li:nth-child(3) { --i: 3; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-list li::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  /* animation: sparkle 2s ease-in-out infinite; */
  /* animation-delay: calc(var(--i) * 0.3s); */
}



.hero-list li em {
  background: #1e5b67;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 600;
  font-size: 1.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



/* Floating particles effect */
.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
              radial-gradient(2px 2px at 40% 70%, rgba(59, 130, 246, 0.3), transparent),
              radial-gradient(1px 1px at 90% 40%, rgba(16, 185, 129, 0.3), transparent),
              radial-gradient(1px 1px at 60% 10%, rgba(139, 92, 246, 0.3), transparent);
  /* animation: particles 15s linear infinite; */
}



/* Responsive adjustments for hero section */
@media (max-width: 1025px) {
  .hero {
    padding: 100px 20px 50px  20px
  }
  
  .hero-content {
    gap: 60px;
  }
  
  .hero-logo img {
    max-width: 240px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .subtext {
    font-size: 1.9rem;
    font-weight: bold;
  }
  
  .hero-list {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;    
  }
  
  
  .hero-logo img {
    max-width: 200px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .subtext {
    font-size: 1.2rem;
  }
  
  .hero-list {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  /* 1) Make hero a continuation of the teal header */
  .hero {
    /* background: linear-gradient(135deg, #2f5f5f 0%, #1a3a3a 100%); */
    margin: 0;                /* remove any offsets */
    padding: 50px 15px;       /* tighter vertical padding */
    color: #ffffff;           /* white text */
    display: flex;
    justify-content: center;    
  }

  .hero-logo{
    top:20px;
  }

  /* 2) Stack content in a single column */
  .hero-content {    
    align-items: center;
    gap: 12px;
  }

  /* 3) Logo in white silhouette (invert if needed) */
  .hero-logo img {
    max-width: 400px !important;        
    height: 240px;   
    width: 100%;; 
  }

  /* 4) Sub‑headline in brand‑orange */
  .subtext {
    font-size: 2.5rem;    
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
    line-height: 3.5rem;
  }

  /* 5) Bullets: white text, orange icon */
  .hero-list {
    list-style: none;
    padding: 0 20px 0px 20px;    
    width: 100%;
    max-width: 240px; /* keeps it from stretching too wide */
    margin: auto;
  }
  .hero-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 8px;
    font-size:2rem;
    color: #ffffff;    
    font-weight: bold;
  }
  .hero-list li::before {
    content: '✨';   
    color: #fbbf24;
    font-size: 1em;
  }

  /* 6) “Get Started” button — full‑width but padded */
  .get-started-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .get-started-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.8rem;
    border-radius: 28px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    width: auto;
  }
}


 /* Section Styling */
 .section {
     padding: 80px 0;
     background: white;
     margin-bottom: 2px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
 }

 .section:nth-child(odd) {
     background: #f8fafc;
 }

 .section h2 {
     color: #2f5f5f;
     font-size: 2.5em;
     margin-bottom: 30px;
     /* text-align: center; */
     font-weight: 700;
 }

 .section p {
     font-size: 1.5em;
     /* text-align: center; */
     max-width: 800px;
     margin: 0 0 40px;
     color: #4a5568;
 }

 .section .text-center {
     font-size: 1.5em;
     /* text-align: center; */
     max-width: 800px;
     margin: 0 auto 40px;
     color: #4a5568;
 }

 /* Problem Section Icons */
 .problem-icons {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin: 60px 0;
 }

 .icon-block {
     text-align: center;
     padding: 20px;
     background: white;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .icon-block:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
 }

 .icon-block img {
     width: 110px;
     height: 110px;
     margin-bottom: 20px;
     filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
 }

 .icon-block div {
     font-size: 1.1em;
     font-weight: 600;
     color: #2f5f5f;
 }

 /* Solution Section */
 .solution-image {
     max-width: 724px;
     height: auto;
     display: block;
     margin: 50px auto;
     border-radius: 15px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .bullet-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 50px;
     margin-top: 60px;
 }

 .bullet-column {
     background: white;
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
 }

 .bullet-column ul {
     list-style: none;
     padding: 0;
 }

 .bullet-column li {
     font-size: 1.5em;
     margin-bottom: 25px;
     padding-left: 30px;
     position: relative;
     color: #4a5568;
 }

 .bullet-column li::before {
     content: '✓';
     position: absolute;
     left: -7px;
     color: #2f5f5f;
     font-weight: bold;
     font-size: 1.5em;
 }

 /* Numbers Section */
 .cards-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     margin: 60px 0;
 }

 .card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
 }

 .card img {
     width: 100%;
     /* height: 200px; */
     object-fit: cover;
     display: block;     
 }

 /* CTA Section */
 .cta {
     background: #ffffff;
     /* color: white; */
     padding: 80px 0;
     text-align: center;
     /* margin-top: 80px; */
 }

 .cta-content {
     font-size: 1.4em;
     max-width: 700px;
     margin: 10px auto 40px  auto;
 }

 .cta strong {
     color: #2f5f5f;
     font-weight: 700;
 }

 .cta-button {
     display: inline-block;
     background: #ffd700;
     color: #2f5f5f;
     padding: 18px 40px;
     margin-top: 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1em;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
 }

 .cta-button:hover {
     background: #ffed4a;
     transform: translateY(-2px);
     box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
 }

 /* Highlight Text */
 .highlight {
     color: #2f5f5f;
     font-weight: 700;
 }

 .bold-highlight {
     color: #e36414;
     font-weight: 700;
 }

 /* Responsive Design */

 /* Large tablets and small desktops */
 @media (max-width: 1025px) {

    .hero-logo img {
        max-width: 480px;
    }
     .container {
         padding: 0 30px;
     }

     .header-landing {
         padding: 60px 0;
     }

     .header-landing h1 {
         font-size: 3em;
     }

     .section {
         padding: 60px 0;
     }

     .section h2 {
         font-size: 2.2em;
     }

     .problem-icons {
         grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
         gap: 30px;
     }

     .bullet-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .cards-container {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 30px;
     }
 }

 /* Tablets */
 @media (max-width: 928px) {

    .hero-logo img {
         max-width: 400px;
     }

     .hero-content{
        gap:0px;
     }

     .container {
         padding: 0 20px;
     }

     .header-landing {
         padding: 120px 0 !important;
     }

     .header-landing h1 {
         font-size: 2.5em;
         margin-bottom: 15px;
     }

     .header-landing p {
         font-size: 1.1em;
     }

     .section {
         padding: 50px 0;
     }

     .section h2 {
         font-size: 2em;
         margin-bottom: 25px;
     }

     .section p {
         font-size: 1.1em;
         margin-bottom: 35px;
     }

     .problem-icons {
         grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
         gap: 25px;
         margin: 40px 0;
     }

     .icon-block {
         padding: 25px 15px;
     }

     .icon-block img {
         width: 60px;
         height: 60px;
     }

     .icon-block div {
         font-size: 1em;
     }

     .solution-image {
         max-width: 90%;
         margin: 40px auto;
     }

     .bullet-container {
         grid-template-columns: 1fr;
         gap: 30px;
         margin-top: 40px;
     }

     .bullet-column {
         padding: 30px 25px;
     }

     .bullet-column li {
         font-size: 1.1em;
         margin-bottom: 15px;
     }

     .cards-container {
         grid-template-columns: 1fr;
         gap: 25px;
         margin: 40px 0;
     }

     .card img {
         height: auto;
     }

     .cta {
         padding: 60px 0;
         margin-top: 50px;
     }

     .cta-content {
         font-size: 1.2em;
     }

     .cta-button {
         padding: 15px 35px;
         font-size: 1em;
     }
 }

 /* Mobile phones */
 @media (max-width: 480px) {

    .desktop-only {
         display: none !important;
     }

     .mobile-only {
         display: grid !important;
     }

     .container {
         padding: 0 15px;
     }

     .header-landing {
         padding: 110px 0 70px 0 !important;
     }

     .header-landing h1 {
         font-size: 2em;
         margin-bottom: 10px;
     }

     .header-landing p {
         font-size: 1em;
     }

     .section {
         padding: 40px 0;
     }

     .section h2 {
         font-size: 1.8em;
         margin-bottom: 20px;
     }

     .section p {
         font-size: 1.5em;
         margin-bottom: 30px;
     }

     .problem-icons {
         grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
         gap: 20px;
         margin: 30px 0;
     }

     .icon-block {
         padding: 20px 10px;
     }

     .icon-block img {
         width: 90px;
         height: 90px;
         margin-bottom: 15px;
     }

     .icon-block div {
         font-size: 0.9em;
     }

     .solution-image {
         max-width: 100%;
         margin: 30px auto;
     }

     .bullet-container {
         gap: 20px;
         margin-top: 30px;
     }

    .bullet-column {
        padding: 40px 25px;
    }       

     .bullet-column li {
         font-size: 1.5em;
         margin-bottom: 12px;
         padding-left: 25px;
     }

     .bullet-column li::before {
         font-size: 1.1em;
     }

     .cards-container {
         gap: 20px;
         margin: 30px 0;
     }

     .card img {
         height: auto;
     }

     .cta {
         padding: 50px 0;
         margin-top: 0px;
     }

     .cta-content {
         font-size: 1.3em;
     }

     .cta-button {
         padding: 14px 30px;
         font-size: 0.95em;
         margin-top: 25px;
     }

     h3 {
         font-size: 1.4em !important;
         margin-bottom: 20px !important;
     }
 }

 /* Very small screens */
 @media (max-width: 320px) {
     .header-landing h1 {
         font-size: 1.8em;
     }

     .section h2 {
         font-size: 1.6em;
     }

     .problem-icons {
         grid-template-columns: 1fr 1fr;
         gap: 15px;
     }

     .icon-block {
         padding: 15px 8px;
     }

     .icon-block img {
         width: 40px;
         height: 40px;
     }

     .icon-block div {
         font-size: 0.8em;
     }

     .bullet-column {
         padding: 20px 15px;
     }

     .bullet-column li {
         font-size: 0.9em;
         padding-left: 20px;
     }

     .cta-content {
         font-size: 1em;
     }

     .cta-button {
         padding: 12px 25px;
         font-size: 0.9em;
     }
 }