/* Base Styles */
:root {
    --primary-color: #13C9F1;
    --primary-dark: #0ea8cb;
    --secondary-color: #1F2D5A;
    --accent-color: #5a72ff;
    --light-bg: #F7F8FF;
    --dark-bg: #1F2D5A;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-grey: #666666;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    padding-top: 100px; /* Adjust if your header height changes */
	line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #FAFBFF;
}
html {
    scroll-padding-top: 110px; /* Match your header height plus gap*/
}
/*Spacing */
.spacer-sm {
    height: var(--spacing-sm);
}

.spacer-md {
    height: var(--spacing-md);
}

.spacer-lg {
    height: var(--spacing-lg);
}

.spacer-xl {
    height: var(--spacing-xl);
}
.image-centre {
    text-align: center;
}

.image-centre img {
    max-width: 100%;
    height: auto;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
    min-width: 0; /* Fixes flexbox overflow */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 15px rgba(19, 201, 241, 0.4);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(19, 201, 241, 0.5);
}

.btn-secondary {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(31, 45, 90, 0.4);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(90, 114, 255, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(19, 201, 241, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Header */
header {
    background-color: var(--text-light);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    z-index: 100;
}

.nav-links li {
    margin-left: var(--spacing-md);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 20px;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(19, 201, 241, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    padding: 0;
}

.mobile-menu-btn:hover {
    background-color: rgba(19, 201, 241, 0.1);
}

.mobile-menu-btn .bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn .bar:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn .bar:nth-child(2) {
    top: 19px;
}

.mobile-menu-btn .bar:nth-child(3) {
    top: 26px;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Mobile Navigation */
@media (max-width: 768px) {
	.mobile-menu-btn {
        display: block;
        z-index: 10001; /* ensure it's tappable above other content */
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--text-light);
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        display: none;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		z-index: 9999; /* <— ensure it's on top */
    }

    .nav-links.nav-active {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 20px;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1, .hero h2, .hero h3 {
    color: var(--text-light);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.hero-stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Problem Section */
.problem {
    padding: var(--spacing-xl) 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    text-align: center;
    margin: -20px auto 40px;
    max-width: 700px;
    color: var(--text-grey);
    font-size: 1.2rem;
}

.problem-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 201, 241, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: 1.8rem;
}

.problem-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Solution Section */
.solution {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
    border-radius: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231F2D5A' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
}

.solution-features {
    padding-left: 20px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.solution-feature-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(19, 201, 241, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.solution-feature-content h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.solution-feature-content p {
    margin-bottom: 0;
    color: var(--text-grey);
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(19, 201, 241, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-color);
    font-size: 2rem;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
    border-radius: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
	minheight: 80vh
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231F2D5A' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.step {
    display: flex;
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(19, 201, 241, 0.3);
}

.step-content {
    flex-grow: 1;
}

.steps-connection {
    position: absolute;
    left: 30px;
    top: 150px;
    bottom: 150px;
    width: 2px;
    background-color: rgba(19, 201, 241, 0.3);
    z-index: 1;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 3rem;
    color: rgba(19, 201, 241, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--text-grey);
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-company {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.testimonial-results {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.testimonial-result {
    text-align: center;
}

.testimonial-result-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-result-text {
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* Pricing */
.pricing {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
    border-radius: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231F2D5A' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.pricing-option {
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-grey);
}

.pricing-option.active {
    color: var(--primary-color);
}

.pricing-toggle {
    width: 50px;
    height: 26px;
    background-color: var(--primary-color);
    border-radius: 30px;
    margin: 0 10px;
    position: relative;
    cursor: pointer;
    box-sizing: content-box;
}

.pricing-toggle::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.pricing-toggle.yearly::before {
    left: calc(50px - 23px);
}

.pricing-save {
    background-color: rgba(19, 201, 241, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #eee;
}

.pricing-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.pricing-description {
    margin-bottom: var(--spacing-md);
    color: var(--text-grey);
}

.pricing-features {
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    text-align: left;
}

.pricing-feature {
    margin-bottom: var(--spacing-sm);
    color: var(--text-grey);
    display: flex;
    align-items: center;
}

.pricing-feature-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-popular {
    border: 2px solid var(--primary-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 10px 20px;
    margin: 0 5px 10px;
    background-color: var(--light-bg);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-grey);
}

.feature-tab.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(19, 201, 241, 0.3);
}

.feature-content {
    display: none;
}

.feature-content.active {
    display: block;
}

.feature-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
    border-radius: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231F2D5A' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding-right: 30px;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #eee;
    color: var(--text-grey);
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(19, 201, 241, 0.3);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    font-weight: 600;
    font-size: 1.4rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.cta-guarantee-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--text-light);
    font-size: 1.5rem;
}

.cta-guarantee-text {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Form */
.contact {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 201, 241, 0.2);
}

.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 201, 241, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    height: 100%;
}

.contact-info h3 {
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(19, 201, 241, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-content p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 0;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.footer-about {
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    position: relative;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-newsletter {
    margin-bottom: var(--spacing-md);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
}

.copyright {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-inline-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 5px;
    transition: var(--transition);
    position: relative;
}

.footer-inline-link::before {
    content: "|";
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: -10px;
}

.footer-inline-link:first-of-type::before {
    content: none;
}

.footer-inline-link:hover {
    color: var(--primary-color);
}

.footer-nav {
    display: inline;
    margin-left: 10px;
}

.footer-nav a {
    display: inline;
}


/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-image {
        width: 45%;
    }

    .hero-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .col {
        flex: 0 0 100%;
        margin-bottom: var(--spacing-md);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        position: static;
        width: 80%;
        margin: var(--spacing-lg) auto 0;
        transform: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--text-light);
        padding: var(--spacing-md);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        z-index: 10;
    }

    .nav-links li {
        margin: var(--spacing-sm) 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.nav-active {
        display: flex !important;
    }

    .btn-group {
        flex-direction: column;
    }

    .steps-connection {
        display: none;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: var(--spacing-md);
    }

    .contact-info {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: var(--spacing-lg) 0;
        border-radius: 0 0 30px 30px;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }

    .testimonial-results {
        flex-direction: column;
        gap: 15px;
    }

    .feature-tab {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: 30px;
        padding: 10px;
    }
	.footer-inline-link {
        display: block;
        margin: 5px 0;
        text-align: center;
    }

    .footer-inline-link::before {
        content: none; /* remove pipes on small screens */
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Floating Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(19, 201, 241, 0.4);
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(19, 201, 241, 0.5);
}

.chat-icon {
    font-size: 1.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(19, 201, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(19, 201, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(19, 201, 241, 0);
    }
}

/* Custom Icons */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* Page Template Styles */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: var(--spacing-xl) 0;
}

.page-section {
    margin-bottom: var(--spacing-xl);
}

.page-section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.page-section-subtitle {
    text-align: center;
    margin: -10px auto 30px;
    max-width: 700px;
    color: var(--text-grey);
}

.content-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.content-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* Themed Timeline Styles */
.timeline-container {
  max-width: 80%;
  margin: var(--spacing-xl) auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 var(--spacing-md);
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 60px; /* Adjust if needed to visually align with dot center */
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ddd;
  z-index: 1;
}

.timeline-item {
  text-align: center;
  position: relative;
  width: 22%;
  z-index: 2;
}

.timeline-date {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border: 2px solid var(--text-light);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #ddd;
  margin: 0 auto;
  position: relative;
  top: 0;
}

.timeline-desc {
  font-size: 1rem;
  color: var(--text-grey);
  margin-top: var(--spacing-md);
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
	
	.nav-links {
        display: none;
        /* ... existing styles ... */
    }

    .nav-links.nav-active {
        display: flex !important;
    }
	
  .timeline-container {
    flex-direction: column;
    padding: 0 var(--spacing-sm);
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: var(--spacing-lg);
  }

  .timeline-date,
  .timeline-desc {
    text-align: left;
    padding-left: 40px;
  }

  .timeline-dot {
    position: absolute;
    left: 15px;
    top: 6px;
  }
}