



    header.new-header .container .flex-box.nav-header ul.top-nav li.for-students span.click.active {
    background: transparent !important;
}
    header.new-header .container .flex-box.nav-header ul.top-nav li.for-parents span.click.active {
        background: transparent !important;
    }
        .center-container {
            display: flex;
            flex-direction: column; /* Stack input and button */
            align-items: center; /* Center horizontally */
            justify-content: center; /* Center vertically */
             /* Adjust height as needed */
        }
           .subscription-box {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .newsletter-value {
        width: 100%;
        min-width: 200px;
        min-height: 40px;
        resize: both;
        padding: 8px;
        font-size: 14px;
    }

    .btn-orange {
        background-color: orange;
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .btn-orange:hover {
        background-color: darkorange;
    }
        .modal1 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content1 {
    background-color: white;
    width: 60%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close-btn1 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    border: none;
    background: none;
}
        .toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 17px;
}

.toast.show {
    visibility: visible;
    animation: fadeIn 0.5s, fadeOut 0.5s 3s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}
.blur-background {
            filter: blur(5px);
            pointer-events: none;
        }

        /* Loader Popup (Hidden by Default) */
        .loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: none; /* Hidden initially */
            align-items: center;
            justify-content: center;
        }

        .loader-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }

        /* Dots Animation */
        .dots span {
            display: inline-block;
            width: 8px;
            height: 8px;
            margin: 0 2px;
            background: #007bff;
            border-radius: 50%;
            animation: bounce 1.5s infinite ease-in-out;
        }

        .dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .dots span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .dots span:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

    .nav-item.dropdown {
        position: relative;
        display: inline-block;
    }

    .nav-profile img {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nav-profile:hover img,
    .nav-profile:focus img {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
    }

    .nav-profile:focus {
        outline: none !important;
        background-color: transparent !important;
    }

    .dropdown-menu.profile-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        border-radius: 12px;
        padding: 12px 0;
        background-color: #E8F5F2;
        opacity: 0;
        transform: scale(0.95) translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
        z-index: 1000;
    }

    .dropdown-menu.profile-dropdown.show {
        opacity: 1;
        transform: scale(1) translateY(0);
        pointer-events: auto;
        animation: dropdownBounceIn 0.5s ease forwards;
    }

    @keyframes dropdownBounceIn {
        0% {
            opacity: 0;
            transform: scale(0.9) translateY(20px);
        }
        60% {
            opacity: 1;
            transform: scale(1.05) translateY(-4px);
        }
        100% {
            transform: scale(1) translateY(0);
        }
    }

    .dropdown-header h6 {
        font-weight: bold;
        margin-bottom: 0;
        animation: fadeSlideIn 0.5s ease forwards;
        padding: 0 16px;
    }

    .dropdown-header p {
        font-size: 0.8rem;
        color: #6c757d;
        margin-bottom: 0;
        animation: fadeSlideIn 0.5s ease forwards;
        animation-delay: 0.1s;
        padding: 0 16px;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        text-decoration: none;
        color: black;
        background-color: transparent;
        opacity: 0;
        transform: translateX(-10px);
        animation: fadeSlideIn 0.5s ease forwards;
        transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .dropdown-item:nth-child(5) {
        animation-delay: 0.3s;
    }

    .dropdown-item:nth-child(7) {
        animation-delay: 0.4s;
    }

    .dropdown-item:nth-child(9) {
        animation-delay: 0.5s;
    }

    .dropdown-item:nth-child(11) {
        animation-delay: 0.6s;
    }

    .dropdown-item:hover {
        background-color: blue !important;
        color: white !important;
        transform: translateX(6px);
        box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
        text-decoration: none !important;
    }

    .dropdown-item:hover i {
        transform: rotate(5deg);
        color: white !important;
    }

    .dropdown-item i {
        margin-right: 10px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    @keyframes fadeSlideIn {
        0% {
            opacity: 0;
            transform: translateX(-10px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    hr {
        margin: 8px 16px;
        border: none;
        border-top: 1px solid #eee;
    }

                    .carousel-img {
                        height: 520px; /* Fixed height */
                        background-size: cover; /* Uniform image display */
                    }

                    /* Responsive Adjustments */
                    @media (max-width: 768px) {
                        .carousel-img {
                            height: 250px;
                        }
                    }

        .cta-button {
    display: inline-block;
    background-color: rgb(68, 227, 100);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

