:root {
    --primary: #0A7D8E;
    --primary-dark: #042538;
    --secondary: #5b6af0;
    --dark: #2d3142;
    --light: #f7f9fc;
    --gray: #9ba0b3;
    --secondary: #5b6af0;
    --secondary-dark: #4555d9;
    --success: #4caf50;
    --warning: #ff9800;
    --info: #03a9f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    padding: 0 !important;
    background-color: var(--light);
    color: var(--dark);

}
.logo-container{
    padding: 0.5rem 4rem 0.5rem 2rem;
}
.container {
    /* width: 90%; */
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 1rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 2rem 0; */
    background: linear-gradient(to right, var(--primary-dark),var(--primary));
}


.logo span {
    color: var(--primary);
}

.logo p {
    color: var(--gray);
    padding-left: 47px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
}
.logo-text{
    display: flex;
    align-items: center;
}
.logo-img {
    height: 37px; /* Adjust as needed based on your logo size */
    margin-right: 10px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--accent-color);
}

  /* For mobile responsiveness */
@media (max-width: 576px) {
    .logo-img {
        height: 30px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .logo p {
        padding-left: 37px;
    }
    .logo-text{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-login {
    padding: 0.3rem 1.4rem;
    border: 2px solid var(--light) !important;
    border-color: var(--dark);
    text-decoration: none;
    color: var(--dark);
    background-color: var(--light);
}

.btn-login:hover {
    border: 2px solid var(--light) !important;
    color: #0A7D8E;
    background-color:#e7f2f3;
}

.btn-omfs {
    padding: 0.3rem 1.4rem;
    border: 2px solid var(--light) !important;
    border-color: var(--dark);
    text-decoration: none;
    color: var(--light);
    background-color: transparent;
}

.btn-omfs:hover {
    border: 2px solid var(--light) !important;
    color: #0A7D8E;
    background-color:#e7f2f3;
}

.btn-link {
    padding: 0.3rem 1.4rem;
    border: 2px solid var(--light) !important;
    text-decoration: none;
    color: var(--light);
    background-color: transparent;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background-color: var(--light);
    border: 2px solid var(--light) !important;
    color: var(--dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #fff 50%, var(--light) 50%);
    padding: 5rem 0;
    overflow: hidden;
    .container{
        max-width: 80%;
    }
}
.hero-container{
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 139, 0.1) 0%, rgba(255, 107, 139, 0) 10%),
        radial-gradient(circle at 80% 80%, rgba(91, 106, 240, 0.1) 0%, rgba(91, 106, 240, 0) 15%);
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.hero-headline span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-headline span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(231, 242, 243, 0.5);  
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    .request-demo-btn{
        background-color: var(--primary);
        color: white;
        border: 1px solid transparent;
    }
    .request-demo-btn:hover{
        color: var(--primary);
        background-color: white;
        border: 1px solid var(--primary);
    }
}

.hero-social-proof {
    margin-top: 1.5rem;
}

.social-proof-heading {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.client-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.hero-image-container {
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.hero-image {
    width: 90% !important;
    scale: 1.1;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(45, 49, 66, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(45, 49, 66, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 6;
}

.floating-card-1 {
    top: -75px;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.floating-card-2 {
    bottom: -50px;
    right: 10%;
    animation: float 3s ease-in-out infinite 1.5s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 107, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.card-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

            /* Features Section - Enhanced with hover effects */
            .features {
                padding-bottom: 4rem !important;
            }
    
            .features h2 {
                text-align: center;
                margin-bottom: 3rem;
                font-size: 2.2rem;
                color: var(--dark);
                position: relative;
            }
    
            .features h2:after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 3px;
                background-color: var(--primary);
                border-radius: 2px;
            }
    
            .feature-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }
    
            .feature-card {
                background-color: white;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                position: relative;
                height: 280px;
            }
    
            .feature-card:hover {
                transform: translateY(-1px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            }
    
            .feature-content {
                padding: 2rem;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                transition: transform 0.4s ease, opacity 0.3s ease;
                backface-visibility: hidden;
            }
    
            .feature-hover {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--primary);
                color: white;
                padding: 2rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                opacity: 0;
                transform: translateY(1px);
                transition: opacity 0.4s ease, transform 0.4s ease;
            }
    
            .feature-card:hover .feature-content {
                opacity: 0;
                /* transform: translateY(-5px); */
            }
    
            .feature-card:hover .feature-hover {
                opacity: 1;
                transform: translateY(0);
            }
    
            .feature-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 70px;
                height: 70px;
                border-radius: 50%;
                background-color: rgba(255, 107, 139, 0.1);
                margin-bottom: 1.5rem;
                font-size: 1.8rem;
                color: var(--primary);
                transition: all 0.3s ease;
            }
    
            .feature-card h3 {
                margin-bottom: 1rem;
                color: var(--dark);
                font-size: 1.25rem;
            }
    
            .feature-card p {
                color: var(--gray);
                font-size: 0.95rem;
            }
    
            .feature-hover h3 {
                color: white;
                margin-bottom: 1rem;
                font-size: 1.25rem;
            }
    
            .feature-hover p {
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 1.5rem;
                font-size: 0.95rem;
            }
    
            .learn-more {
                background-color: rgba(255, 255, 255, 0.2);
                color: white;
                border: none;
                padding: 0.7rem 1.5rem;
                border-radius: 5px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-top: auto;
            }
    
            .learn-more:hover {
                background-color: rgba(255, 255, 255, 0.3);
            }
    
            @media (max-width: 768px) {
                .feature-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }
                
                .feature-card {
                    height: auto;
                    min-height: 250px;
                }
            }


            /* Healthcare Services Section */
        .healthcare-services-container{
            background-color: rgba(91, 106, 240, 0.03);
            background-image: 
            radial-gradient(circle at 80% 30%, rgba(255, 107, 139, 0.1) 0%, rgba(255, 107, 139, 0) 30%);
        }
        
        .healthcare-services {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            max-width: 70%;
            margin: auto;
        }



        .healthcare-services h2 {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.2rem;
            color: var(--dark);
        }

        .healthcare-services .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 3rem;

        }

        .service-tab {
            padding: 0.8rem 1.5rem;
            background-color: white;
            border: 1px solid #eee;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .service-tab.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(255, 107, 139, 0.2);
        }

        .service-tab:hover:not(.active) {
            background-color: #f8f8f8;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .service-tab-icon {
            margin-right: 0.5rem;
            font-size: 1.1rem;
        }

        .service-content-wrapper {
            position: relative;
            min-height: 350px;
        }

        .service-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            transform: translateY(20px);
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .service-content.active {
            opacity: 1;
            transform: translateY(0);
            position: relative;
            pointer-events: all;
        }

        .service-info {
            flex: 1;
        }

        .service-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
            color: var(--dark);
        }

        .service-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }

        .service-description {
            color: var(--gray);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .service-features {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .feature-icon2 {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: rgba(91, 106, 240, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 0.8rem;
        }

        .service-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .service-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(45, 49, 66, 0.1);
            transition: all 0.5s ease;
        }

        .service-button {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            margin-top: 2rem;
            transition: all 0.3s ease;
            gap: 0.5rem;
            cursor: pointer;
        }

        .service-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .service-button-icon {
            font-size: 1.1rem;
        }

        @media (max-width: 992px) {
            .service-content {
                flex-direction: column;
                gap: 2rem;
            }

            .service-info, .service-image {
                flex: none;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .services-tabs {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .service-tab {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .service-content-wrapper {
                min-height: 500px;
            }
        }

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

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 139, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 107, 139, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 139, 0);
            }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

            
   
        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 400px;
            height: 400px;
            background-color: rgba(255, 107, 139, 0.05);
            border-radius: 50%;
            z-index: -1;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -200px;
            width: 400px;
            height: 400px;
            background-color: rgba(91, 106, 240, 0.05);
            border-radius: 50%;
            z-index: -1;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            justify-content: space-between;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, var(--primary), #ff8fa3);
            color: white;
            padding: 3rem;
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.1;
            z-index: -1;
        }

        .contact-info-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-info-header p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }

        .contact-detail h4 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }

        .contact-detail p, .contact-detail a {
            color: white;
            opacity: 0.9;
            text-decoration: none;
        }

        .contact-social {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            
            a{
                color: white
            }
        }

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

        }

        .social-icon:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .contact-form {
            flex: 1.5;
            padding: 3rem;
            min-width: 350px;
        }

        .form-header {
            margin-bottom: 2rem;
        }

        .form-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

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

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #eee;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 139, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .privacy-text {
            color: var(--gray);
            font-size: 0.9rem;
            flex: 1;
            margin-right: 1rem;
        }

        .privacy-text a {
            color: var(--primary);
            text-decoration: none;
        }

        .privacy-text a:hover {
            text-decoration: underline;
        }

        .submit-button {
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .submit-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .submit-button-icon {
            transition: transform 0.3s ease;
        }

        .submit-button:hover .submit-button-icon {
            transform: translateX(3px);
        }

        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info {
                width: 100%;
                min-height: auto;
                padding: 2rem;
            }
            
            .contact-form {
                width: 100%;
                padding: 2rem;
            }
        }

        /* Form validation styles */
        .form-group .error-message {
            color: #ff6b6b;
            font-size: 0.8rem;
            margin-top: 0.3rem;
            display: none;
        }
        
        /* Only show validation errors after user interaction */
        .form-group input.touched:invalid,
        .form-group textarea.touched:invalid {
            border-color: #ff6b6b;
        }

        .form-group input.touched:invalid + .error-message,
        .form-group textarea.touched:invalid + .error-message {
            display: block;
        }

        /* Success message */
        .success-message {
            display: none;
            background-color: #e3fcef;
            color: #00a86b;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            text-align: center;
        }

        .success-message.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

            /* Enhanced CTA Section */
            .cta {
                padding: 4rem 3rem ;
                background: linear-gradient(135deg, var(--primary), #ff8fa3);
                border-radius: 16px;
                text-align: center;
                position: relative;
                overflow: hidden;
                margin: 4rem auto !important;
                box-shadow: 0 15px 30px rgba(255, 107, 139, 0.15);
                z-index: 1;
            }
    
            /* Decorative elements */
            .cta::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
                z-index: -1;
            }
    
            .cta::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
                opacity: 0.05;
                z-index: -1;
            }
    
            .cta-content {
                max-width: 800px;
                margin: 0 auto;
                position: relative;
            }
    
            .cta h2 {
                color: white;
                font-size: 2.5rem;
                margin-bottom: 1.2rem;
                font-weight: 700;
                line-height: 1.2;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }
    
            .cta p {
                color: rgba(255, 255, 255, 0.9);
                font-size: 1.2rem;
                margin-bottom: 2.5rem;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
    
            /* Stats section styling removed */
    
            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 1rem;
                flex-wrap: wrap;
            }

            .btn-icon {
                transition: transform 0.3s ease;
            }
    
            .btn:hover .btn-icon {
                transform: translateX(3px);
            }
    
            /* Floating elements */
            .floating-shape {
                position: absolute;
                opacity: 0.25;
                z-index: -1;
            }
    
            .shape-1 {
                top: 20%;
                left: 5%;
                width: 60px;
                height: 60px;
                border-radius: 12px;
                background: white;
                transform: rotate(45deg);
                animation: float 6s ease-in-out infinite;
            }
    
            .shape-2 {
                top: 60%;
                right: 5%;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: white;
                animation: float 8s ease-in-out infinite 1s;
            }
    
            .shape-3 {
                bottom: 15%;
                left: 10%;
                width: 40px;
                height: 40px;
                border-radius: 8px;
                background: white;
                animation: float 5s ease-in-out infinite 2s;
            }
    
            @keyframes float {
                0% {
                    transform: translateY(0) rotate(0deg);
                }
                50% {
                    transform: translateY(-20px) rotate(5deg);
                }
                100% {
                    transform: translateY(0) rotate(0deg);
                }
            }
    
            @media (max-width: 768px) {
                .cta {
                    padding: 3rem 1.5rem;
                }
                
                .cta h2 {
                    font-size: 2rem;
                }
                
                .cta p {
                    font-size: 1rem;
                }
                
                .cta-stats {
                    gap: 2rem;
                }
            }
   /* Report Generation Section */
   .report-generation-section {
    padding: 5rem 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

/* Background design elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.bg-circle-1 {
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--primary);
}

.bg-circle-2 {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(-45deg, #000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000 75%), 
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Report Categories */
.report-showcase {
    position: relative;
    margin-bottom: 5rem;
}

.report-category {
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(91, 106, 240, 0.25);
}

.category-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
}

/* Report Buttons - Glass Morphism Style */
.report-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.report-button-wrapper {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 10px;
    perspective: 1000px; /* For 3D flip effect */
}

.report-button-wrapper:hover {
    transform: translateY(-5px);
}

.report-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-width: 270px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    flex-grow: 1;
    position: relative;
    width: 270px;
    height: 200px;
}

.report-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 106, 240, 0.05), rgba(255, 107, 139, 0.05));
    z-index: -1;
}

.report-button:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-front{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
}

.card-back {
    display: none; /* Initially hide the back side */
    background: white;
}

.card-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    padding: 0px 10px;
    cursor: pointer;
}
        
.card-text {
    margin-top: 10px;
    text-align: center;
    color: var(--dark);
    font-size: 0.9rem;
    overflow-wrap: break-word; /* Handle long text */
    word-wrap: break-word; /* Handle long text */
    white-space: normal; /* Allow text to wrap */
    padding: 0.2rem 1rem;
}
.button-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.button-icon svg {
    width: 24px;
    height: 24px;
}

.button-primary .button-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    box-shadow: 0 4px 10px rgba(91, 106, 240, 0.25);
}

.button-secondary .button-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 10px rgba(255, 107, 139, 0.25);
}

.button-success .button-icon {
    background: linear-gradient(135deg, var(--success), #2e7d32);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.25);
}

.button-warning .button-icon {
    background: linear-gradient(135deg, var(--warning), #f57c00);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.25);
}

.button-info .button-icon {
    background: linear-gradient(135deg, var(--info), #0277bd);
    box-shadow: 0 4px 10px rgba(3, 169, 244, 0.25);
}

.button-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.button-desc {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
}

/* Featured Report Preview */
.report-preview {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}

.report-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.preview-content {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.preview-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.preview-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.preview-description {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.preview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.preview-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(91, 106, 240, 0.1), rgba(255, 107, 139, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.feature-text h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.preview-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.report-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.report-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* CTA Section */
.report-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(91, 106, 240, 0.05), rgba(255, 107, 139, 0.05));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.report-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(91, 106, 240, 0.25);
}

.cta-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(91, 106, 240, 0.35);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cta-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .report-preview {
        padding: 2rem;
    }
    
    .preview-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .report-buttons {
        justify-content: center;
    }
    
    .preview-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

.report-buttons-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.report-buttons {
    white-space: nowrap;
    animation: scrollAnimation linear infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(70%);
    }
    100% {
        transform: translateX(-60%);
    }
}


/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gray);
}

/* Modal */
/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    overflow: auto;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 80px auto;
    max-width: 420px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 0.4s ease;
}

/* Header Styles */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    /* border-bottom: 1px solid #f0f0f0; */
}

.modal-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.modal-brand h3 span {
    color: #FF6B6B;
}

.modal-logo {
    height: 32px;
    width: auto;
}

.close-btn {
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    color: #666;
}

.close-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Welcome Section */
.modal-welcome {
    text-align: center;
    padding: 20px 20px 10px;
}

.modal-welcome h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.tagline {
    color: #666;
    font-size: 14px;
    margin: 0 0 15px;
}

/* Form Styles */
.login-form, .otp-form {
    padding: 0 25px 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #444;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

input[type="text"], 
input[type="password"] {
    width: 100%;
    /* padding: 12px 12px 12px 40px; */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #f9f9f9;
}

input[type="text"]:focus, 
input[type="password"]:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background-color: #fff;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    cursor: pointer;
}

.remember-me input {
    margin: 0;
}

.forgot-password {
    color: #FF6B6B;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.form-actions {
    margin-top: 25px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #0A7D8E;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #042538;
}

.secure-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #777;
    font-size: 13px;
}

/* OTP Specific Styles */
.otp-message {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.otp-message svg {
    min-width: 24px;
    color: #042538;
    margin-right: 15px;
}

.otp-message p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.otp-input {
    width: 168px !important;
    max-width: 168px !important;
    text-align: center !important;
    letter-spacing: 4px !important;
    font-size: 24px !important;
    font-family: 'Roboto Mono', 'Menlo', 'Consolas', monospace !important;
    padding: 12px 0 !important;
    border: 1.5px solid var(--primary-color, #042538) !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    margin: 0 auto !important;
    display: block !important;
    box-sizing: border-box !important;
}

.otp-input:focus {
    outline: none;
    border-color: #042538;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background-color: #fff;
}

.otp-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.resend-code {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.resend-code a {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 500;
}

.resend-code a:hover {
    text-decoration: underline;
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Adjustments */
@media (max-width: 480px) {
    .modal-content {
        margin: 60px auto;
        width: 95%;
    }
    
    .modal-welcome h2 {
        font-size: 22px;
    }
    
    .otp-input {
        max-width: 180px;
        font-size: 20px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

.hero-image {
    width: 100%;
    scale: 1.1;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(45, 49, 66, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}


.white-btn{
    background-color: white !important;
    color: var(--dark);
    border: 1px solid white;
}
.white-btn:hover{
    background-color: var(--primary) !important;
    border: 1px solid white !important;
    color: white !important;
}

/* Forgot Password Specific Styles */
.reset-form,
.otp-form,
.password-form {
    padding: 0 25px 25px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.form-footer a {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* OTP Input Styles */
.otp-input-container {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.otp-input {
    width: 100%;
    max-width: 220px;
    text-align: center;
    letter-spacing: 8px;
    font-size: 24px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.otp-input:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background-color: #fff;
}

.otp-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.resend-code {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.resend-code a {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 500;
}

.resend-code a:hover {
    text-decoration: underline;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.strength-meter {
    display: flex;
    gap: 5px;
    flex: 1;
}

.strength-segment {
    height: 4px;
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.strength-segment.weak {
    background-color: #ff5252;
}

.strength-segment.fair {
    background-color: #ffa726;
}

.strength-segment.good {
    background-color: #66bb6a;
}

.strength-segment.strong {
    background-color: #43a047;
}

.strength-text {
    font-size: 12px;
    color: #777;
    margin-left: 10px;
    min-width: 50px;
}

/* Password Requirements */
.password-requirements {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.password-requirements p {
    font-size: 14px;
    margin: 0 0 8px;
    color: #555;
}

.password-requirements ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.password-requirements li {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    position: relative;
}

.password-requirements li::before {
    content: "✕";
    display: inline-block;
    color: #ccc;
    position: absolute;
    left: -18px;
}

.password-requirements li.passed {
    color: #43a047;
}

.password-requirements li.passed::before {
    content: "✓";
    color: #43a047;
}

/* Error Message */
.error-message {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    border-left: 3px solid #d32f2f;
}

/* Success State */
.success-state {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-state.show {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #e6f7ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    color: #28a745;
    width: 35px;
    height: 35px;
}

.success-state h3 {
    color: #333;
    margin-bottom: 10px;
}

.success-state p {
    color: #666;
    margin-bottom: 25px;
}

/* Toast Notification */
#toast-notification {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 2000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

#toast-notification.show {
    visibility: visible;
    opacity: 1;
}

#reset-email{
    padding-left: 2rem;
}

/* Modern Revenue Cycle Management Section */
.revenue-cycle-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.revenue-cycle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(91, 106, 240, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 139, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Hero Section */
.rcm-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.rcm-hero-content {
    flex: 1;
}

.rcm-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rcm-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 500px;
}

/* Visual Dashboard */
.rcm-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.rcm-dashboard {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 300px;
}

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

.dashboard-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--success);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-content {
    height: 150px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-placeholder {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

/* Process Flow */
.rcm-process {
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.process-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 3rem;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

/* Benefits Grid */
.rcm-benefits {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px 16px 0 0;
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(91, 106, 240, 0.1), rgba(255, 107, 139, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .rcm-hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .rcm-title {
        font-size: 2.2rem;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* Cycle Visualization */
.cycle-visualization {
    position: relative;
    width: 450px;
    height: 450px;
    flex-shrink: 0;
}

.cycle-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 15px solid rgba(91, 106, 240, 0.1);
    box-shadow: 0 0 30px rgba(91, 106, 240, 0.1) inset;
}

.cycle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cycle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(91, 106, 240, 0.3);
}

.cycle-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

/* Cycle Stages */
.cycle-stage {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stage-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 2px 6px rgba(255, 107, 139, 0.3);
}

.stage-content {
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.stage-content:hover {
    transform: scale(1.05);
}

.stage-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(91, 106, 240, 0.1), rgba(255, 107, 139, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.stage-content h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
}

/* Stage Positions */
.stage-1 {
    top: 10%;
    left: 0;
}

.stage-2 {
    top: 25%;
    right: 0;
}

.stage-3 {
    top: 40%;
    left: -10%;
}

.stage-4 {
    bottom: 25%;
    left: -8%;
}

.stage-5 {
    bottom: 5%;
    left: 0;
}

.stage-6 {
    top: 70%;
    right: -10%;
}

/* Revenue Benefits */
.revenue-benefits {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-image-slice: 1;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(91, 106, 240, 0.1), rgba(255, 107, 139, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Revenue CTA */
.revenue-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to right, var(--primary), var(--secondary));
    border-image-slice: 1;
}

.revenue-cta h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* Animation for cycle stages (subtle hover effect only) */
.cycle-stage .stage-content:hover .stage-icon {
    animation: pulse 1.5s infinite;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .cycle-visualization {
        width: 400px;
        height: 400px;
    }
    
    .stage-content {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .cycle-visualization {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .stage-content {
        min-width: 160px;
        padding: 0.5rem 0.75rem;
    }
    
    .stage-icon {
        width: 30px;
        height: 30px;
    }
    
    .stage-content h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .cycle-visualization {
        width: 300px;
        height: 300px;
    }
    
    .stage-content {
        min-width: 140px;
    }
}

  /* Flash Messages Styling */
.messages {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
}

.message {
    position: relative;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    opacity: 0;
    animation: slideIn 0.3s forwards, fadeOut 0.5s forwards 4s;
    overflow: hidden;
}

.message::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    transform-origin: left;
    animation: progressBar 4s linear forwards;
}

.message.success {
    background: var(--success);
}

.message.error {
    background: var(--primary-dark);
}

.message.warning {
    background: var(--warning);
    color: #333;
}

.message.info {
    background: var(--info);
}

.message.debug {
    background: var(--gray);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes progressBar {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Close button for messages - removed the default modal close */
.messages .close {
    display: none; /* Hide the modal close button in messages */
}

.alert .alert-close {
    position: absolute;
    top: 0px;
    right: 5px;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    font-size: 16px;
    line-height: 1;
    padding: 0 4px;
}

.alert .close-message:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}
.message-here{
  padding-right:0.5rem;
}

/* --- OTP Input: Single Source of Truth, Always Centered --- */
.otp-input-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 25px 0 !important;
    width: 100% !important;
}
.otp-input {
    width: 168px !important;
    max-width: 168px !important;
    min-width: 168px !important;
    text-align: center !important;
    letter-spacing: 4px !important;
    font-size: 24px !important;
    font-family: 'Roboto Mono', 'Menlo', 'Consolas', monospace !important;
    padding: 12px 0 !important;
    border: 1.5px solid #FF6B6B !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    margin: 0 auto !important;
    display: block !important;
    box-sizing: border-box !important;
    outline: none !important;
}
.otp-input:focus {
    border-color: #FF6B6B !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1) !important;
    background-color: #fff !important;
}

@media (max-width: 480px) {
    .otp-input {
        max-width: 140px !important;
        min-width: 140px !important;
        font-size: 20px !important;
    }
}

/* === OTP Input: Single Source of Truth, Always Centered (DO NOT DUPLICATE) === */
#otpModal input.otp-input, 
.otp-input-container input.otp-input, 
input.otp-input {
    width: 120px !important;
    max-width: 120px !important;
    min-width: 120px !important;
    text-align: center !important;
    letter-spacing: 2px !important;
    font-size: 24px !important;
    font-family: monospace !important;
    padding: 12px 0 !important;
    border: 1.5px solid #FF6B6B !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    margin: 0 auto !important;
    display: block !important;
    box-sizing: border-box !important;
    outline: none !important;
}
#otpModal input.otp-input:focus {
    border-color: #FF6B6B !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1) !important;
    background-color: #fff !important;
}
@media (max-width: 480px) {
    #otpModal input.otp-input {
        max-width: 90px !important;
        min-width: 90px !important;
        font-size: 20px !important;
    }
}

/* OTP Multi-Box Styling */
.otp-boxes {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}
.otp-digit {
  width: 40px;
  height: 48px;
  font-size: 2rem;
  text-align: center;
  border: 1.5px solid #FF6B6B;
  border-radius: 8px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Consolas', 'Courier New', monospace;
  color: #2d3142 !important;
}
.otp-digit:focus {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}
@media (max-width: 480px) {
  .otp-digit {
    width: 32px;
    height: 40px;
    font-size: 1.3rem;
  }
}

.reset-btn{
    text-decoration: none;
    color: var(--primary-dark);
}
.reset-btn:hover{
    color: var(--secondary-dark);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    z-index: 1;
    color: #6b7280;
}

.input-with-icon input {
    padding-left: 40px !important; /* Make room for the icon */
}

@media (max-width: 768px) {
    .header-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .btn-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn-link {
        font-size: 0.75rem;
        padding: 0.15rem 0.6rem;
    }
}   