:root {
    --primary-accent: #00dfeb;
    --secondary-accent: #00c7e0;
    --primary-peach: #FF9A8B;
    --secondary-peach: #FF6A88;
    --cta: linear-gradient(135deg, #FF9A8B, #FF6A88);
    --cta-hover: linear-gradient(135deg, #FF6A88, #FF9A8B);
    --footerbg: linear-gradient(135deg, #00c3da, #1273ae);
    --text: #2b2b2b;
    --light-bg: #f9f9f9;
    --card-bg: #ffffff;
    --dark-blue: #0a2540;
    --light-gray: #f5f7fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
a{text-decoration: none;}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-accent);
}

/* Header Styles */
.navbar {
    background-color: var(--card-bg) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--cta) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--text) !important;
    margin: 0 8px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
}

.dropdown-item.active {
    background: var(--secondary-accent);
}

.dropdown-item:hover {
    background-color: rgba(0, 223, 235, 0.1);
    color: var(--cta);
}

.dropdown-divider {
    margin: 5px 0;
}

.btn-login {
    border: 1px solid var(--cta);
    color: var(--cta);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--secondary-accent);
    color: white !important;
    border-color: var(--secondary-accent);
}

.btn-apply {
    background: var(--cta);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 106, 136, 0.3);
}

/* Mobile Menu - Left Side Offcanvas */
.offcanvas-start {
    width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}

.offcanvas-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--cta);
}

.mobile-menu .nav-link {
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.03);
    margin-left: 15px;
    width: calc(100% - 30px);
}

.mobile-menu .dropdown-item {
    padding: 10px 30px;
    font-size: 14px;
}

.mobile-menu-buttons {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 1. Quita el fondo oscuro cuando el off-canvas está abierto */
.offcanvas-backdrop.fade.show {
    /* display: none !important; */
    /* no lo mostramos */
    opacity: 0 !important;
}

.offcanvas {
    visibility: visible !important;
    /* evita que Bootstrap lo ponga hidden */
}

/* Los dos iconos dentro del botón */
.navbar-toggler .toggler-icon {
    font-size: 1.4rem;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
    -ms-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
}

.offcanvas.offcanvas-start {
    top: var(--navbar-height-px, 0px) !important;
    height: calc(100vh - var(--navbar-height-px, 0px)) !important;
}

/* Mobile Navbar Layout */
@media (max-width: 991.98px) {
    .navbar-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar-toggler {
        order: 1;
        border: none;
        padding: 0;
        font-size: 24px;
        width: 30px;
    }

    .navbar-brand {
        order: 2;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar-apply {
        order: 3;
    }

    .desktop-menu {
        display: none;
    }
}

/* Desktop Navbar Layout */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-apply {
        display: none;
    }

    .desktop-menu {
        display: flex;
    }

    #mobileMenu.offcanvas {
        visibility: hidden !important;
        transform: translateX(-100%) !important;
    }

    /* Por si quedase backdrop colgado */
    .offcanvas-backdrop {
        display: none !important;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(249, 249, 249, 1) 0%, rgba(240, 248, 255, 1) 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-peach), var(--secondary-peach));
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-blue);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 36px;
    color: #555;
}

.howitworks{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-cta {
    background: var(--cta);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(255, 106, 136, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--cta-hover);
    transition: all 0.5s ease;
    z-index: -1;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 106, 136, 0.4);
}

.hero-cta:hover::before {
    width: 100%;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFB703;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
    border: 10px solid white;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Product Highlights */
.product-highlights {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--cta);
    border-radius: 2px;
}

.highlight-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    opacity: 0.05;
    transition: all 0.4s ease;
    z-index: -1;
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.highlight-card:hover::before {
    height: 100%;
}

.highlight-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: var(--cta);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 106, 136, 0.3);
}

.highlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark-blue);
}

.highlight-description {
    color: #666;
    line-height: 1.7;
}

/* Explainer Section */
.explainer-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f9f9 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.explainer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.explainer-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-peach), var(--secondary-peach));
    border-radius: 50%;
    opacity: 0.05;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: white;
}

.benefit-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--cta);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: white;
    font-size: 28px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--cta);
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(255, 106, 136, 0.3);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

.benefit-description {
    color: #666;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.step-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px 25px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary-accent);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color:#fff;
}

.step-description {
    font-size: 0.95rem;
    opacity: 0.9;
    color:#fff;

}

.app-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 12px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.app-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Eligibility Section */
.eligibility-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f9f9 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.eligibility-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 50%;
    opacity: 0.05;
}

.requirement-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 22px 20px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.requirement-text {
    font-weight: 500;
    color: var(--dark-blue);
}

.eligibility-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.eligibility-image:hover {
    transform: scale(1.03);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: white;
}

.accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 22px 20px;
    border: none;
    box-shadow: none;
    background: var(--light-gray);
    border-radius: 12px !important;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 223, 235, 0.1) 0%, rgba(255, 154, 139, 0.1) 100%);
    color: var(--primary-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px;
    color: #666;
    background: var(--light-gray);
    border-radius: 0 0 12px 12px;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f9f9 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-peach), var(--secondary-peach));
    border-radius: 50%;
    opacity: 0.05;
}

.trust-badge-large {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.trust-badge-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.trust-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.trust-badge-large:hover .trust-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-rating {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.trust-stars {
    color: #FFB703;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.trust-source {
    font-size: 0.95rem;
    color: #666;
}


/* Reviews */
.reviews-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.reviews-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    /* width: 100%;
    padding: 0 15px; */
}

.review-group {
    display: flex;
    flex: 0 0 100%;
    gap: 0px;
    /* padding: 0 10px; */
    min-width: 0;
}

.review-item {
    flex: 0 0 23%;
    margin: 0 1%;
    text-align: center;
}

.review-img {
    /* width: 100%; */
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.review-img:hover {
    transform: scale(1.03);
}

.review-card {
    flex: 0 0 calc(25% - 15px);
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}


.review-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
}

.review-text {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.time-ago {
    font-size: 13px;
}

.star-icon {
    color: #FFB703;
    margin-right: 3px;
    font-size: 16px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    margin: 0 4px;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--cta);
    transform: scale(1.2);
}

@media (max-width: 992px) {

    .review-item {
        flex: 0 0 48%;
        margin-bottom: 15px;
    }

    .review-card {
        flex: 0 0 calc(50% - 10px);
        min-height: 220px;
    }

    .review-group {
        padding: 0 5px;
    }
}

@media (max-width: 768px) {

    .review-item {
        flex: 0 0 98%;
    }


    .review-card {
        flex: 0 0 100%;
        min-height: auto;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

.reviews-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
    /* width: 100%; */
}

/* .review-group {
    display: flex;
    flex: 0 0 100%;
    gap: 24px;
    padding: 0 12px;
} */
.review-group {
    display: flex;
    flex: 0 0 100%;
    justify-content: space-around;
    /* padding: 10px; */
    width: 100%;
    padding: 0 15px;
}

.review-card {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    margin: 0 4px;
    padding: 0;
}

.carousel-indicators button.active {
    background-color: #00dfeb;
}

/* Floating Animation */
@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/**/

/* Footer */
footer {
    background: var(--footerbg);
    color: white;
    padding: 60px 0 0;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
    color: white !important;
    text-decoration: none;
}

.footer-about {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: #0f6193;
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 12px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--cta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 106, 136, 0.4);
    transition: all 0.4s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--cta-hover);
    transform: translateY(-5px);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlight-card,
    .benefit-card {
        margin-bottom: 24px;
    }

    .app-image,
    .eligibility-image {
        margin-top: 40px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .trust-badge {
        flex: 0 0 100%;
        justify-content: center;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}