:root {
    --primary: #39328a;
    --primary-dark: #4338ca;
    --secondary: #08afad;
    --background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    --dark: #1e293b;
    --light: #f7f7f8;
    --gray: #64748b;
    --light-gray: #e2e8f0;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

h2 {
    font-weight: 600;
    font-size: 32px !important;
}

h3 {
    font-size: 30px;
    font-weight: 600;
}

h5 {
    font-size: 20px !important
}

p {

    font-size: 15px !important;
}

.light-bg {
    /* background-color: #f7f7f8; */
    background-color: #E0EAFF;
}

.section-padding {
    padding: 60px 0 !important;
}

/* Navbar */
.custom-navbar {
    background-color: transparent;
    box-shadow: unset;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    transition: transform var(--transition-speed);
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* REMOVE display: block; from this */
.dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed);
    /* display: block; ❌ remove this */
}

/* Add this to re-enable animation ONLY when visible */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--hover-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #08afad;
    border-color: var(--secondary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Hero Section */
.hero {
    background: var(--background);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-content h1 {
    line-height: 1.2;
    margin-bottom: 24px !important;
    color: var(--primary);
    max-width: 700px;
    margin: auto;
}

.hero-content h5 {
    color: var(--secondary) !important;
    font-weight: 600;
}

.hero-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 32px !important;
    max-width: 700px;
    display: block;
    margin: auto;
}

.hero-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Existing dot styles remain the same */

.hero-dots .dot {
    position: absolute;
    background-color: #10b4b5;
    border-radius: 50%;
    opacity: 0.7;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Animations per dot size */
.dot-xs {
    width: 10px;
    height: 10px;
    animation: float-xs 6s infinite;
}

.dot-sm {
    width: 20px;
    height: 20px;
    animation: float-sm 8s infinite;
    background: var(--primary);
}

.dot-md {
    width: 40px;
    height: 40px;
    animation: float-md 10s infinite;
}

.dot-lg {
    width: 80px;
    height: 80px;
    animation: float-lg 12s infinite;
}

.top-left {
    animation-delay: 0s;
}

.top-right {
    animation-delay: 2s;
}

.bottom-right {
    animation-delay: 1s;
}

.bottom-left {
    animation-delay: 3s;
}

.top-mid {
    animation-delay: 0.5s;
}

.bottom-mid {
    animation-delay: 1.5s;
}

/* Dot positions */
.top-left {
    top: 20px;
    left: 20px;
}

.top-right {
    top: 50px;
    right: 40px;
}

.bottom-right {
    bottom: 30px;
    right: 50px;
}

.bottom-left {
    bottom: 40px;
    left: 30px;
}

.top-mid {
    top: 100px;
    right: 8%;
    transform: translateX(-50%);
}

.bottom-mid {
    bottom: 120px;
    left: 15%;
    transform: translateX(-50%);
}

@keyframes float-xs {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, -5px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-sm {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-8px, 6px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-md {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-lg {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-15px, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}


.hero-image {
    position: relative;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.floating-card.top {
    top: 20px;
    right: 30px;
}

.floating-card.bottom {
    bottom: 40px;
    left: 20px;
}

.floating-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.floating-card .content h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.floating-card .content p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

/* Features Section */
.features {
    /* background-color: white; */
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: -1px 2px 30px rgb(0 0 0 / 9%);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 1.6rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

.feature-card img {
    margin-top: 20px;
    margin: 40px auto 0;
    display: block;
    width: 100%;
}

/* Dashboard Section */
.dashboard-section {
    background-color: var(--light);
    position: relative;
}

.dashboard-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.dashboard-content h6,
.dashboard-content h5,
.dashboard-content h4 {
    color: var(--secondary);
    font-weight: 500
}

.dashboard-content p {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.dashboard-content ul li {
    font-size: 14px;
    color: var(--gray);
}

.dashboard-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-badges {
    display: flex;
}

.stat-badge {
    background: #f7f7f8;
    border-radius: 30px;
    padding: 20px;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 19%);
    text-align: center;
}

.stat-badge .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0badaf;
    margin: 0 auto 10px;
}

.stat-badge .icon i {
    font-size: 20px
}

.stat-badge p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
}

/* Steps Section */
.steps-section {
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray);
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    /* margin-bottom: 12px; */
}

.step-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 14px !important;
}

/* Analytics Section */
.analytics-section {
    background-color: var(--light);
}

.chart-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.chart-filters {
    display: flex;
    gap: 10px;
}

.chart-filter {
    background: var(--light);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-filter.active {
    background: var(--primary);
    color: white;
}

.chart-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.chart-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.chart-card {
    position: relative;
    /* To position chart-content correctly */
    min-height: 260px;
    /* Prevent layout jump */
}

.chart-filter {
    display: inline-block;
    padding: 5px 12px;
    cursor: pointer;
    background: #eee;
    border-radius: 4px;
    margin-right: 5px;
    font-weight: 500;
}

.chart-filter.active {
    background: var(--secondary);
    color: #fff;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    position: absolute;
    top: -40px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-gray);
    overflow: hidden;
}

.author-info h5 {
    font-size: 15px !important;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: 20px;
    margin: 0 20px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-light {
    background: white;
    color: var(--primary);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
}

.btn-light:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-outline-light {
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-outline-light:hover {
    background: white;
}

/* Footer */
.footer {
    background-color: #39328a;
    color: white;
    padding: 80px 0 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s;
}

.social-links a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    /* background: var(--primary); */
    transform: translateY(-4px);
}

.social-links a:hover i {
    background-color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .floating-card {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu li a {
        padding: 12px 16px;
    }

    .dashboard-content{
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-image {
        margin-top: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .dashboard-content h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    font-size: 15px;
    color: var(--dark);
    background-color: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary) !important;
    color: white !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon) !important;
    filter: invert(1);
    width: 20px;
    height: 20px;
    background-size: cover;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray);
    font-size: 14px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon) !important;
    background-size: 1rem;
    transition: all 0.3s ease;
}

/* Partners Section */
.partners-section {
    background-color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}


/* Custom Styles */
.custom-navbar {
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.navbar .contact-card {
    box-shadow: 1px 1px 30px 4px var(--secondary);
}


/* .hero-section {
    background-color: var(--light);
    padding: 80px 0;    
}

.hero-section h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 600px;
} */

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.section-title {
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.card-service {
    border: none;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

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

.card-service .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 2rem;
    margin: auto;
}

.card-service h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.featured-card {
    text-align: center;
    margin-bottom: 30px;
}

.featured-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(57, 50, 138, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
}

.featured-card h4 {
    margin-bottom: 15px;
    font-size: 15px;
}

.bg-light-custom {
    background-color: var(--light);
}



.hero-section {
    padding: 100px 0 0px;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(57, 50, 138, 0.05);
    right: -150px;
    top: -100px;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(8, 175, 173, 0.05);
    left: -100px;
    bottom: -50px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.billing-process-section {
    background-color: #ffffff;
    position: relative;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem !important;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

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

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    border-radius: 5px 0 0 5px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(57, 50, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 24px;
    color: var(--primary);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.process-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

.alert-info-custom {
    background-color: rgba(57, 50, 138, 0.1);
    border: none;
    border-radius: 15px;
    padding: 20px;
    color: var(--dark);
}

.financial-assistance-section {
    background: var(--background);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.assistance-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary-custom {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 50, 138, 0.2);
}

.contact-section {
    background-color: #ffffff;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(57, 50, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 18px;
    color: var(--primary);
}

.online-payment-section {
    background-color: #ffffff;
    text-align: center;
}

.payment-card {
    background: var(--background);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.shadow-sm {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}




/* Step Section */
.step-section {
    padding: 60px 0;
    background-color: var(--white);
}

.step-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.step-content {
    flex: 1;
}

.step-image {
    flex: 1;
    text-align: center;
}

.step-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.step-section p {
    color: var(--gray);
    margin-bottom: 25px;
}

.support-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.support-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.support-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.support-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

/* Understanding Section */
.understanding-section {
    padding: 60px 0;
    background-color: var(--white);
}

.understanding-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.process-step {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.step-marker {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-details p {
    color: var(--gray);
}

.learn-more {
    text-align: center;
    margin-top: 20px;
}

/* .btn-transparent {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-transparent:hover {
    background-color: var(--primary-light);
  }
   */
/* Next Step Section */
.next-step-section {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.next-step-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.next-step-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray);
}

.image-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .step-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .step-section h2,
    .understanding-section h2,
    .next-step-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .reasons {
        grid-template-columns: 1fr !important;
    }

    .hero-dots {
        display: none !important;
    }
}




.comparison-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.comparison-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.comparison-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.comparison-card.highlighted {
    background: var(--primary);
    color: #fff;
}

.comparison-card.highlighted .card-title,
.comparison-card.highlighted .price,
.comparison-card.highlighted .feature-list li {
    color: #fff;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.price {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
}

.comparison-card.highlighted .price .currency {
    color: rgba(255, 255, 255, 0.8);
}

.price .currency {
    font-size: 1.2rem;
    color: var(--gray);
    vertical-align: top;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.feature-list li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "âœ”";
    color: var(--secondary);
    margin-right: 10px;
    font-weight: bold;
}

.comparison-card.highlighted .feature-list li::before {
    color: #fff;
}

.feature-list-title {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
}

.feature-list-title::after {
    content: '';
    width: 20%;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background: var(--secondary)
}

.comparison-card.highlighted .feature-list-title {
    color: #fff;
}

.comparison-card.highlighted .pill-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}


/* Comparison Section */
.comparison-section {
    padding: 120px 0;
}

.comparison-heading {
    margin-bottom: 50px;
}

.comparison-heading h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.comparison-heading p {
    font-size: 1.1rem;
    color: var(--gray);
}

.comparison-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    margin: 0 15px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

.comparison-table {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.table-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    font-weight: 700;
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
}

.table-cell {
    flex: 1;
    padding: 0 15px;
}

.table-cell.highlight {
    background-color: rgba(8, 175, 173, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
}

.test-options {
    background: var(--background);
}

.option-card {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    gap: 20px;
}

.option-icon {
    width: 60px;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-icon-bg {
    padding: 10px;
    border-radius: 15px;
    background-color: var(--secondary);
}

.option-icon-bg img {
    width: 47px;
    height: 50px;
}

.option-content {
    flex-grow: 1;
}

.option-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.option-description {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

.stats-container {
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.stats-heading {
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.stats-list {
    list-style: none;
    padding-left: 0;
}

.stats-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.stats-check {
    color: var(--secondary);
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
}

.stats-circle {
    position: relative;
    width: 150px;
    height: 150px;
}

.stats-circle-bg {
    fill: none;
    stroke: #e6eff9;
    stroke-width: 12;
}

.stats-circle-progress {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 282.6;
    stroke-dashoffset: 84.78;
    /* 70% filled (282.6 * 0.3) */
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1s ease-in-out;
}

.stats-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
    .stats-container {
        padding: 25px;
    }

    .stats-heading {
        font-size: 1.5rem;
    }

    .stats-circle {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
    }

    .stats-circle-text {
        font-size: 2rem;
    }
    .comparison-table{
        padding: 0 !important;
    }
    .navbar-collapse{
        padding: 20px 0;
    }
}

.newsletter h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form .input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.newsletter-form .form-control {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
    min-width: 200px;
}

.newsletter-form .btn-primary {
    padding: 10px 15px;
    background-color: #0cabac;
    border-color: #08afad;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background-color: #025aa5;
    border-color: #025aa5;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .btn-primary {
        width: 100%;
        margin-top: 8px;
    }
}


.why-tested {
    background: linear-gradient(120deg, #f6f9fc 0%, #eef3fb 100%);
    padding: 40px;
}

.reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.row .col-lg-6 .reasons {
    grid-template-columns: 1fr !important;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .05), 0 1px 3px rgba(0, 0, 0, .05);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.reason-item .dot {
    color: var(--primary);
    font-size: 24px;
    margin-right: 15px;
    line-height: 1;
}