/* Highlight Notification Banner */
.highlight-notification-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    width: 100%;
    z-index: 999;
}

.highlight-notification-banner p {
    font-size: 0.85rem;
    line-height: 1.3;
}

.highlight-notification-banner .btn-light {
    transition: all 0.3s ease;
}

.highlight-notification-banner .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.highlight-notification-banner .btn-close {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.highlight-notification-banner .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Notification Card */
.mobile-highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.mobile-highlight-card .btn-light {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-highlight-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-highlight-card .btn-outline-light {
    transition: all 0.3s ease;
    border-width: 2px;
}

.mobile-highlight-card .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .highlight-notification-banner {
        bottom: 0 !important;
        top: auto !important;
        position: fixed;
        left: 0;
        right: 0;
        box-shadow: 0 -6px 20px rgba(102, 126, 234, 0.4);
        z-index: 9999;
    }

    .highlight-notification-banner .container-fluid {
        padding: 0.75rem 1rem !important;
    }

    /* Main flex container - stack vertically */
    .highlight-notification-banner>.container-fluid>.d-flex {
        flex-direction: column !important;
        gap: 0 !important;
        text-align: center;
        align-items: center !important;
    }

    /* Left icon - show at top as banner icon */
    .highlight-notification-banner .d-flex.align-items-center.gap-2 {
        margin-bottom: 0.5rem;
        order: 1;
    }

    .highlight-notification-banner .fa-bullhorn {
        font-size: 1.5rem !important;
        animation: pulse 2s infinite;
    }

    /* Message text - centered and prominent */
    .highlight-notification-banner .flex-grow-1 {
        order: 2;
        margin: 0 0 0.75rem 0 !important;
        width: 100%;
    }

    .highlight-notification-banner p {
        font-size: 0.8rem !important;
        margin-bottom: 0;
        line-height: 1.4;
        font-weight: 600 !important;
    }

    .highlight-notification-banner .fa-sparkles {
        font-size: 1.1rem !important;
    }

    /* Button and close container - full width layout */
    .highlight-notification-banner .d-flex.align-items-center.gap-3 {
        order: 3;
        width: 100%;
        flex-direction: row !important;
        gap: 0.75rem !important;
        justify-content: center;
    }

    /* View button - make it prominent */
    .highlight-notification-banner .btn-light {
        flex: 1;
        max-width: 180px;
        font-size: 0.9rem !important;
        padding: 0.5rem 1.5rem !important;
        font-weight: 700 !important;
        border-radius: 8px !important;
        background: white !important;
        color: #667eea !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }

    .highlight-notification-banner .btn-light:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
    }

    .highlight-notification-banner .btn-light i {
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }

    /* Close button - position absolute in top right */
    .highlight-notification-banner .btn-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.5rem;
        opacity: 1;
        padding: 0.65rem;
        margin: 0;
        filter: brightness(0) invert(1);
    }
}

/* Pulse animation for icon */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

body {
    background: #f6fafb !important;
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}

@media print {
    body::before {
        content: "";
        position: fixed;
        top: 50%;
        left: 50%;
        width: 60%;
        height: 60%;
        background: url("/frontend/image/logo-black.png") no-repeat center center;
        background-size: contain;
        opacity: 0.06;
        transform: translate(-50%, -50%);
        z-index: 0;
        pointer-events: none;
    }
}

.bg-success-custom {
    background: rgb(182, 233, 251) !important;
}

/* Basic Styles for the Coupon Form */
.coupon-form {
    max-width: 500px;
    margin: 10px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Input and Button Group Styling */
.coupon-input-group {
    display: block;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 15px; */
}

/* Coupon Input Field Styling */
.coupon-input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.coupon-input:focus {
    border-color: #1f1f1f;
}

/* Apply Button Styling */
.apply-button {
    padding: 10px 20px;
    background-color: #1f1f1f;
    color: white;
    border: none;
    /* border-radius: 5px; */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.apply-button:hover {
    background-color: #1f1f1f;
}

/* Error Message Styling */
.error-message {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none;
    /* Initially hidden */
}


/* WhatsApp Icon Wrapper */
.whatsapp-icon-wrapper {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 70px;
    height: 70px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse Ring Animation */
.whatsapp-pulse-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.whatsapp-pulse-ring-delayed {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite 0.5s;
}

/* WhatsApp Icon Link */
.whatsapp-icon-link {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappFloat 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-icon-link:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #1EBE5D 0%, #25D366 100%);
}

.whatsapp-icon-link i {
    font-size: 32px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-icon-link:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Float Animation */
@keyframes whatsappFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(0);
    }
}

/* Social Icons Container */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 24px;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

/* Facebook */
.facebook {
    background: #1877F2;
}

.facebook:hover {
    background: #145DBF;
}

/* Telegram */
.telegram {
    background: #0088CC;
}

.telegram:hover {
    background: #0077B5;
}

/* Instagram */
.instagram {
    background: linear-gradient(45deg, #FCAF45, #E1306C, #C13584, #833AB4);
}

.instagram:hover {
    opacity: 0.8;
}

/* WhatsApp */
.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    background: #1EBE5D;
}

/* YouTube */
.youtube {
    background: #FF0000;
}

.youtube:hover {
    background: #CC0000;
}

.forward-icon {
    display: none;
}

@media (min-width: 992px) {

    /* Desktop View */
    .popular-exams .col-md-3 {
        width: 20%;
        /* 6 columns in a row */
    }
}

@media (max-width: 768px) {

    /* Mobile View */
    .popular-exams .col-md-3 {
        width: 50%;
        /* 2 columns in a row */
    }

    .forward-icon {
        margin: auto;
        width: 30px;
        height: 30px;
        border-radius: 100%;
        /* background: #0dcaf0; */
        border: 2px solid #fd6c19;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

/* Scale Animation */
/* @keyframes scaleUpDown {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
} */

/* Floating Animation */
/* @keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
} */

@keyframes vibrate {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

#chatToggleBtn.animate-vibrate {
    animation: vibrate 0.4s ease-in-out;
}



#chatToggleBtn {
    position: fixed;
    bottom: 60px;
    right: 35px;
    text-align: center;
}



.discussion-popup {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 350px;
    max-height: 90vh;
    z-index: 1040;
    display: none;
    transition: all 0.3s ease-in-out;
}

.chat-bubble {
    background-color: #eaf4ff;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
    align-items: flex-start;
}

.chat-bubble:hover {
    background-color: #d9edff;
}

.avatar-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.avatar-placeholder {
    font-size: 18px;
}



@media (max-width: 768px) {
    .discussion-popup {
        width: 95%;
        right: 2.5%;
        bottom: 120px;
    }
}



/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 3;
}

.whatsapp-tooltip-text {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
}

.whatsapp-tooltip-arrow {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #25D366;
}

/* Tooltip Hover */
.whatsapp-icon-wrapper:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-icon-wrapper {
        bottom: 20px;
        right: 15px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-pulse-ring,
    .whatsapp-pulse-ring-delayed {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon-link {
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon-link i {
        font-size: 28px;
    }

    .whatsapp-tooltip {
        right: 70px;
    }

    .whatsapp-tooltip-text {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}



#dynamicText {
    transition: all 1s ease;
    /* Smooth transition for color, scale and font size */
    font-size: 16px;
}


/* Full Screen Mobile Menu Styles */
.fullscreen-mobile-menu {
    background: linear-gradient(135deg, rgba(82, 189, 255, 0.98) 0%, rgba(98, 124, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
}

.hover-scale {
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure Toggle is visible on mobile only */
@media (max-width: 991px) {
    #navToggle {
        display: block !important;
    }
}

#navToggle {
    display: none !important;
}

a {
    text-decoration: none !important;
}

.h1 {
    font-size: 4rem !important;
}

.bg-light-custom {
    background: #edfbfd;
}

.about {
    padding: 40px 0px;

}

.custom-color {
    color: rgb(253, 108, 25);
}

.custom-p {
    padding: 80px 0px;
}

.slider-wrapper {
    position: relative;
    padding-bottom: 50px;
    /* space for buttons */
}

.slider-btn-prev,
.slider-btn-next {
    position: absolute;
    bottom: -20px;
    transform: none;
    z-index: 1;
}

.slider-btn-prev,
.slider-btn-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: none;
    border: 3px solid #fd6c19;
    color: #fd6c19;
    font-size: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn-prev i,
.slider-btn-next i {
    transition: all .5s;
}

.slider-btn-prev:hover i,
.slider-btn-next:hover i {
    font-size: 25px;
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
}

.slider-btn-prev {
    left: 50%;
    transform: translateX(-60px);
    /* move slightly left */
}

.slider-btn-next {
    left: 50%;
    transform: translateX(10px);
    /* move slightly right */
}

.card-slider {
    scroll-behavior: smooth;
}

.slide-card .link {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.slide-card p {
    font-size: 12px;
}

.next.inactive,
.prev.inactive {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}


.custom-btn {
    background: rgb(253, 108, 25) !important;
}

.custom-btn-outline {
    border: 1px solid rgb(253, 108, 25);
    background: none;
    padding: 5px 10px;
    color: rgb(253, 108, 25);
    border-radius: 4px;
    transition: all .5s;
}

.custom-btn-outline:hover {
    border: 1px solid rgb(253, 108, 25);
    background: rgb(253, 108, 25);
    padding: 5px 10px;
    color: white;
    border-radius: 4px;
}

.btn-outline-info:hover {
    color: white !important;
}

.btn-info {
    color: white !important;
}

/* Exam Details box css */
.exam-details h2 {
    color: rgb(50, 50, 50);
}

/* .exam-details h4{
    color: rgb(253, 108, 25);
} */

.exam-details h3 {
    color: rgb(50, 50, 50);
}

.eye-btn {
    border: 1px solid #0dcaf0;
    border-radius: 3px;
    background: none;
    color: #0dcaf0;
}

.eye-btn:hover {
    border: 1px solid #0dcaf0;
    border-radius: 3px;
    background: #0dcaf0;
    color: #ffffff;
}

.exam-details p {
    margin-bottom: 0;
}


.exam-details table {
    border: 1px solid black;
}

.exam-details table tbody tr td {
    border: 1px solid black;
    padding: 10px;
}

.exam-details table thead tr th {
    border: 1px solid black;
    padding: 10px;
    color: rgb(50, 50, 50);
}

.exam-details table tbody tr td strong {
    color: rgb(50, 50, 50);
}

.exam-details li strong {
    color: rgb(50, 50, 50);
}

.exam-head {
    display: flex;
}

.test-card {
    display: flex;
}



/* Register Page Css */
.registe-bg-img {
    background-image: url("/frontend/image/home-bg-1.jpg");
    /* Update path if needed */
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Avoid repeating the image */
    width: 100%;
    /* Set appropriate width */
    height: 100%;
}

.register-form input {
    border: 1px solid #0dcaf0;
}

.register-form input:focus {
    outline: none !important;
    border: none !important;
}

.register-form select {
    border: 1px solid #0dcaf0 !important;
}

.register-form .select2-container {
    border: 1px solid #0dcaf0 !important;
    border-radius: 5px;
}

.register-form .select2-selection__choice {
    background: #0dcaf0 !important;
    color: white !important;
    border: none !important;
    font-weight: 500 !important;
}

.register-form .select2-selection__choice__remove {
    background: #0dcaf0 !important;
    color: white !important;
    border: none !important;
    font-weight: 500 !important;
}

.register-form .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none !important;
}

.register-form .select2-container--default .select2-selection--multiple {
    border: none !important;
}

.faq-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item.active {
    background-color: #e9f5ff;
    border-color: #0dcaf0;
}

.faq-item h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    flex-grow: 1;
}

.faq-item-content {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.toggle-icon {
    font-size: 30px;
    font-weight: bold;
    color: rgb(253, 108, 25);
}


.cta-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-btn {
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.cta-btn-primary {
    background-color: white;
    color: #007bff;
    border: 2px solid white;
}

.cta-btn-primary:hover {
    background-color: #0056b3;
    color: white;
}

.cta-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background-color: white;
    color: #007bff;
}

.cta-section .cta-btn+.cta-btn {
    margin-left: 10px;
}


.features-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.features-header h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.features-header p {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.feature-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #555;
}

/* Enhanced Feature Cards */
.feature-card-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-enhanced:hover::before {
    transform: scaleX(1);
}

.feature-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon-wrapper i {
    font-size: 36px;
    color: white;
    margin: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

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

/* Icon Color Variants */
.feature-icon-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.feature-icon-primary::before {
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
}

.feature-icon-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.feature-icon-success::before {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%);
}

.feature-icon-info {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.feature-icon-info::before {
    background: linear-gradient(135deg, #17a2b8 0%, #5bc0de 100%);
}

.feature-icon-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.feature-icon-warning::before {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
}

.feature-icon-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.feature-icon-danger::before {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
}

.feature-icon-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

.feature-icon-secondary::before {
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
}

.feature-card-enhanced h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
    transition: color 0.3s ease;
}

.feature-card-enhanced:hover h5 {
    color: #007bff;
}

.feature-card-enhanced p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card-enhanced {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon-wrapper i {
        font-size: 30px;
    }

    .feature-card-enhanced h5 {
        font-size: 20px;
    }

    .feature-card-enhanced p {
        font-size: 15px;
    }
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin-top: 20px;
    margin: auto;

}

.social-login a {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.social-login .btn-primary {
    background-color: #1877F2;
    /* Facebook Blue */
}

.social-login .btn-danger {
    background-color: #DB4437;
    /* Google Red */
}



@media only screen and (max-width: 500px) {
    .test-card {
        display: block;
    }

    .test-card button {
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    #nav {
        display: none;
    }

    #userInfo {
        display: none !important;
    }

    #navToggle {
        display: block !important;
    }

    #mobNav {
        display: block;

    }

    .mobMenu {
        position: fixed;
        margin-left: -250px;
        top: 50px;
        width: 250px !important;
        overflow-x: hidden;
        z-index: 9999999999;
        transition: all .5s;
        height: 100%;
        background: white !important;
    }

    .mobMenu-active {
        position: fixed;
        margin-left: 0px;
        top: 50px;
        width: 75% !important;
        overflow-x: hidden;
        transition: all .5s;
        z-index: 9999999999;
        height: 100%;
        background: white !important;
    }

    .overlay-active {
        background-color: #000a235f;
        position: fixed;
        top: 50px;
        width: 100%;
        height: 100%;
        z-index: 88888888;
    }

    .fixed {
        overflow: hidden;
    }



    .heighlite {
        display: none;
    }

    .avtar {
        overflow: hidden;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        outline: 2px solid white;
        background: #0dcaf0;
        display: flex;
        justify-content: center;
        align-items: center;
    }




    .accordion {
        width: 100%;
        max-width: 600px;
        /* margin: 20px auto; */
        /* border: 1px solid #ccc; */
        border-radius: 5px;
        overflow: hidden;
    }


    .accordion-header {
        background: #ffffff;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .accordion-header:hover {
        background: #ffffff;
    }

    .accordion-body {
        display: none;
        background: #f2f2f2;
        padding: 10px 20px !important;
    }

    .accordion-body ul {
        list-style-type: none;
        padding: 0;
        margin-bottom: 0;
    }

    .accordion-body ul li {
        padding: 5px 0;
    }

    .accordion-body ul li a {
        text-decoration: none;
        color: #193550;
    }

    .accordion-body ul li a:hover {
        text-decoration: underline;
    }

    .icon {
        font-size: 18px;
        font-weight: bold;
        margin-left: 10px;
        transform: rotate(180deg);
        color: #193550;
        border: none;
        transition: transform 0.3s ease;
    }

    .icon.rotate {
        transform: rotate(0deg);
    }

    .h1 {
        font-size: 3rem !important;
    }

    .about {
        padding: 10px 0px;
    }

    .exam-head {
        display: block;
    }

    .exam-head button {
        width: 100%;
    }

    .custom-btn-outline {
        border: 1px solid rgb(253, 108, 25);
        background: rgb(253, 108, 25);
        padding: 5px 10px;
        color: rgb(255, 255, 255);
        border-radius: 4px;
        transition: all .5s;
    }

    .footer-line {
        text-align: center;
    }



}


/* Container shadow and padding */
.trending-container {
    max-width: 1140px;
    /* increased from 950px */
    margin: 50px auto;
    background: #fff;
    border-radius: 16px;
    /* slightly more rounded */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
    /* softer, larger shadow */
    padding: 30px 40px;
    /* more inner space */
}


/* Carousel image styling */
.trending-carousel img {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease;
}

.trending-carousel img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Static text styling */
.trending-text h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0dcaf0;
    margin-bottom: 20px;
    position: relative;
}

/* Underline effect */
.trending-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #007bff;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.trending-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trending-text ul {
    list-style-type: none;
    padding-left: 0;
}

.trending-text ul li {
    font-size: 1rem;
    color: #333;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

/* Custom bullet */
.trending-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .trending-text h2 {
        font-size: 2rem;
    }
}

.top-box {
    position: relative;
    background: linear-gradient(135deg, #e0f0ff, #d4e2ff, #e9dcf9);
    padding: 2rem;
    border-radius: 1rem;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); */
    overflow: hidden;
}

/* Gradient overlay with fading top and bottom */
.top-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, 0) 80%,
            rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Ensure content stays above overlay */
.top-box>* {
    position: relative;
    z-index: 2;
}


.examinfo-card {
    border-radius: 15px;
    background: #ffffff;
    transition: box-shadow 0.2s ease;
}

.examinfo-card .card-body {
    padding: 1.2rem;
}

.examinfo-logo {
    background-color: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid #e9ecef;
}

.examinfo-image {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.examinfo-card h6 {
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 38px;
}

.examinfo-card .btn {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.examinfo-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);

}


/* =========================================
   Desktop Navigation Redesign (Accordion-Style Tab)
   ========================================= */

/* Glassy Navbar Background */
.glass-nav {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

/* Navbar Link Styling (Tab Shape) */
.navbar-nav .nav-link {
    color: #4b5563 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem !important;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    /* Tab shape */
    margin-right: 4px;
    position: relative;
    transition: all 0.1s ease;
    z-index: 1050;
    /* Above dropdown */
}

/* Hover/Active State (The "Open Tab" look) */
.navbar-nav .show>.nav-link {
    background-color: #ffffff !important;
    color: #0d6efd !important;
    border-color: rgba(0, 0, 0, 0.08);
    /* Match border */
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.02);
    /* Lift up */
    border-bottom: 1px solid #ffffff;
    /* Connect to menu */
}

/* Rotate Chevron on Open */
.navbar-nav .show>.nav-link .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Custom Dropdown Styling (The "Content Block") */
.custom-dropdown .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    /* Seamless connection */
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-radius: 0 12px 12px 12px;
    /* Bottom corners only */
    padding: 12px;
    margin-top: -1px;
    /* Overlap border */
    min-width: 260px;
    animation: none;
    /* No slide, just appear solid */
    display: none;
    /* Bootstrap handles display */
}

.custom-dropdown.show .dropdown-menu {
    display: block;
    /* Bootstrap override if needed */
}

/* Accordion-Style Stacked Items */
.custom-dropdown .dropdown-item {
    color: #1f2937;
    font-weight: 500;
    padding: 12px 16px;
    border: 1px solid #f3f4f6;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 6px;
    /* Gap between "cards" */
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

/* Stacked Item Hover Effect (Expand/Highlight) */
.custom-dropdown .dropdown-item:hover {
    background-color: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    color: #0d6efd;
    padding-left: 20px !important;
    /* Slide content */
    transform: scale(1.02);
}

/* Icon colors */
.custom-dropdown .dropdown-item i {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 1.1em;
}

.custom-dropdown .dropdown-item:hover i {
    color: #0d6efd;
}

/* Hide arrow, we use tab structure */
.custom-dropdown .dropdown-menu::before {
    display: none;
}

.custom-dropdown .dropdown-menu::after {
    display: none;
}


/* Hover Lift Utility */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}



/* Hide Desktop Nav contents on Mobile but show header */
@media (max-width: 991.98px) {
    #desktopNav {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* Ensure Dropdown is visible when clicked (Bootstrap handles .show class) */
.navbar-nav .nav-link.show,
.navbar-nav .show>.nav-link {
    /* Keep styles for JS toggle */
    background-color: #ffffff !important;
}

/* FIX: Hover Trigger & Lift Position */
@media (min-width: 992px) {
    .custom-dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: -5px;
        /* Moved up to overlap and fix gap */
    }
}

/* Why Trust Section Styles */
.why-trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-trust-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="trustGrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,123,255,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23trustGrid)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.why-trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.why-trust-icon i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
    }
}

.why-trust-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.why-trust-subtitle {
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.why-trust-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-trust-card:hover::before {
    transform: scaleX(1);
}

.why-trust-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.why-trust-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-trust-icon-wrapper i {
    font-size: 42px;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.why-trust-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.why-trust-card:hover .why-trust-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

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

/* Icon Color Variants */
.why-trust-icon-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.why-trust-icon-primary::before {
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
}

.why-trust-icon-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.why-trust-icon-success::before {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%);
}

.why-trust-icon-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.why-trust-icon-warning::before {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
}

.why-trust-icon-info {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
}

.why-trust-icon-info::before {
    background: linear-gradient(135deg, #17a2b8 0%, #5bc0de 100%);
}

.why-trust-card-title {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-trust-card:hover .why-trust-card-title {
    color: #007bff;
}

.why-trust-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
    flex-grow: 1;
}

.why-trust-card:hover .why-trust-card-text {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-trust-title {
        font-size: 1.8rem;
    }

    .why-trust-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .why-trust-icon {
        width: 60px;
        height: 60px;
    }

    .why-trust-icon i {
        font-size: 28px;
    }

    .why-trust-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .why-trust-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }

    .why-trust-icon-wrapper i {
        font-size: 36px;
    }

    .why-trust-card-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .why-trust-card-text {
        font-size: 14px;
    }
}

/* Exam Preparation Section Styles */
.exam-preparation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.exam-preparation-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,123,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.exam-preparation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.exam-preparation-icon i {
    font-size: 36px;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.exam-preparation-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.exam-preparation-subtitle {
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.exam-category-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
    position: relative;
}

.exam-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.exam-category-card:hover::before {
    transform: scaleX(1);
}

.exam-category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}

.exam-card-header {
    padding: 30px 25px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #f0f0f0;
}

.exam-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.exam-card-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.exam-category-card:hover .exam-card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.exam-category-card:hover .exam-card-icon i {
    transform: scale(1.1);
}

.teaching-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.admin-icon {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.police-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.exam-card-title {
    font-size: 1.4rem;
    color: #212529;
    transition: color 0.3s ease;
}

.exam-category-card:hover .exam-card-title {
    color: #007bff;
}

.exam-card-body {
    padding: 25px;
}

.exam-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exam-list li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.exam-list li:last-child {
    border-bottom: none;
}

.exam-list li:hover {
    padding-left: 8px;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.05), transparent);
    border-radius: 8px;
}

.exam-list li i {
    color: #28a745;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.exam-list li:hover i {
    color: #007bff;
    transform: scale(1.2);
}

.exam-list li span {
    color: #495057;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.exam-list li:hover span {
    color: #212529;
    font-weight: 500;
}

.exam-preparation-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.exam-preparation-cta:hover {
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.15);
    transform: translateY(-5px);
    border-color: #007bff;
}

.exam-cta-text {
    color: #495057;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .exam-preparation-title {
        font-size: 1.8rem;
    }

    .exam-preparation-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .exam-preparation-icon {
        width: 60px;
        height: 60px;
    }

    .exam-preparation-icon i {
        font-size: 28px;
    }

    .exam-card-header {
        padding: 20px 15px 15px;
    }

    .exam-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .exam-card-icon i {
        font-size: 26px;
    }

    .exam-card-title {
        font-size: 1.2rem;
    }

    .exam-card-body {
        padding: 20px 15px;
    }

    .exam-list li {
        padding: 10px 0;
        font-size: 14px;
    }

    .exam-preparation-cta {
        padding: 20px 25px;
    }

    .exam-cta-text {
        font-size: 1rem;
    }
}

/* Exams Page Styles */
.exams-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.exams-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="examsHeroGrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,123,255,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23examsHeroGrid)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.exams-hero-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0dcaf0 0%, #007bff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(13, 202, 240, 0.3);
    animation: float 3s ease-in-out infinite;
}

.exams-hero-icon i {
    font-size: 32px;
    color: white;
}

.exams-hero-title {
    background: linear-gradient(135deg, #0dcaf0 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exams-hero-text {
    line-height: 1.8;
}

.exams-hero-image {
    filter: drop-shadow(0 10px 30px rgba(0, 123, 255, 0.15));
    transition: transform 0.3s ease;
}

.exams-hero-image:hover {
    transform: translateY(-5px);
}

.exams-list-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.exams-list-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="examsListGrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,123,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23examsListGrid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.exams-list-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0dcaf0 0%, #007bff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(13, 202, 240, 0.3);
}

.exams-list-icon i {
    font-size: 28px;
    color: white;
}

.exams-list-title {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #0dcaf0 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exams-list-subtitle {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.exam-list-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.exam-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0dcaf0, #007bff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.exam-list-card:hover::before {
    transform: scaleX(1);
}

.exam-list-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(13, 202, 240, 0.15);
    border-color: #0dcaf0;
}

.exam-list-card-body {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
}

.exam-list-logo-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.exam-list-logo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.exam-list-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.05) 0%, rgba(0, 123, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exam-list-card:hover .exam-list-logo {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: #0dcaf0;
    box-shadow: 0 8px 20px rgba(13, 202, 240, 0.1);
}

.exam-list-card:hover .exam-list-logo::before {
    opacity: 1;
}

.exam-list-image {
    max-width: 85px;
    max-height: 85px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.exam-list-card:hover .exam-list-image {
    transform: scale(1.1);
}

.exam-list-name {
    font-size: 1rem;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.exam-list-card:hover .exam-list-name {
    color: #0dcaf0;
}

.exam-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0dcaf0 0%, #007bff 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.3);
    border: none;
}

.exam-list-btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.exam-list-btn:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(13, 202, 240, 0.4);
}

.exam-list-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .exams-hero-section {
        padding: 40px 0;
    }

    .exams-hero-icon {
        width: 60px;
        height: 60px;
    }

    .exams-hero-icon i {
        font-size: 28px;
    }

    .exams-hero-title {
        font-size: 1.8rem;
    }

    .exams-list-title {
        font-size: 1.6rem;
    }

    .exams-list-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .exam-list-card-body {
        padding: 25px 15px;
        min-height: 200px;
    }

    .exam-list-logo {
        height: 90px;
    }

    .exam-list-image {
        max-width: 70px;
        max-height: 70px;
    }

    .exam-list-name {
        font-size: 0.9rem;
        min-height: 42px;
        margin-bottom: 15px;
    }

    .exam-list-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .exams-hero-title {
        font-size: 1.5rem;
    }

    .exams-list-title {
        font-size: 1.4rem;
    }

    .exam-list-card-body {
        padding: 20px 12px;
        min-height: 180px;
    }

    .exam-list-logo {
        height: 80px;
    }

    .exam-list-image {
        max-width: 60px;
        max-height: 60px;
    }

    .exam-list-name {
        font-size: 0.85rem;
        min-height: 38px;
    }

    .exam-list-btn {
        padding: 7px 18px;
        font-size: 0.8rem;
    }
}

/* Home Hero Section Styles */
.home-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="heroGrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(13,202,240,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23heroGrid)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    border: 1px solid rgba(13, 202, 240, 0.3);
    border-radius: 25px;
    color: #0dcaf0;
    font-size: 0.9rem;
    font-weight: 600;
    animation: fadeInDown 0.8s ease;
}

.home-hero-badge i {
    color: #ffc107;
    animation: pulse 2s ease-in-out infinite;
}

.home-hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-hero-title-main {
    display: block;
    background: linear-gradient(135deg, #0dcaf0 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 800;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.home-hero-title-sub {
    display: block;
    color: #212529;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.home-hero-text {
    line-height: 1.8;
    color: #6c757d;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.home-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.home-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
}

.home-hero-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 202, 240, 0.2);
    color: #0dcaf0;
}

.home-hero-feature-item i {
    font-size: 1.1rem;
}

.home-hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.home-hero-svg {
    filter: drop-shadow(0 15px 40px rgba(13, 202, 240, 0.15));
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.home-hero-image-wrapper:hover .home-hero-svg {
    transform: translateY(-10px) scale(1.02);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .home-hero-section {
        padding: 50px 0;
    }

    .home-hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .home-hero-title-main {
        font-size: 2rem;
    }

    .home-hero-title-sub {
        font-size: 1.6rem;
    }

    .home-hero-text {
        font-size: 1rem;
    }

    .home-hero-features {
        gap: 12px;
    }

    .home-hero-feature-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .home-hero-section {
        padding: 40px 0;
    }

    .home-hero-title-main {
        font-size: 1.6rem;
    }

    .home-hero-title-sub {
        font-size: 1.3rem;
    }

    .home-hero-text {
        font-size: 0.95rem;
    }

    .home-hero-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* Premium Nav Search Button */
.nav-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 50px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.nav-search-btn i {
    font-size: 1.1rem;
    color: #0dcaf0;
    /* Theme info color */
    transition: transform 0.3s ease;
}

.nav-search-btn kbd {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    font-size: 0.75rem;
    background: #fff;
    color: #888;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    margin-left: 4px;
}

.nav-search-btn:hover {
    background: #fff;
    border-color: #0dcaf0;
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.15);
    transform: translateY(-1px);
    color: #0dcaf0;
}

.nav-search-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.nav-search-btn:active {
    transform: translateY(0);
}

.search-hint {
    opacity: 0.7;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}