@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --text_1: #2a2b3f;
    --text_1_light: #b59fd7;
    --text_1_hover: #6d28d2;
    --focus_bg_color: #ede5f9;

    --btn-text-color: #fff;
    --btn-bg-color: #1e3a5f;
    --btn-focus-bg-color: #2d5a8e;
    --bg-light: #f0f4f8;
    --bg-dark: #21212d;

    --text_color_1: #97adfa;
    --text_color_2: #d5d5d5;

}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-align: left;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--text_1);
    --section-padding: 60px 20px;
}

.view_all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 24px auto 0;
    width: fit-content;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.25);
    transition: all 0.3s ease;
}

.view_all:hover {
    background: linear-gradient(135deg, #2d5a8e 0%, #1e3a5f 100%);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Center the view all button */
.achiver_section {
    text-align: center;
}

.achiver_section .achiever_card_slider,
.achiver_section .achiever_card_content {
    text-align: left;
}

.apply_btn {
    display: block;
    padding: 10px 12px;
    background: var(--btn-bg-color);
    color: var(--btn-text-color);
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    transition: .2s;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    text-decoration: none;
}

.apply_btn:hover {
    background: var(--btn-focus-bg-color);
}

.text-white {
    color: #fff !important;
}

.common_heading {
    /*font-size: 1.5rem;*/
    text-align: center;
    color: var(--text_1);
    /*margin-block: 20px;*/
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    font-family: "Nunito", sans-serif;

}

/*header css =================================*/
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: sticky;
    top: 0;
    padding: 0 40px;
    height: 75px;
    background: #ffffff;
    border-bottom: 1px solid #e8eaf0;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    transition: all 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    height: 52px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    max-width: 180px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-toggle {
    display: none;
}

.navithor-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.navithor-menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

/* Underline slide-in effect */
.navithor-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.navithor-menu a:hover {
    color: #1e293b;
}

.navithor-menu a:hover::after {
    width: 60%;
}

/* Exam Login button in nav */
.navithor-menu a.nav-exam-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 9px 22px;
    border-radius: 22px;
    margin-left: 12px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    letter-spacing: 0.3px;
}

.navithor-menu a.nav-exam-btn::after {
    display: none;
}

.navithor-menu a.nav-exam-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-arrow {
    font-size: 9px;
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 8px;
    background: transparent;
    min-width: 160px;
    z-index: 999;
}

.nav-dropdown-menu::before {
    content: '';
    display: block;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    background: #ffffff;
}

.nav-dropdown-menu a:first-child {
    border-radius: 10px 10px 0 0;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 10px 10px;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: #f1f5f9;
    color: #3b82f6;
    transform: none;
}

/* Floating Online Exam Button - hidden on desktop */
.floating-exam-btn {
    display: none;
}

.menu_blur_overlay {
    height: calc(100% - 75px);
    width: 100%;
    position: fixed;
    top: 75px;
    left: 0;
    background: rgba(0, 0, 0, .4);
    display: none;
}

/*main slider -------------------*/
.main_slider {
    min-height: calc(100vh - 75px);
    max-height: 700px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 40%, #1a4a7a 70%, #0f2d4a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle light rays */
.main_slider::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:
        radial-gradient(ellipse 70% 80% at 10% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 90% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Dot grid pattern */
.main_slider::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.main_slider_item {
    position: relative;
    display: grid !important;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 40px 60px;
    width: 100%;
}

.main_slider_item_left {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.main_slider_item_right {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.slider-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.main_slider_item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
    pointer-events: none;
}

.slider_content {
    max-width: 550px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(12px);
}

.slider_content .title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.custom-prev,
.custom-next {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.custom-prev:hover,
.custom-next:hover {
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.custom-prev svg,
.custom-next svg {
    stroke: #667eea;
    stroke-width: 3;
}

.custom-prev {
    left: 20px;
}

.custom-next {
    right: 20px;
}

.slick-prev,
.slick-next {
    z-index: 10;
}

@media (max-width: 800px) {

    .custom-prev,
    .custom-next {
        width: 40px;
        height: 40px;
    }

    .custom-prev {
        left: 10px;
    }

    .custom-next {
        right: 10px;
    }
}

/*==========================*/
.scholarship-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 40%, #0f2d4a 100%);
    padding: var(--section-padding);
}

.scholarship-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.scholarship-subtext {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.scholarship-subheading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.more_scholarship {
    color: #f59e0b;
    margin-left: 5px;
}

/*=================Exam Slider=======================*/
.exam_card_slider {
    margin-top: 40px;
}

.exam_card_item {
    background: #fff;
    margin-inline: 10px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex !important;
    flex-direction: column;
    height: auto;
}


.exam_card_item:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(30, 58, 95, 0.3);
}

.exam_card_img {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.exam_card_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.exam_card_item:hover .exam_card_img img {
    transform: scale(1.1);
}

.exam_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.exam_badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exam_badge i {
    font-size: 14px;
}

.exam_card_content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-bottom: 24px;
    gap: 16px;
    flex: 1;
}

.exam_card_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}

.exam_card_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info_item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.info_item i {
    font-size: 20px;
    color: #2d5a8e;
    min-width: 24px;
    text-align: center;
}

.info_text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.info_label {
    font-size: 11px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info_value {
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.gift_text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.scholarship_highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    position: relative;
}

.scholarship_highlight .info_item i {
    color: #d97706;
}

.scholarship_highlight .info_value {
    font-size: 18px;
    color: #1e3a5f;
}

.more_prizes {
    font-size: 11px;
    background: #1e3a5f;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Card Buttons Container */
.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.exam_detail_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(30, 58, 95, 0.12);
}

.exam_detail_btn:hover {
    background: #1e3a5f;
    color: white;
    box-shadow: 0 3px 10px rgba(30, 58, 95, 0.25);
    transform: translateY(-1px);
}

.exam_detail_btn i {
    font-size: 13px;
}

.exam_apply_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a1a;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.exam_apply_btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
    transform: translateY(-1px);
    color: #1a1a1a;
}

.exam_apply_btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.exam_apply_btn:hover i {
    transform: translateX(3px);
}

/* Legacy support - keeping for backward compatibility */
.exam_card_scholarship_content p {
    font-size: 1rem !important;
    margin-top: 4px;
}

.more_scholarship {
    color: #0384fc;
    margin-left: 5px;
}

/*==============achiever================*/
.achiver_section {
    padding: var(--section-padding);
    background: #f0f4f8;
    position: relative;
}

.achiver_section .common_heading {
    color: #1e3a5f;
    position: relative;
    display: block;
    padding-bottom: 12px;
}

.achiver_section .common_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 2px;
}

.achiever_card_slider {
    margin: 30px auto 0;
    width: 92%;
}

.achiever_card_item {
    margin-inline: 8px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.achiever_card_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.18);
}

.achiever_card_img {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    background-size: cover;
    background-position: center;
}

/* Blurred background layer */
.achiever_card_img::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: inherit;
    filter: blur(14px) brightness(0.75) saturate(1.2);
    z-index: 0;
}

.achiever_card_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.achiever_card_item:hover .achiever_card_img img {
    transform: scale(1.06);
}

.achiver_section .slick-slide:hover {
    background: transparent;
}

.achiever_card_content {
    display: flex;
    flex-direction: column;
    padding: 14px 14px 16px;
    flex: 1;
    border-top: 3px solid #f59e0b;
}

.achiever_card_content h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.achiever_card_content p {
    font-size: .8rem;
    margin: 0;
    color: #64748b;
    line-height: 1.4;
}

.achiever_card_content p:first-of-type {
    color: #d97706;
    font-weight: 600;
    font-size: .82rem;
}

.achiver_section .slick-slide {
    height: auto;
}

/* Initials avatar when image missing */
.achiever_initials_avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/*====================about============*/
.about_section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 50%, #0f2d4a 100%);
    padding: var(--section-padding);
    color: #fff;
}

.about_section .common_heading {
    color: #fff;
}

.about_section .common_heading::after {
    background: #f59e0b;
}

.about_subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-top: 6px;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

.about_layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    width: 92%;
    max-width: 1100px;
    margin: 36px auto 0;
    align-items: stretch;
}

.about_left {
    display: flex;
    flex-direction: column;
}

/* Left column */
.about_img_wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
    background: #0f2d4a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    display: block;
    padding: 20px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.about_img_placeholder {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    font-size: 60px;
}

/* Feature cards - horizontal row under image */
.about_features {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.about_feature_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #f59e0b;
    border-radius: 10px;
    padding: 14px 10px;
    transition: background 0.2s;
}

.about_feature_item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.about_feature_icon {
    width: 36px;
    height: 36px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 15px;
}

.about_feature_item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
}

/* Right column */
.about_right {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.about_text_content {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    font-size: 15px;
    word-spacing: 1px;
}

.about_text_content p {
    margin-bottom: 14px;
}

.about_button_container {
    margin-top: 20px;
    text-align: left;
    clear: both;
}

/* Responsive */
@media (max-width: 768px) {
    .about_layout {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 95%;
    }

    .about_right {
        padding: 22px 20px;
    }
}

/*---------------get scholarship--------------*/
.get_scholarship_section {
    padding: var(--section-padding);
    background: #f0f4f8;
}

.get_scholarship_section .common_heading {
    color: #1e3a5f;
}

.get_scholarship_section .common_heading::after {
    background: #f59e0b;
}

.get_s_card_main {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 92%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.get_s2_card_main {
    display: flex;
}

.get_s_card_item {
    background: #fff;
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-top: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.get_s_card_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(30, 58, 95, 0.15);
}

.get_s_card_item p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    flex: 1;
}

.get_s_card_item a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #1e3a5f;
    transition: color 0.2s, gap 0.2s;
}

.get_s_card_item a:hover {
    color: #f59e0b;
    gap: 12px;
}

@media (max-width: 768px) {
    .get_s_card_main {
        grid-template-columns: 1fr;
    }
}

.get_s_card_item a span {
    font-size: 1.2rem;

}

/*========stat section==*/
.stats-container {
    padding: var(--section-padding);
    text-align: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 50%, #0f2d4a 100%);
}

.stats-container .common_heading {
    color: #fff;
}

.stats-container .common_heading::after {
    background: #f59e0b;
}

.stats-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid #f59e0b;
    border-radius: 16px;
    padding: 36px 28px;
    width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
    font-size: 2.2rem;
    color: #f59e0b;
    margin-bottom: 14px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    letter-spacing: 0.3px;
}

/*========why join section==*/
.why_join_section {
    background: #f0f4f8;
    padding: var(--section-padding);
}

.why_join_section .common_heading {
    color: #1e3a5f;
}

.why_join_section .common_heading::after {
    background: #f59e0b;
}

.why_join_layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    width: 92%;
    max-width: 1100px;
    margin: 36px auto 0;
    align-items: start;
}

.why_join_text p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 14px;
}

.why_join_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1e3a5f;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.why_join_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    gap: 14px;
}

.why_join_points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why_join_point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.why_join_point:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
}

.why_join_icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 16px;
}

.why_join_point strong {
    display: block;
    color: #1e3a5f;
    font-size: 14px;
    margin-bottom: 4px;
}

.why_join_point p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why_join_layout {
        grid-template-columns: 1fr;
        gap: 28px;
        width: 95%;
    }
}

/*.reg-popup-overlay {*/
/*  position: fixed;*/
/*  top: 0; left: 0;*/
/*  width: 100%; height: 100%;*/
/*  background: rgba(0, 0, 0, 0.6);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  z-index: 9999;*/
/*}*/

/*.reg-popup-modal {*/
/*  background: #fff;*/
/*  padding: 30px 25px 20px;*/
/*  border-radius: 12px;*/
/*  width: 90%;*/
/*  max-width: 400px;*/
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);*/
/*  position: relative;*/
/*  text-align: center;*/
/*  font-family: 'Segoe UI', sans-serif;*/
/*  animation: popupFadeIn 0.3s ease-in-out;*/
/*}*/

/*@keyframes popupFadeIn {*/
/*  from { transform: scale(0.95); opacity: 0; }*/
/*  to { transform: scale(1); opacity: 1; }*/
/*}*/

/*.reg-popup-close {*/
/*  position: absolute;*/
/*  top: 12px;*/
/*  right: 12px;*/
/*  background: transparent;*/
/*  border: none;*/
/*  font-size: 20px;*/
/*  cursor: pointer;*/
/*  color: #333;*/
/*}*/

/*.reg-popup-title {*/
/*  font-size: 20px;*/
/*  font-weight: 600;*/
/*  margin-bottom: 12px;*/
/*  color: #222;*/
/*}*/

/*.reg-popup-text {*/
/*  font-size: 16px;*/
/*  margin-bottom: 8px;*/
/*}*/

/*.reg-popup-note {*/
/*  font-size: 14px;*/
/*  color: #555;*/
/*  margin-bottom: 20px;*/
/*}*/

/*.reg-popup-ok {*/
/*  background-color: #007bff;*/
/*  color: white;*/
/*  border: none;*/
/*  padding: 10px 22px;*/
/*  border-radius: 6px;*/
/*  cursor: pointer;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*}*/

/*.reg-popup-ok:hover {*/
/*  background-color: #0056b3;*/
/*}*/
/* Registration Success Modal */
.reg-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.reg-popup-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-popup-box {
    background: #fff;
    width: 100%;
    max-width: 550px;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: auto;
    margin: auto;
    max-height: 90vh;
}

/* PDF Generation Styles */
.reg-popup-box.pdf-mode {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: none !important;
    animation: none !important;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.reg-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.reg-close-btn:hover {
    background: #f8f9fa;
    color: #dc3545;
    transform: rotate(90deg);
}

/* Success Header */
.reg-success-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    text-align: center;
}

.reg-success-icon {
    margin-bottom: 20px;
}

.reg-success-icon i {
    font-size: 80px;
    color: white;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Title Section */
.reg-popup-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-align: center;
}

.reg-popup-subtitle {
    margin: 10px 0 0 0;
    font-size: 16px;
    color: white;
    text-align: center;
    opacity: 0.95;
}

/* Details Card */
.reg-details-card {
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reg-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reg-detail-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.reg-detail-item.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.reg-detail-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.reg-detail-item.highlight .reg-detail-label {
    color: rgba(255, 255, 255, 0.9);
}

.reg-detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.reg-detail-item.highlight .reg-detail-value {
    color: white;
    font-size: 18px;
}

/* Payment Screenshot Section */
.reg-payment-section {
    margin: 0 30px 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.payment-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-payment-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    display: block;
    margin: 0 auto;
}

/* Info Box */
.reg-info-box {
    margin: 0 30px 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Login Credentials Card */
.reg-credentials-card {
    margin: 0 30px 30px;
    padding: 25px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border-left: 4px solid #28a745;
    border-radius: 12px;
}

.credentials-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #155724;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credential-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #155724;
}

.credential-value {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #c3e6cb;
}

.credential-value span {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #155724;
}

.copy-btn,
.toggle-password-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.copy-btn:hover,
.toggle-password-btn:hover {
    background: #1e7e34;
    transform: translateY(-1px);
}

.copy-btn.copied {
    background: #17a2b8;
    animation: pulse 0.3s ease;
}

.credentials-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #155724;
    font-weight: 500;
}

.credentials-note i {
    color: #28a745;
    font-size: 16px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Info Box */
.reg-info-box {
    margin: 0 30px 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.reg-info-box i {
    font-size: 24px;
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 2px;
}

.reg-info-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.reg-info-text strong {
    color: #664d03;
}

/* Action Buttons */
.reg-popup-buttons {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.reg-download-btn,
.reg-ok-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.reg-download-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.reg-download-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.5);
    transform: translateY(-2px);
}

.reg-ok-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.reg-ok-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.reg-download-btn i,
.reg-ok-btn i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .reg-popup-box {
        max-width: 95%;
        border-radius: 16px;
    }

    .reg-success-icon {
        padding: 30px 20px 20px;
    }

    .reg-success-icon i {
        font-size: 60px;
    }

    .reg-popup-title {
        font-size: 24px;
        padding: 0 20px;
    }

    .reg-popup-subtitle {
        font-size: 14px;
        padding: 0 20px 20px;
    }

    .reg-details-card {
        padding: 20px;
        gap: 15px;
    }

    .reg-credentials-card {
        margin: 0 20px 20px;
        padding: 20px;
    }

    .credentials-section-title {
        font-size: 16px;
    }

    .credential-value {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .credential-value span {
        font-size: 14px;
        text-align: center;
        padding: 8px;
        background: #f8f9fa;
        border-radius: 6px;
    }

    .copy-btn,
    .toggle-password-btn {
        align-self: center;
        min-width: 80px;
    }

    .credentials-note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .reg-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
    }

    .reg-detail-value {
        font-size: 15px;
    }

    .reg-detail-item.highlight .reg-detail-value {
        font-size: 16px;
    }

    .reg-info-box {
        margin: 0 20px 20px;
        padding: 15px;
        gap: 12px;
    }

    .reg-info-box i {
        font-size: 20px;
    }

    .reg-info-text {
        font-size: 13px;
    }

    .reg-popup-buttons {
        padding: 0 20px 20px;
        flex-direction: column;
        gap: 12px;
    }

    .reg-download-btn,
    .reg-ok-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 14px;
    }

    .reg-close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}




@media (max-width:800px) {
    body {
        --section-padding: 60px 20px;
    }

    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }

    /* Exam Cards Tablet */
    .exam_card_item {
        margin-inline: 8px;
    }

    .exam_card_content {
        padding: 18px;
    }

    .exam_card_title {
        font-size: 1.15rem;
    }

    .header-container {
        padding-inline: 20px;
    }

    .menu-toggle {
        height: 42px;
        width: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        position: relative;
        color: #1e293b;
        z-index: 9;
        border-radius: 8px;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .menu-toggle:hover {
        background: #e2e8f0;
    }

    .header_cancel {
        line-height: 1;
        height: 0;
        width: 0;
        display: inline-block;
        overflow: hidden;
        opacity: 0;
    }

    .header_bar {
        line-height: 1;
    }

    .header-logo img {
        height: 42px;
    }

    .header-brand-name {
        font-size: 16px;
        max-width: 200px;
        color: #1e293b;
    }

    .menu-open .header_bar {
        height: 0;
        width: 0;
        display: inline-block;
        overflow: hidden;
        opacity: 0;
        transition: opacity .2s;
    }

    .menu-open .header_cancel {
        height: auto;
        width: auto;
        display: inline-block;
        opacity: 1;
        transition: opacity .2s;
    }

    .navithor-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 75px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 12px;
        gap: 4px;
        transition: all 0.3s ease;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        border-right: 1px solid #e8eaf0;
    }

    .navithor-menu a {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 8px;
        background: transparent;
        border: none;
        color: #475569;
        margin: 0;
        justify-content: flex-start;
        letter-spacing: 0.2px;
    }

    .navithor-menu a::after {
        display: none;
    }

    .navithor-menu a:hover {
        background: #f1f5f9;
        color: #1e293b;
    }

    .navithor-menu a.nav-exam-btn {
        margin-top: 10px;
        margin-left: 0 !important;
        border-radius: 8px;
        justify-content: center !important;
        text-align: center;
        color: #fff;
    }

    .navithor-menu a.nav-exam-btn:hover {
        color: #fff;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 8px;
        color: #475569;
        justify-content: space-between;
    }

    .nav-dropdown-toggle:hover {
        background: #f1f5f9;
        color: #1e293b;
    }

    .nav-dropdown-menu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8fafc;
        border-left: 3px solid #e2e8f0;
        margin-left: 16px;
        min-width: unset;
    }

    .nav-dropdown-menu a {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 6px;
    }

    .menu-open .navithor-menu {
        left: 0;
    }

    .menu-open .menu_blur_overlay {
        display: block;
    }

    .menu_blur_overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .slider_content {
        max-width: 100%;
    }

    .get_s_card_main {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:576px) {
    .common_heading {
        font-size: 1.5rem;
    }

    body {
        --section-padding: 40px 20px;
    }

    .scholarship-section {
        padding: 40px 15px;
    }

    .scholarship-heading {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .scholarship-subtext {
        font-size: 15px;
    }

    .scholarship-subheading {
        font-size: 20px;
    }

    /* Exam Cards Responsive */
    .exam_card_slider {
        margin-top: 30px;
    }

    .exam_card_item {
        margin-inline: 5px;
    }

    .exam_card_content {
        padding: 16px;
        gap: 12px;
    }

    .exam_card_title {
        font-size: 1.1rem;
        min-height: 44px;
    }

    .info_item {
        padding: 10px;
        gap: 10px;
    }

    .info_item i {
        font-size: 18px;
        min-width: 20px;
    }

    .info_label {
        font-size: 10px;
    }

    .info_value {
        font-size: 14px;
    }

    .gift_text {
        font-size: 11px;
    }

    .scholarship_highlight .info_value {
        font-size: 16px;
    }

    .card-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .exam_detail_btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .exam_apply_btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .exam_badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .achiever_card_slider {
        width: 100%;
    }

    .achiever_card_item {
        max-height: unset;
    }

    .achiever_card_img {
        max-height: 140px;
        height: 140px;
    }

    .achiever_card_content h4 {
        font-size: 1rem;
    }

    .achiever_card_content p {
        font-size: .8rem;
    }

    .about_content_div {
        width: 95%;
    }

    .get_s_card_main {
        grid-template-columns: 1fr;
        width: 95%;
        margin: auto;
        margin-top: 20px;
    }

    .stats-title {
        font-size: 2.2rem;
    }

    .stat-card {
        width: 100%;
        max-width: 300px;
    }
}


/* ========================================
   ENHANCED HERO SLIDER STYLES
   ======================================== */

/* Slider Badges */
.slider-badge {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.badge-new,
.badge-urgent {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-new {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.badge-urgent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(238, 90, 111, 0.5);
    }
}

/* Exam Meta Information */
.exam-meta {
    display: flex;
    gap: 12px;
    margin: 0;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-item-full {
    flex: 1 1 100%;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: #fff;
}

.meta-item i {
    color: #f59e0b;
    font-size: 15px;
}

.meta-item strong {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 4px;
}

/* Scholarship Section in Slider */
.scholarship-section-slider {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 0;
}

.scholarship-title {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scholarship-title i {
    color: #ffc107;
    font-size: 20px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

.scholarship-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.scholarship-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scholarship-item:hover::before {
    opacity: 1;
}

.scholarship-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.scholarship-item .rank {
    display: block;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scholarship-item .amount {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

/* Seats Progress */
.seats-progress {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin: 0;
}

.seats-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.seats-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.seats-count {
    font-size: 14px;
    font-weight: 700;
    color: #d97706;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.seats-warning {
    margin-top: 8px;
    font-size: 12px;
    color: #ff6b6b;
    font-weight: 700;
    text-align: center;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.seats-full {
    margin-top: 8px;
    font-size: 12px;
    color: #dc3545;
    font-weight: 700;
    text-align: center;
}

/* Apply Button */
.btn-apply-now {
    width: 100%;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.btn-apply-now .btn-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.btn-apply-now:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.btn-apply-now:hover:not(:disabled) .btn-arrow {
    transform: translateX(5px);
}

.btn-apply-now:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-apply-now:disabled {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-apply-now i {
    font-size: 18px;
}

/* No Exams Message */
.no-exams-message {
    text-align: center;
    padding: 80px 20px;
    color: white;
}

.no-exams-message i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: block;
}

.no-exams-message p {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main_slider_item {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px;
    }

    .slider_content {
        padding: 30px;
    }

    .slider_content .title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .main_slider_item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .slider-image-wrapper {
        max-width: 100%;
        transform: none;
    }

    .slider-image-wrapper:hover {
        transform: scale(1.02);
    }

    .slider_content {
        max-width: 100%;
    }

    .exam-meta {
        gap: 10px;
    }

    .meta-item {
        font-size: 12px;
        padding: 8px 14px;
    }

    .scholarship-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .scholarship-item .amount {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .main_slider {
        min-height: auto;
        max-height: none;
    }

    .main_slider_item {
        padding: 30px 20px;
        gap: 25px;
    }

    .slider_content {
        padding: 25px;
        gap: 15px;
    }

    .slider_content .title {
        font-size: 24px;
    }

    .slider-badge {
        gap: 8px;
    }

    .badge-new,
    .badge-urgent {
        font-size: 10px;
        padding: 6px 14px;
    }

    .exam-meta {
        gap: 8px;
    }

    .meta-item {
        font-size: 11px;
        padding: 8px 12px;
        flex: 1 1 calc(50% - 8px);
    }

    .scholarship-section-slider {
        padding: 15px;
    }

    .scholarship-title {
        font-size: 14px;
    }

    .scholarship-grid {
        gap: 8px;
    }

    .scholarship-item {
        padding: 12px 8px;
    }

    .scholarship-item .rank {
        font-size: 10px;
    }

    .scholarship-item .amount {
        font-size: 18px;
    }

    .seats-progress {
        padding: 12px;
    }

    .btn-apply-now {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .main_slider {
        min-height: auto;
        max-height: none;
        padding: 20px 0;
    }

    .main_slider_item {
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main_slider_item_left,
    .main_slider_item_right {
        width: 100%;
    }

    .slider_content {
        padding: 20px;
        border-radius: 15px;
        gap: 15px;
    }

    .slider_content .title {
        font-size: 18px;
        line-height: 1.4;
    }

    .slider-badge {
        gap: 6px;
        margin-bottom: 0;
    }

    .badge-new,
    .badge-urgent {
        font-size: 10px;
        padding: 6px 12px;
    }

    .slider-image-wrapper {
        border-radius: 15px;
        max-width: 100%;
        aspect-ratio: 16/9;
        transform: none;
    }

    .slider-image-wrapper:hover {
        transform: scale(1.02);
    }

    .exam-meta {
        gap: 8px;
    }

    .meta-item {
        width: 100%;
        justify-content: flex-start;
        flex: 1 1 100%;
        padding: 10px 14px;
        font-size: 12px;
    }

    .meta-item i {
        font-size: 14px;
    }

    .meta-item-full {
        grid-column: 1;
    }

    .scholarship-section-slider {
        padding: 15px;
        border-radius: 12px;
    }

    .scholarship-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .scholarship-title i {
        font-size: 18px;
    }

    .scholarship-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .scholarship-item {
        padding: 14px;
    }

    .scholarship-item .rank {
        font-size: 10px;
    }

    .scholarship-item .amount {
        font-size: 20px;
    }

    .card-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .exam_detail_btn,
    .btn-apply-now {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }

    .no-exams-message {
        padding: 60px 20px;
    }

    .no-exams-message i {
        font-size: 48px;
    }

    .no-exams-message p {
        font-size: 16px;
    }

    /* Hide slider arrows on mobile */
    .custom-prev,
    .custom-next {
        display: none;
    }
}

/* Mobile Floating Online Exam Button */
@media (max-width: 768px) {
    .floating-exam-btn {
        left: 15px;
        bottom: 15px;
    }

    .exam-float-link {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 25px;
        gap: 6px;
    }

    .exam-float-link i {
        display: none;
    }

    .exam-float-text {
        display: block;
        font-weight: 600;
    }
}

/* Minimal Exam Modal Styles - Only for functionality */
.exam-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    z-index: 9998;
    overflow-y: auto;
    padding: 20px;
}

.exam-modal-content {
    background: #fff;
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.exam-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.exam-close-btn:hover {
    color: #dc3545;
}