/* Global Styles */
:root {
    --container-width: 1400px;
    --container-padding: 2rem;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #000;
    color: white;
}

/* Container Styles */
.container,
.container-fluid {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Styles */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.rate {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}

.rate span {
    font-weight: 600;
    color: #22c55e;
}

@media (min-width: 768px) {
    .rate br {
        display: none;
    }
}

.cta-button {
    background-color: #22c55e;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #1ea550;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Form Section Styles */
.form-section {
    min-height: 100vh;
    background: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem var(--container-padding);
}

.form-section h2 {
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.loan-form {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease forwards;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    color: #1e293b;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.mobile-group {
    position: relative;
}

.info-text {
    left: 0;
    font-size: 0.7rem;
    color: #64748b;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #1e3a8a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #1e4620;
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .loan-form {
        padding: 1.5rem;
    }
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.how-it-works h2 {
    color: #1e3a8a;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.how-it-works h2:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #1e3a8a);
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.step {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
    text-align: center;
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

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

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

.step-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.icon-circle i {
    font-size: 2rem;
    color: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid white;
}

.step h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.time-indicator,
.success-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 20px;
    color: #1e3a8a;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #1e3a8a);
    border-radius: 4px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 70%;
    }
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-it-works {
        padding: 4rem 1rem;
    }

    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.why-choose-us h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #22c55e;
    border-radius: 2px;
}

.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }
.feature-card:nth-child(4) { animation-delay: 0.6s; }
.feature-card:nth-child(5) { animation-delay: 0.8s; }
.feature-card:nth-child(6) { animation-delay: 1s; }

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-icon {
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: transform 0.3s ease;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: #22c55e;
    transition: transform 0.3s ease;
}

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

.feature-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.feature-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #a3a3a3;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 20px;
    color: #22c55e;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.rotating {
    animation: rotate 4s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-us {
        padding: 4rem 1rem;
    }

    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    z-index: 0;
}

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

.testimonials h2 {
    color: white;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.testimonials h2 .highlight {
    color: #22c55e;
    position: relative;
    display: inline-block;
}

/* Splide Customization */
.splide {
    padding: 1rem;
    margin: -1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: left;
}

.reviewer-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.company-name {
    color: #22c55e;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-number {
    margin-left: 0.5rem;
    color: #fbbf24;
    font-weight: 600;
}

.review-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.review-text strong {
    color: white;
    font-weight: 600;
}

/* Splide Navigation Customization */
.splide__arrow {
    background: rgba(255, 255, 255, 0.1) !important;
    opacity: 1 !important;
    width: 40px !important;
    height: 40px !important;
    transition: all 0.3s ease !important;
}

.splide__arrow svg {
    fill: white !important;
}

.splide__arrow:hover {
    background: rgba(34, 197, 94, 0.2) !important;
    /* transform: scale(1.1) !important; */
}

.splide__pagination {
    bottom: -2rem !important;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.2) !important;
    margin: 0 4px !important;
    width: 8px !important;
    height: 8px !important;
    transition: all 0.3s ease !important;
}

.splide__pagination__page.is-active {
    background: #22c55e !important;
    transform: scale(1.2) !important;
}

/* Mobile Styles */
@media (max-width: 1200px) {
    .testimonials h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
    }

    .rating {
        justify-content: flex-start;
    }

    .review-text {
        font-size: 1rem;
    }
}

/* Auto Slider Animation for Mobile */
@media (max-width: 768px) {
    @keyframes slideNext {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }

    .testimonial-card.sliding {
        animation: slideNext 0.3s ease-out forwards;
    }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    :root {
        --container-width: 1200px;
    }
}

@media (max-width: 1200px) {
    :root {
        --container-width: 1000px;
    }
}

@media (max-width: 1024px) {
    :root {
        --container-width: 900px;
        --container-padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
        --container-padding: 1rem;
    }
    
    .container,
    .container-fluid {
        max-width: 100%;
        padding: 0 var(--container-padding);
    }
}

.logo-container {
    margin-bottom: 1rem;
    text-align: center;
}

.site-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Documents Section */
.documents-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 6rem var(--container-padding);
    position: relative;
    z-index: 1;
    width: 100%;
}

.documents-section h2 {
    color: #22c55e;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    text-transform: capitalize;
}

.documents-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1e3a8a;
    border-radius: 2px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.document-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #1e3a8a;
}

.document-icon {
    margin-bottom: 1rem;
}

.document-icon i {
    font-size: 2rem;
    color: #1e3a8a;
}

.document-card h3 {
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.documents-note {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    :root {
        --container-width: 1200px;
    }
    .documents-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .documents-section {
        padding: 5rem var(--container-padding);
    }
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .documents-section {
        padding: 4rem var(--container-padding);
    }
    .documents-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .document-card {
        padding: 1.25rem 0.75rem;
    }
    .document-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .document-card {
        padding: 1rem 0.5rem;
    }
    .document-icon i {
        font-size: 1.5rem;
    }
    .document-card h3 {
        font-size: 0.8rem;
    }
    .documents-note {
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }
}

/* Update all section containers to be full width on mobile */
@media (max-width: 1200px) {
    :root {
        --container-width: 100%;
    }
    .container,
    .container-fluid {
        max-width: 100%;
    }
}

/* Loan Details Section */
.loan-details-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    color: white;
}

.loan-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.loan-details-section h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.loan-details-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #22c55e;
    border-radius: 2px;
}

.loan-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.loan-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.loan-detail-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.detail-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.detail-icon i {
    font-size: 2rem;
    color: #fff;
}

.loan-detail-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.detail-value {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 600;
}

.asterisk {
    color: #22c55e;
    font-weight: bold;
    margin-left: 2px;
}

.loan-details-notes {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.note {
    color: #a3a3a3;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.note .asterisk {
    color: #22c55e;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .loan-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .loan-details-section {
        padding: 4rem 1rem;
    }

    .loan-details-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .loan-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .loan-detail-card {
        padding: 1.5rem;
    }

    .note {
        font-size: 0.8rem;
    }
}

/* Eligibility Button Styles */
.eligibility-cta {
    text-align: center;
    margin-top: 4rem;
}

.eligibility-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e4620 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2),
                0 5px 10px rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.eligibility-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: buttonPulse 2s infinite;
    border-radius: 50px;
    pointer-events: none;
}

.eligibility-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #22c55e 0%, #1e3a8a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eligibility-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3),
                0 8px 15px rgba(34, 197, 94, 0.15);
}

.eligibility-button:hover::before {
    opacity: 1;
}

.eligibility-button .button-text,
.eligibility-button i {
    position: relative;
    z-index: 1;
    transform: scale(1) !important;
}

.eligibility-button i {
    transition: transform 0.3s ease;
}

.eligibility-button:hover i {
    transform: translateX(5px) !important;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2),
                    0 5px 10px rgba(34, 197, 94, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3),
                    0 8px 15px rgba(34, 197, 94, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2),
                    0 5px 10px rgba(34, 197, 94, 0.1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .eligibility-cta {
        margin-top: 3rem;
    }

    .eligibility-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
} 