body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    font-family: 'Raleway', sans-serif;
}

.left-side {
    width: 50%;
    background: linear-gradient(135deg, #002B5B, #003D6B);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    overflow-y: auto; /* Enable vertical scrolling for overflow */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #ffa500 #003D6B; /* Orange thumb, Dark Blue track */
}

/* For Webkit Browsers (Chrome, Edge, Safari) */
.left-side::-webkit-scrollbar {
    width: 8px; /* Adjust the scrollbar width */
}

.left-side::-webkit-scrollbar-thumb {
    background-color: #ffa500; /* Orange thumb */
    border-radius: 10px; /* Rounded thumb */
    transition: background-color 0.3s ease;
}

.left-side::-webkit-scrollbar-thumb:hover {
    background-color: #ff8500; /* Darker orange on hover */
}

.left-side::-webkit-scrollbar-track {
    background-color: #003D6B; /* Dark Blue track */
    border-radius: 10px; /* Match thumb radius for consistency */
}

.right-side {
    width: 50%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Burger Menu */
.burger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #ffa500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navigation Panel */
.nav-container {
    position: absolute;
    top: 0;
    right: -300px; /* Start hidden */
    height: 100%;
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-container.show {
    right: 0; /* Show on toggle */
}

.nav-container a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-container a:hover {
    background: #ffa500;
    color: #002B5B;
}

.dynamic-content {
    margin-top: 80px;
}

.dynamic-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.dynamic-content p {
    line-height: 1.8;
    font-size: 1rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: none;
}

.overlay.show {
    display: block;
}

.logo-right {
    margin: 25px auto; 
}

/* Login Form */
.login-form {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    text-align: center;
}

.login-form h3 {
    margin-bottom: 25px;
    color: #005C8A;
    font-weight: 700;
    font-size: 1.8rem;
}

.login-form .divider {
    width: 50%;
    height: 2px;
    background: #ffa500;
    margin: 20px auto;
    border-radius: 10px;
}

.login-form .form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    text-align: left;
}

.login-form input {
    height: 45px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 0 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-form input:focus {
    border-color: #ffa500;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
    outline: none;
}

.login-form .btn {
    background-color: #ffa500;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-form .btn:hover {
    background-color: #ff8500;
    box-shadow: 0 5px 10px rgba(255, 133, 0, 0.5);
}

.login-form .forgot-password {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #005C8A;
    text-decoration: none;
    display: inline-block;
}

.login-form .forgot-password:hover {
    color: #ffa500;
    text-decoration: underline;
}

.footer {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;    /* Center vertically */
    flex-direction: column; /* Stack content in a column for better spacing */
    text-align: center;
    width: 50%;
    padding: 20px;
    background: #003D6B;
    color: #fff;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.footer p {
    margin: 5px 0; /* Add small vertical margins for spacing */
}

.footer a {
    color: #ffa500;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    color: #ff8500;
}

.modal-footer .btn-primary:hover,
.modal-footer .btn-secondary:hover {
    background-color: #003D6B;
    color: #ffa500;
}


@media (max-width: 768px) {
    body {
        flex-direction: column;
        height: auto;
    }

    .left-side,
    .right-side {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .left-side {
        text-align: center;
        overflow-y: auto; /* Ensure scrolling for left side on mobile */
    }

    .right-side {
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .login-form {
        width: 90%;
        max-width: none;
        padding: 20px;
        margin: 20px auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .login-form h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .login-form .divider {
        width: 40%;
        height: 1px;
    }

    .login-form input {
        height: 40px;
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .login-form .btn {
        font-size: 1rem;
        padding: 10px 0;
    }

    .footer {
        width: 100%; /* Make footer span the full width */
        position: relative; /* Ensure it stays in flow */
        bottom: 0; /* Keep at the bottom of the content */
        text-align: center;
        padding: 10px 15px; /* Smaller padding for mobile */
        font-size: 0.8rem; /* Smaller font size */
    }

}

.whatsapp-container {
    position: fixed;
    bottom: 10px; /* Adjusted spacing from the bottom */
    right: 20px; /* Spaced from the right */
    display: flex;
    align-items: center;
    z-index: 1000; /* Ensures it stays on top */
    gap: 10px; /* Space between the text and the button */
}

.whatsapp-label {
    padding: 8px 12px; /* Padding around the text */
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease; /* Smooth fade in/out */
}

.whatsapp-text {
    font-size: 14px; /* Text size for readability */
    font-weight: bolder; /* Medium weight for balance */
    color: #ffa500; /* Brand color */
    font-family: 'Raleway', sans-serif; /* Cohesive font family */
}

.whatsapp-float {
    background: linear-gradient(135deg, #22c55e, #16a34a); /* Gradient button */
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Circular button */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    border: none;
}

.whatsapp-float:hover {
    transform: scale(1.15); /* Slight hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    font-size: 28px; /* Icon size */
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 15px; /* Adjust bottom spacing for mobile */
        right: 10px; /* Adjust right spacing for mobile */
        gap: 5px; /* Reduce gap on smaller screens */
    }

    .whatsapp-label {
        display: none; /* Hide label text on smaller screens */
    }

    .whatsapp-float {
        width: 50px; /* Smaller button for mobile */
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 24px; /* Adjust icon size */
    }
}


.forgot-password-form {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    text-align: center;
}

.forgot-password-form h3 {
    margin-bottom: 25px;
    color: #005C8A;
    font-weight: 700;
    font-size: 1.8rem;
}

.forgot-password-form .divider {
    width: 50%;
    height: 2px;
    background: #ffa500;
    margin: 20px auto;
    border-radius: 10px;
}

.forgot-password-form .form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

.forgot-password-form input {
    height: 45px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 0 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.forgot-password-form input:focus {
    border-color: #ffa500;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
    outline: none;
}

.forgot-password-form .btn {
    background-color: #ffa500;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.forgot-password-form .btn:hover {
    background-color: #ff8500;
    box-shadow: 0 5px 10px rgba(255, 133, 0, 0.5);
}

