:root {
  /* Primary Colors */
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #3B82F6;
  
  /* Secondary Colors */
  --secondary: #0D9488;
  --secondary-dark: #0F766E;
  --secondary-light: #14B8A6;
  
  /* Neutrals */
  --dark: #1E293B;
  --gray: #64748B;
  --gray-light: #E2E8F0;
  --light: #F8FAFC;
  --white: #FFFFFF;
  
  /* System Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(30, 41, 59, 0.05);
  --shadow-md: 0 4px 6px rgba(37, 99, 235, 0.1);
  --shadow-lg: 0 10px 15px rgba(37, 99, 235, 0.1);
  
  --accent: #00bfae;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    /* More visible, professional gradient background */
    background: linear-gradient(120deg, #b2f1f8 0%, #e0f7fa 50%, #b3cfff 100%);
    color: var(--dark);
    line-height: 1.6;
    padding-top: 70px; /* Space for fixed navbar */
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 4px 24px rgba(0,191,174,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* .navbar.gradient-bg {
    background: linear-gradient(120deg, var(--primary), var(--secondary), var(--primary-light));
    background-size: 200% 200%;
    animation: gradientMove 8s ease-in-out infinite;
    color: #fff;
    transition: background 0.5s cubic-bezier(.4,0,.2,1), color 0.5s;
}

.navbar.gradient-bg .logo,
.navbar.gradient-bg .nav-links a,
.navbar.gradient-bg .mobile-menu-btn {
    color: #fff;
}

.navbar.gradient-bg .nav-links a.active,
.navbar.gradient-bg .nav-links a:hover {
    color: var(--accent);
} */

.navbar.white-bg {
    background: #fff !important;
    color: var(--dark) !important;
    transition: background 0.5s, color 0.5s;
}
.navbar.white-bg .logo,
.navbar.white-bg .nav-links a,
.navbar.white-bg .mobile-menu-btn {
    color: var(--dark) !important;
}
.navbar.white-bg .nav-links a.active,
.navbar.white-bg .nav-links a:hover {
    color: var(--accent) !important;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 48px;
    margin-top: 8px;
}

.logo span {
    color: var(--accent);
}

.logo i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-left: 1.5rem;
}

/* Enhanced Original Button Style */
/* Navbar Button - Desktop */
.btn-nav {
    display: inline-block;
    background: var(--primary-light);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.2);
    margin-left: 1.5rem;
    white-space: nowrap;
}

.btn-nav:hover {
    background: white;
    color: var(--accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

/* Mobile Menu Button Styling */
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

/* Responsive Navbar */
@media (max-width: 1000px) {
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 1;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.open {
        display: flex;
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .btn-nav {
        margin: 1rem 0 0 0;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Keep logo and button in same line on mobile */
@media (max-width: 1000px) {
    .navbar-container {
        justify-content: space-between;
    }
    
    .logo {
        order: -1;
    }
}


/* Navbar Scroll Effects */
.navbar {
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .mobile-menu-btn {
    color: var(--dark) !important;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--accent) !important;
}

.navbar.scrolled .btn-nav {
    background: var(--accent);
    color: white !important;
    border-color: var(--accent);
}

.navbar.scrolled .btn-nav:hover {
    background: white !important;
    color: var(--accent) !important;
}


/* Update your existing navbar styles */
.navbar.white-bg .nav-links a {
    color: var(--dark) !important; /* Force black text */
}

.navbar.white-bg .nav-links a:hover,
.navbar.white-bg .nav-links a.active {
    color: var(--accent) !important; /* Keep accent color for hover/active */
}

/* Mobile Responsive Styles */
@media (max-width: 1000px) {
    .nav-links {
        display: none;
        width: 100%;
        text-align: center; /* Center-align all items */
        padding: 1rem 0;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center items horizontally */
    }

    .nav-links li {
        margin: 0.5rem 0;
        width: auto; /* Remove full width */
    }

    .nav-links a {
        display: inline-block;
        padding: 0.5rem 1rem;
    }

    .btn-nav {
        margin: 1rem auto 0 auto; /* Center button */
        width: auto; /* Natural width */
        padding: 0.7rem 2rem; /* Slightly larger padding */
        display: inline-block; /* Keep button style */
    }

    /* Keep text colors consistent */
    .nav-links a {
        color: var(--dark) !important;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent) !important;
    }
    
    /* Mobile menu button positioning */
    .mobile-menu-btn {
        position: absolute;
        right: 1rem;
        top: 1rem;
    }
}


header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

/* Responsive Navbar */
@media (max-width: 1000px) {
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 1;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.open {
        display: flex;
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .btn-nav {
        margin: 1rem 0 0 0;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Keep logo and button in same line on mobile */
@media (max-width: 1000px) {
    .navbar-container {
        justify-content: space-between;
    }
    
    .logo {
        order: -1;
    }
}



header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.tagline-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(0,191,174,0.15);
    letter-spacing: 0.5px;
}


.value-prop-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    display: inline-block;
}


.value-prop-text span:first-child {
    display: block;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.value-prop-text span:last-child {
    display: block;
    font-size: 1.8rem;
}

.value-prop-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 3px;
}



section {
    padding: 3rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title h2 {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.features, .how-it-works, .why-us, .testimonials, .pricing {
    margin-bottom: 1rem;
}

/* Highlighted, animated Features section */
.features {
    background: linear-gradient(120deg, #f9fefe 80%, #e0f7fa 100%);
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    border-radius: 18px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 2.5px solid var(--accent);
    animation: featuresGlow 3s infinite alternate;
}

@keyframes featuresGlow {
    0% { box-shadow: 0 0 24px 0 rgba(0,191,174,0.13);}
    100% { box-shadow: 0 0 48px 8px rgba(0,191,174,0.19);}
}

.features .section-title h2 {
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,191,174,0.08);
    animation: fadeInDown 1s;
}

.features .section-title p {
    color: #222;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    animation: fadeInDown 1.2s;
}

.features .card {
    border: none;
    background: transparent; /* Make card background match section */
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    animation: fadeInUp 1.2s;
}

/* Feature List - Mobile Optimized */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center; /* Changed from flex-start to center for better icon alignment */
  margin-bottom: 1.5rem;  /* Increased for better spacing */
  font-size: 1rem;
  line-height: 1.4;
  gap: 1rem; /* Add gap between icon and text */
}

.feature-title {
  font-weight: 600;
  color: var(--primary-dark);
  min-width: 6.5em; /* Adjusted for better alignment */
  margin-right: 0.3rem;
}

.feature-desc {
  color: #444;
  flex: 1;
  margin-left: 0; /* Remove left margin since we're using gap */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .feature-list li {
    margin-bottom: 0.25rem; /* Even tighter spacing */
    padding: 0.15rem 0;
    font-size: 0.95rem;
  }
  
  .feature-title {
    min-width: 5.5em; /* More compact title width */
    margin-right: 0.2rem;
    font-size: 0.95em;
  }
  
  .feature-desc {
    font-size: 0.92em;
  }
  
  /* Optional: Add a subtle separator */
  .feature-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 191, 174, 0.1);
    padding-bottom: 0.3rem;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .feature-list li {
    margin-bottom: 0.2rem;
    font-size: 0.92rem;
  }
  
  .feature-title {
    min-width: 5em;
  }
  
  .feature-desc {
    font-size: 0.9em;
  }
}
.feature-list li:nth-child(1) { animation-delay: 0.2s;}
.feature-list li:nth-child(2) { animation-delay: 0.5s;}
.feature-list li:nth-child(3) { animation-delay: 0.8s;}

@keyframes featureFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 2.2em;
    height: 2.2em;
    margin-right: 1.1em;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    box-shadow: 0 2px 8px rgba(0,191,174,0.13);
    position: relative;
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0,191,174,0.13);}
    100% { box-shadow: 0 0 16px 4px rgba(0,191,174,0.19);}
}

/* Add animated icon inside the circle using pseudo-element */
.feature-list li:nth-child(1)::before {
    content: "\f201";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6f61, #ffb347);
}
.feature-list li:nth-child(2)::before {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00bfae, #2563EB);
}
.feature-list li:nth-child(3)::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e42, #14B8A6);
}

.features .mt-3 {
    font-size: 1.18rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
    animation: fadeInUp 1.5s;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(0, 180, 216, 0.1);
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    line-height: 1;
}

blockquote {
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    color: var(--gray);
    font-size: 0.85rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border-radius: 8px;
    font-size: 0.9rem;
}

th, td {
    border: 1px solid #e9ecef;
    padding: 1rem;
    text-align: left;
}

th {
    background-color: var(--primary);
    color: white;
    font-weight: 500;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

tr:hover {
    background-color: #e9f7fe;
}

.highlight {
    background-color: #e3f2fd !important;
    position: relative;
}

.highlight::after {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    border-bottom-left-radius: 4px;
}

.cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.cta .container {
    position: relative;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background-color: #0096c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn::before, .btn-large::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(0,180,216,0.15);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.btn:hover::before, .btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.pricing-notes {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
    text-align: center;
}

.pricing-notes a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.pricing-notes a:hover {
    text-decoration: underline;
}

/* Fade-in Up Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
}
.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Optional: Add a slight stagger for child elements in sections */
.animate-on-scroll > * {
    transition: opacity 0.8s, transform 0.8s;
    opacity: 0;
    transform: translateY(30px);
}
.fade-in-up > * {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced How-It-Works Section */
.enhanced-benefits-grid {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.enhanced-benefit-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,191,174,0.10);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1.5px solid #e0f7fa;
    position: relative;
}

.enhanced-benefit-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,191,174,0.18);
    border-color: #00bfae;
}

.enhanced-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00bfae 60%, #2563EB 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 2px 12px rgba(0,191,174,0.13);
    animation: iconPulse 2s infinite alternate;
    transition: background 0.3s;
}

.enhanced-benefit-item:hover .enhanced-benefit-icon {
    background: linear-gradient(135deg, #2563EB 60%, #00bfae 100%);
    animation: iconPulse 1s infinite alternate;
}

@keyframes iconPulse {
    0% { box-shadow: 0 0 0 0 rgba(0,191,174,0.13);}
    100% { box-shadow: 0 0 24px 8px rgba(0,191,174,0.19);}
}

.enhanced-benefit-item h3 {
    font-size: 1.18rem;
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}

.enhanced-benefit-item p {
    color: #333;
    font-size: 1.02rem;
    opacity: 0.92;
    margin-bottom: 0;
}

/* Enhanced How It Works Process Section */
.enhanced-process-section {
    background: linear-gradient(120deg, #f9fefe 80%, #e0f7fa 100%);
    border: 2.5px solid #00bfae;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.enhanced-process-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    width: 100%; /* Match the photo width exactly */
    margin: 0 auto;
}

.enhanced-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.enhanced-process-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    position: relative;
    background: none;
    padding-bottom: 0.5rem;
    animation: fadeInUp 1s;
    border-left: 4px solid #00bfae;
    padding-left: 1.2rem;
}

.enhanced-process-list li::before {
    display: none;
}

.process-step-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfae 60%, #2563EB 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 2px 12px rgba(0,191,174,0.13);
    margin-right: 0.5rem;
    flex-shrink: 0;
    animation: iconPulse 2s infinite alternate;
    transition: background 0.3s;
}

.enhanced-process-list li:hover .process-step-icon {
    background: linear-gradient(135deg, #2563EB 60%, #00bfae 100%);
    animation: iconPulse 1s infinite alternate;
}

.enhanced-process-list strong {
    color: #2563EB;
    font-size: 1.13rem;
    font-weight: 600;
}

.process-desc {
    color: #333;
    font-size: 1.01rem;
    opacity: 0.88;
}

@media (max-width: 700px) {
    .enhanced-process-card {

        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .enhanced-process-list {
        gap: 1.2rem;
    }
    .enhanced-process-list li {
        padding-left: 0.7rem;
    }
    .process-step-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Enhanced Why Us Section */
.enhanced-whyus-section {
    background: linear-gradient(120deg, #f9fefe 80%, #e0f7fa 100%);
    border: 2.5px solid #00bfae;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.enhanced-whyus-grid {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.enhanced-whyus-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,191,174,0.10);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1.5px solid #e0f7fa;
    position: relative;
}

.enhanced-whyus-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,191,174,0.18);
    border-color: #00bfae;
}

.enhanced-whyus-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563EB 60%, #00bfae 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 2px 12px rgba(0,191,174,0.13);
    animation: iconPulse 2s infinite alternate;
    transition: background 0.3s;
}

.enhanced-whyus-item:hover .enhanced-whyus-icon {
    background: linear-gradient(135deg, #00bfae 60%, #2563EB 100%);
    animation: iconPulse 1s infinite alternate;
}

.enhanced-whyus-item h3 {
    font-size: 1.18rem;
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}

.enhanced-whyus-item p {
    color: #333;
    font-size: 1.02rem;
    opacity: 0.92;
    margin-bottom: 0;
}

footer {
    background: #181c24;
    color: #fff;
    padding: 48px 0 0 0;
    font-family: 'Poppins', sans-serif;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-brand {
    flex: 1 1 250px;
    margin-bottom: 32px;
}
.footer-brand .logo {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.footer-brand span {
    color: #00bfae;
}
.footer-links,
.footer-contact {
    flex: 1 1 180px;
    margin-bottom: 32px;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #00bfae;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 8px;
}

.footer-contact a:hover {
    color: #009688 !important; /* Slightly darker shade on hover */
    text-decoration: underline !important;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #00bfae;
}
.footer-contact ul li i {
    margin-right: 8px;
    color: #00bfae;
}
.footer-social {
    margin-top: 12px;
}
.footer-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #00bfae;
}
.footer-bottom {
    text-align: center;
    padding: 18px 0;
    background: #15181f;
    font-size: 0.95rem;
    margin-top: 24px;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links,
    .footer-contact,
    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 24px;
    }

    .footer-bottom {
    font-size: 0.95rem;
    padding: 0.7rem 0 0.3rem 0;
  }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto 30px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 36px 32px 32px 32px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
    border: 2.5px solid var(--accent);
    position: relative;
    transition: box-shadow 0.3s;
}

.contact-form:hover {
    box-shadow: 0 16px 48px rgba(0,191,174,0.18);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: transparent;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 18px 15px 18px 15px;
    font-size: 1.08rem;
    transition: border 0.3s, box-shadow 0.3s;
    outline: none;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,191,174,0.04);
}

.form-group input:focus,
.form-group select:focus {
    box-shadow: 0 0 8px 0 var(--accent);
    border-color: var(--accent);
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #888;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s;
    background: #fff;
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -12px;
    left: 12px;
    font-size: 0.85rem;
    color: var(--accent);
    background: #fff;
}

.or-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    font-weight: 500;
}

.or-divider:before,
.or-divider:after {
    content: "";
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 50%;
    width: 45%;
}

.or-divider:before {
    left: 0;
}

.or-divider:after {
    right: 0;
}

/* Make sure the button has a visible background and text color */
.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 1rem 0;
    box-shadow: 0 4px 16px rgba(0,191,174,0.13);
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}
.contact-form button[type="submit"]:hover {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: translateY(-2px) scale(1.03);
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark, #1E293B);
    color: #fff;
    z-index: 2000;
    padding: 1rem 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 1rem;
}
.cookie-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
#cookie-banner .btn {
    background: var(--primary, #2563EB);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
#cookie-banner .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
}
#cookie-banner .btn:hover {
    background: var(--primary-dark, #1D4ED8);
}
#cookie-banner .btn-outline:hover {
    background: #fff;
    color: var(--primary, #2563EB);
}

/* Add this at the end of your CSS file */

/* Animated gradient background for header */
header {
    background: linear-gradient(120deg, var(--primary), var(--secondary), var(--primary-light));
    background-size: 200% 200%;
    animation: gradientMove 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
    100% { background-position: 0% 50%;}
}

/* Floating headline effect */
header h1 {
    animation: floatText 3s ease-in-out infinite alternate;
}

@keyframes floatText {
    0% { transform: translateY(0);}
    100% { transform: translateY(-10px);}
}

.benefit-icon, .footer-social a i {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.benefit-item:hover .benefit-icon,
.footer-social a:hover i {
    transform: scale(1.2) rotate(-8deg);
}

#form-status {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary);
    min-height: 24px;
    transition: color 0.3s;
}

/* Vertical Pricing Cards */
.pricing-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 1rem 0;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,191,174,0.10);
    border: 2px solid #e0f7fa;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 340px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
    position: relative;
}

.pricing-card:hover {
    border: 2.5px solid var(--accent);
    box-shadow: 0 16px 48px rgba(0,191,174,0.18);
    transform: scale(1.045);
    z-index: 2;
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.pricing-amount span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.pricing-alert-fee {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.pricing-alert-fee span {
    font-size: 0.95rem;
    color: #888;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    width: 100%;
}

.pricing-features li {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 0.7em;
    display: flex;
    align-items: center;
    gap: 0.7em;
}

.pricing-features i {
    color: var(--accent);
    font-size: 1.1em;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 1000px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        max-width: 420px;
        width: 100%;
    }
}

/* --- Ensure navbar items are in one line --- */
.navbar-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    height: 48px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-left: 1.5rem;
}

/* Responsive: On mobile, stack nav-links below navbar-container */
@media (max-width: 1000px) {
    .navbar-container {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,191,174,0.08);
        display: none;
        padding: 1rem 0;
        z-index: 1001;
    }
    .nav-links.open {
        display: flex;
    }
    .mobile-menu-btn {
        display: flex;
    }
}


/* Responsive layout for CTA section */
@media (max-width: 768px) {
  #cta .container {
    flex-direction: column;
  }
  #cta .container > div {
    width: 100%;
    padding: 0;
  }
}

/* Improve form appearance */
.contact-form {
  background: rgba(255,255,255,0.92);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,191,174,0.15);
}

/* Style the benefit list */
.benefit-list {
  list-style: none;
  padding-left: 0;
}

/* Responsive fixes for navbar and features section */
@media (max-width: 768px) {
  .navbar .logo img {
    height: 60px !important;
    margin-right: 6px !important;
  }
  .navbar .logo {
    font-size: 1.2rem !important;
  }
  .navbar-container {
    padding: 0.5rem 1rem !important;
  }
  .navbar {
    min-height: 60px;
  }
  .nav-links {
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    z-index: 100;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    margin: 0.5rem 0;
  }
  .mobile-menu-btn {
    display: block !important;
  }
}

/* Feature list responsive alignment */
@media (max-width: 768px) {
  .features .feature-list {
    padding-left: 0 !important;
    margin: 0 auto !important;
    width: 100%;
  }
  .features .feature-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.8rem; /* Better spacing for mobile */
    font-size: 1rem;
    padding-left: 0;
  }
  .features .feature-title {
    font-weight: 600;
    color: #00bfae;
    margin-bottom: 0.05em; /* Tighter title/desc gap */
  }
  .features .feature-desc {
    margin-left: 0;
    color: #333;
    font-size: 0.98em;
    margin-top: 0.1em; /* Tighter desc spacing */
  }
  .features .card {
    padding: 1.2rem 0.6rem !important;
  }
}

/* Add spacing between navbar and first section */
@media (max-width: 768px) {
  header, .features {
    margin-top: 70px !important;
  }
}