/* WHY CHOOSE US SECTION */
#why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

#why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

#why-choose-us .feature-card {
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #why-choose-us .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 1rem;
    }
    
    #why-choose-us .feature-card {
        max-width: 100%;
    }
}

#why-choose-us .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: inline-block;
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50px;
}

.section-header h2 {
    color: #155f2c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header h2 i {
    color: #2ecc71;
}

.section-intro {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    font-size: 1.75rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.feature-card h3 {
    color: #155f2c;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 3px;
    opacity: 0.7;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.feature-card strong {
    color: #2c5282;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* NAVIGATION */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.logo-img {
  height: 3.2rem; /* Slightly larger than the nav container to account for padding */
  width: auto;
  display: block;
  object-fit: contain;
  margin: -0.5rem 0; /* Compensate for nav padding */
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #155f2c;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #155f2c;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  transition: all 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  color: white;
}

.btn-nav::after {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #155f2c;
}

/* Responsive Navigation */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 80px;
    gap: 0;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .btn-nav {
    margin-top: 1rem;
  }
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 85px;
}

/* Adjust hero section for fixed header */
.hero {
  margin-top: -85px;
  padding-top: 85px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 520px;
}

.cta .section-subtitle {
    display: inline-block;
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50px;
}

.cta h2 {
    color: #155f2c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta .btn.primary {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    margin: 0;
}

.cta .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-content i {
    font-size: 1.5rem;
}

.btn-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.btn-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 3.5rem;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.action-link:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #155f2c;
}

.action-link i:first-child {
    color: #2ecc71;
    font-size: 1.25rem;
    min-width: 24px;
}

.action-link i:last-child {
    margin-left: auto;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.action-link:hover i:last-child {
    color: #2ecc71;
    transform: translateX(3px);
}

.action-link div {
    flex: 1;
}

.action-link span {
    display: block;
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.action-link small {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    font-weight: 400;
}

.cta-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1500px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.cta-image:hover {
    transform: perspective(1500px) rotateY(0);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* CTA Section Layout */
.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hide mobile video by default on desktop */
.mobile-video {
    display: none;
}

/* Desktop video container */
.cta-video.desktop-only {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cta-video.desktop-only video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile view for CTA section */
@media (max-width: 992px) {
    .cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Show mobile video on mobile */
    .mobile-video {
        display: block !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 1.5rem auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        order: 2;
    }
    
    /* Hide desktop video on mobile */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-video video {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Ensure the heading is right before the video */
    .cta-content h2 {
        order: 1;
        margin-bottom: 1.5rem;
        margin-top: 0; /* Remove any top margin */
    }
    
    /* Move the subtitle above the heading */
    .section-subtitle {
        order: 0;
        margin-bottom: 0.5rem;
    }
    
    /* Move the description and buttons below the video */
    .cta-description {
        order: 3;
        margin-top: 0;
    }
    
    .cta-buttons {
        order: 4;
    }
    
    /* Style the cta content - mobile specific */
    .cta-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Reset cta-content for desktop */
    @media (min-width: 993px) {
        .cta-content {
            display: block;
            padding-right: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .cta-buttons {
            margin-top: 2rem;
        }
        
        .cta-wrapper {
            align-items: stretch;
            min-height: 500px; /* Adjust this value as needed */
        }
        
        .cta-video.desktop-only {
            display: block;
        }
    }
    
    /* Add some space between the video and description */
    .cta-description {
        margin-top: 1.5rem;
    }
    
    /* Ensure the cta-buttons have proper spacing */
    .cta-buttons {
        margin-top: 2rem;
    }
}

/* Desktop view for CTA section */
@media (min-width: 993px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* CTA Video Styles - Desktop */
.cta-video.desktop-only {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-video.desktop-only video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Hide mobile video on desktop */
@media (min-width: 993px) {
    .mobile-video {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

.cta-video:hover {
    transform: scale(1.03);
}

/* Mobile View */
.mobile-only {
    display: none;
    margin: 2rem 0;
}

/* Desktop View */
.desktop-only {
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mobile-only {
        display: block;
        margin: 2rem 0;
    }
    
    .desktop-only {
        display: none;
    }
    
    .cta-video {
        min-height: 300px;
        order: 2;
    }
    
    .cta-content {
        order: 1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.cta-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        align-items: center;
    }
    
    .secondary-actions {
        padding-left: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    
    .cta-wrapper {
        padding: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .action-link {
        padding: 0.75rem 1rem;
    }
    
    .btn-content {
        justify-content: center;
        text-align: center;
    }
    
    .secondary-actions {
        width: 100%;
    }
}

/* Font & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
}

/* Utility classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}
.center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin: 0.4rem;
}
.btn.primary {
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
}
.btn.outline {
  background: transparent;
  border: 2px solid #1e7e34;
  color: #1e7e34;
}
.btn.outline:hover {
  background: #1e7e34;
  color: #fff;
}

/* Hero */
.hero {
  color: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 30, 10, 0.9) 0%, rgba(0, 66, 30, 0.9) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
  color: #fff;
}

.hero .brand {
  color: #6bffb0;
  display: block;
  font-size: 4rem;
  margin: 0.5rem 0;
  text-shadow: 0 0 15px rgba(81, 255, 214, 0.5);
  position: relative;
  display: inline-block;
}

.hero .brand::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: #6bffb0;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.hero-text {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.tagline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0 3rem;
  text-align: center;
}

.highlight {
  font-size: 1.8rem;
  font-weight: 500;
  color: #e0f7fa;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.highlight-main {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.25; /* Increased line height */
  color: #fff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin: 1rem 0 1.5rem;
  padding: 0.5rem 1.5rem 0.75rem; /* Added top and bottom padding */
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: visible;
  transform: translateZ(0); /* Force hardware acceleration */
  -webkit-font-smoothing: antialiased; /* Improve text rendering */
  -moz-osx-font-smoothing: grayscale;
}

.highlight-sub {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  padding: 0 2rem;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #6bffb0;
  color: #6bffb0;
}

.btn.secondary:hover {
  background: rgba(81, 255, 214, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  /* Section header icon positioning for mobile */
  .section h2,
  .section-header h2 {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .section h2 i.fa-solid,
  .section-header h2 i.fa-solid {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    display: block;
  }
  
  .hero-text {
    padding: 0 1rem;
  }
  
  .highlight {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
  }
  
  .highlight-main {
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 0 0.25rem !important;
    margin: 0 -0.25rem;
    word-break: normal;
    white-space: normal;
    display: block;
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  
  .highlight-sub {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 0.5rem !important;
    max-width: 100%;
    margin: 1rem 0 0;
  }
  
  .tagline {
    margin: 1.5rem 0 2.5rem;
  }
  
  .cta-group {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.hero .btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.hero .btn:hover::after {
  width: 100%;
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .brand {
    font-size: 3rem;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
  }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section h2 i {
  margin-right: 1rem;
  color: #2ecc71;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 3px;
}

/* WHO WE ARE SECTION */
#who-we-are .text .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
}

#who-we-are {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  display: inline-block;
  color: #27ae60;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #155f2c;
  margin: 0.5rem 0 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-intro {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.about-text .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.highlight-text {
  color: #2b6cb0;
  font-weight: 700;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-card {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.highlight-icon {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.highlight-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2d3748;
  margin: 0;
  font-weight: 500;
}

.highlight-accent {
  color: #2b6cb0;
  font-weight: 700;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.expertise-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expertise-item i {
  font-size: 1.8rem;
  color: #2ecc71;
  margin-bottom: 1rem;
}

.expertise-item h4 {
  font-size: 1.1rem;
  color: #2d3748;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.expertise-item p {
  font-size: 0.95rem;
  color: #718096;
  margin: 0;
  line-height: 1.6;
}

.cta-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-box p {
  font-size: 1.1rem;
  color: #2d3748;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  z-index: 2;
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .experience-badge {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 90%;
  }
}

@media (max-width: 768px) {
  #who-we-are {
    padding: 4rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-intro {
    font-size: 1.1rem;
  }
  
  .about-text .lead {
    font-size: 1.05rem;
  }
  
  .highlight-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .highlight-icon {
    margin-bottom: 1rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 2rem auto 0;
    width: 100%;
    max-width: 100%;
  }
}

/* WHY CHOOSE US SECTION */
#why-choose-us {
  padding: 6rem 0;
  font-size: 2rem;
}

.about-content {
  position: relative;
}

.about-content .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.highlight-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
  border: 1px solid rgba(46, 204, 113, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #2ecc71, #27ae60);
}

.highlight-quote {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #155f2c;
  font-weight: 600;
  margin: 0;
  position: relative;
  padding-left: 2rem;
  font-style: normal;
}

.highlight-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 4rem;
  color: #2ecc71;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.highlight-accent {
  color: #2ecc71;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(46, 204, 113, 0.3);
  z-index: -1;
  border-radius: 3px;
}

#who-we-are .image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 500px;
}

#who-we-are .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

#who-we-are .image:hover img {
  transform: scale(1.05);
}

#who-we-are strong {
  color: #2D3748;
  font-weight: 600;
  position: relative;
}

.highlight-text {
  color: #2ecc71;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(46, 204, 113, 0.3);
  z-index: -1;
  border-radius: 3px;
}

/* Decorative Elements */
#who-we-are::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  #who-we-are .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  #who-we-are .text {
    padding-right: 0;
  }
  
  #who-we-are .image {
    min-height: 400px;
  }
}

/* WHY CHOOSE US SECTION */
#why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

#why-choose-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

#why-choose-us .container {
    position: relative;
    z-index: 1;
}

#why-choose-us .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

#why-choose-us .section-subtitle {
    display: inline-block;
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50px;
}

#why-choose-us h2 {
    color: #155f2c;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#why-choose-us h2 i {
    color: #2ecc71;
}

#why-choose-us .section-intro {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    width: 6px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.feature-card h3 {
  color: #155f2c;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  border-radius: 3px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.feature-card:hover h3::after {
  width: 60px;
  opacity: 1;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2ecc71;
    border-radius: 2px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    #why-choose-us {
        padding: 4rem 0;
    }
    
    #why-choose-us h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Who We Help Section */

/* HOW WE HELP SECTION */
#how-we-help {
  background: linear-gradient(135deg, #f9fbfe 0%, #ecf5ff 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

#how-we-help .container {
  position: relative;
  z-index: 2;
}

#how-we-help h2 {
  color: #1e293b;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

#how-we-help h2 i {
  color: #2ecc71;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.card:hover::before {
  opacity: 1;
}

#how-we-help .card i {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #ffffff;
  font-size: 1.75rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover i {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.card h3 {
  color: #155f2c;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  border-radius: 3px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.card:hover h3::after {
  width: 60px;
  opacity: 1;
}

.card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #how-we-help h2 {
    font-size: 2rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
#who-we-help {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

#who-we-help .container {
    position: relative;
    z-index: 1;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0 3rem;
}

/* Call to Action Card */
.cta-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin: 4rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    max-width: 1000px;
    width: 90%;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
}

.cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover .cta-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.4);
}

.cta-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h3 {
    color: #155f2c;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.cta-content p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    max-width: 700px;
}

.cta-content .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
    
    .cta-icon {
        margin-bottom: 1.5rem;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.help-item:hover::before {
    opacity: 1;
}

.help-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.help-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.help-item:hover::before {
    opacity: 1;
}

.help-item h3 {
    color: #155f2c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.help-item h3 i {
    color: #2ecc71;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-item li {
    color: #4a5568;
    margin-bottom: 1rem;
    padding-left: 0;
    position: relative;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.help-item li::before {
    content: '✓';
    color: #2ecc71;
    font-weight: bold;
    font-size: 0.9rem;
    background: rgba(46, 204, 113, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.help-item strong {
    color: #2c5282;
    font-weight: 600;
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    white-space: nowrap;
    position: relative;
    top: 0;
}

.help-item li {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.consult-text {
    display: inline-block;
    width: 100%;
}

.consult-number {
    display: inline;
    color: #2c5282;
    font-weight: 700;
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 2px;
    white-space: nowrap;
}

.case-types li {
  color: #64748b;
  font-size: 0.95em;
  padding-left: 1.5rem;
  position: relative;
}

.case-types li::before {
  content: '•';
  color: #27ae60;
  position: absolute;
  left: 0;
}

.note {
  text-align: center;
  font-size: 1.1rem;
  color: #475569;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #27ae60;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.help-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.help-item:nth-child(1) { animation-delay: 0.1s; }
.help-item:nth-child(2) { animation-delay: 0.2s; }
.help-item:nth-child(3) { animation-delay: 0.3s; }

/* Animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#who-we-are .text {
  animation: fadeInLeft 0.8s ease-out;
}

#who-we-are .image {
  animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 1rem 0;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.checklist li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  color: #2ecc71;
}
.case-types li:before {
  content: '\2022';
  font-family: initial;
  color: #1e7e34;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-6px);
}
.card i {
  font-size: 2.2rem;
  color: #1e7e34;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.mission .container {
    position: relative;
    z-index: 1;
}

.mission-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-header .section-subtitle {
    display: inline-block;
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50px;
}

.mission h2 {
    color: #155f2c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mission h2 i {
    color: #2ecc71;
}

.mission-intro {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.mission-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.mission-card.primary {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.mission-card.primary h3,
.mission-card.primary p {
    color: white;
}

.mission-card.primary .mission-card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  border-radius: 20px;
  color: white;
  font-size: 1.75rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.25);
}

.mission-card-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.mission-card:hover .mission-card-icon {
    transform: scale(1.1);
}

.mission-card h3 {
    color: #155f2c;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.mission-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2ecc71;
    border-radius: 2px;
}

.mission-card.primary h3::after {
    background: white;
}

.mission-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 1rem 0 0;
    font-size: 1.05rem;
}

.mission-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #155f2c;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-header {
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-card:nth-child(1) { animation-delay: 0.2s; }
.mission-card:nth-child(2) { animation-delay: 0.4s; }
.mission-card:nth-child(3) { animation-delay: 0.6s; }

.mission-stats {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.mission-stats .count-animate {
    display: inline-block;
    transform: scale(0.85);
    opacity: 0.4;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-stats .count-animate[data-animated="true"] {
    transform: scale(1);
    opacity: 1;
}

.count-bounce {
    animation: stat-bounce 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes stat-bounce {
    0% { transform: scale(1); text-shadow: none; }
    25% { transform: scale(1.18); color: #27ae60; text-shadow: 0 0 16px #b2f2dd, 0 2px 8px #27ae60; }
    60% { transform: scale(0.92); text-shadow: 0 0 12px #b2f2dd; }
    80% { transform: scale(1.06); text-shadow: 0 0 18px #2ecc71, 0 2px 8px #27ae60; }
    100% { transform: scale(1); color: #2ecc71; text-shadow: 0 0 10px #b2f2dd, 0 2px 8px #27ae60; }
}

.confetti-burst {
    pointer-events: none;
    opacity: 0;
    animation: confetti-pop 1.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes confetti-pop {
    0% { opacity: 0; transform: translateX(-50%) scale(0.7) translateY(30px); }
    20% { opacity: 1; transform: translateX(-50%) scale(1.1) translateY(-10px); }
    50% { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) scale(1) translateY(-30px); }
}



/* Mission Stats */
.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.05rem;
    color: #4a5568;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem auto;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 1.75rem 1.5rem;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 1.1rem !important;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mission-stats {
        gap: 1rem;
    }
    
    .mission-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .mission-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mission {
        padding: 4rem 0;
    }
    
    .mission h2 {
        font-size: 2rem;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card:last-child {
        max-width: 100%;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

/* FOOTER STYLES */
.footer {
    background: #155f2c;
    color: #fff;
    padding: 4rem 0 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.footer-section h3 {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #2ecc71;
}

.footer-section p {
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-section ul li a:hover {
    color: #2ecc71;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #cbd5e0;
}

.contact-info i {
    color: #2ecc71;
    margin-right: 1rem;
    margin-top: 0.25rem;
    min-width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2ecc71;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
    color: #155f2c;
}

.newsletter-form button {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 0 1.25rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #1fa97a;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2ecc71;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* HOW WE HELP SECTION */
#how-we-help {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

#how-we-help .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

#how-we-help .section-header h2 {
    color: #155f2c;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#how-we-help .mission-intro {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

#why-choose-us .mission-intro {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.section-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 18px;
  border: 2px solid;
  border-image: linear-gradient(90deg, #2ecc71, #27ae60) 1;
  padding: 1.5rem 2rem 1.2rem 2rem;
  margin: 3.5rem auto 3rem auto;
  max-width: 650px;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(46,204,113,0.07);
}

.section-highlight .highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2ecc71 60%, #27ae60 100%);
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(46,204,113,0.13);
  margin-bottom: 1.1rem;
  border: 3px solid #fff;
  position: static;
}

.section-highlight .highlight-text {
  font-weight: 600;
  font-size: 1.18rem;
  color: #1a2e22;
  letter-spacing: 0.01em;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 700px) {
  .section-highlight {
    padding: 1.3rem 0.5rem 1.1rem 0.5rem;
    max-width: 98vw;
    border-radius: 13px;
    margin-top: 2.5rem;
  }
  .section-highlight .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .section-highlight .highlight-text {
    font-size: 0.98rem;
  }
}

#how-we-help .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    #how-we-help {
        padding: 4rem 0;
    }
    
    #how-we-help .section-header h2 {
        font-size: 2rem;
    }
}

@media(max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .tagline {
    font-size: 1rem;
  }
}
