@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: #2853d2;
    --btn-focus-bg-color: #4974f1;
    --bg-light: #f9f9ff;
    --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: block;
    margin: auto;
    width: fit-content;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: var(--btn-bg-color);
    padding: 10px 12px;
    border-radius: 4px;
    margin-top: 20px;
}

.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-inline: 40px;
    height: 70px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(6, 17, 118, .08), 0 4px 12px rgba(6, 17, 118, .08);
    z-index: 9;
}

.header-logo img {
    height: 66px;
}

.menu-toggle {
    display: none;
}

.navithor-menu {
    display: flex;
    align-items: center;
    transition: .2s;

}

.navithor-menu a {
    display: inline-block;
    text-decoration: none;
    color: var(--text_1);
    font-size: .9rem;
    padding: 10px 12px;
    border-radius: 5px;
    transition: .2s;
}

.navithor-menu a i {
    width: 20px;
    color: #6c6b6b;
}

.navithor-menu a:hover {
    background-color: var(--focus_bg_color);
    color: var(--text_1_hover);
}

.menu_blur_overlay {
    height: calc(100% - 70px);
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
}

/*main slider -------------------*/
.main_slider {
    min-height: calc(100vh - 70px);
    max-height: 700px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.main_slider::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:
        linear-gradient(45deg, rgba(102, 126, 234, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(118, 75, 162, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(102, 126, 234, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(118, 75, 162, 0.1) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
}

.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;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    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: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    pointer-events: none;
}

.slider_content {
    max-width: 550px;
    background: rgba(255, 255, 255, 0.98);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.slider_content .title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    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-color: var(--bg-dark);
    padding: var(--section-padding);
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
}

.scholarship-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.scholarship-subtext {
    text-align: center;
    font-size: 18px;
    color: var(--text_color_2);
    margin-bottom: 15px;
}

.scholarship-subheading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--text_color_2);
    margin-top: 10px;
}

.more_scholarship {
    color: #0384fc;
    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;
}

.exam_card_item:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.25);
}

.exam_card_img {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.exam_card_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    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;
    gap: 16px;
}

.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;
}

.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: #667eea;
    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;
}

.scholarship_highlight {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 2px solid #667eea;
    position: relative;
}

.scholarship_highlight .info_item i {
    color: #ffc107;
}

.scholarship_highlight .info_value {
    font-size: 18px;
    color: #667eea;
}

.more_prizes {
    font-size: 11px;
    background: #667eea;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Card Buttons Container */
.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 0;
}

.exam_detail_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    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(102, 126, 234, 0.15);
}

.exam_detail_btn:hover {
    background: #667eea;
    color: white;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 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, #667eea 0%, #764ba2 100%);
    color: white;
    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(102, 126, 234, 0.25);
}

.exam_apply_btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
    transform: translateY(-1px);
}

.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: linear-gradient(to bottom right, #f4f0ff, #faf8ff);
}

.achiever_card_slider {
    margin-top: 25px;
    width: 90%;
    margin: auto;
    margin-top: 20px;
}

.achiever_card_item {
    background: #fff;
    margin-inline: 8px;
    /*border: 1px solid var(--text_1_light);*/
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-inline: 8px;
    /*border: 1px solid var(--text_1_light);*/
    border-radius: 10px;
    overflow: hidden;
}

.achiever_card_img {
    width: 100%;
    aspect-ratio: 2/2;
}

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

.achiever_card_content {
    display: flex;
    flex-direction: column;
    padding: 0px 10px 15px 10px;
}

.achiever_card_content h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 6px;
    font-size: 1.2rem;
    text-overflow: ellipsis;
}

.achiever_card_content p {
    font-size: .9rem;
    margin-top: 4px;
    color: #595c73;
}

/*====================about============*/
.about_section {
    background: var(--bg-dark);
    padding: var(--section-padding);
    color: #fff;
}

.about_content_div {
    width: 90%;
    margin: auto;
    border-radius: 8px;
    /* border: 1px solid var(--text_1_light); */
    padding: 20px;
    margin-top: 20px;
    color: var(--text_color_2);
    background: rgba(255, 255, 255, .1);
    line-height: 1.8;
    word-spacing: 2px;
}

.about_content_div p {
    line-height: 1.8;
}

/*---------------get scholarship--------------*/
.get_scholarship_section {
    padding: var(--section-padding);
    width: 95%;
    margin: auto;
}

.get_s_card_main {
    margin-top: 20px;
}

.get_s_card_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.get_s2_card_main {
    display: flex;
}

.get_s_card_item {
    border: 1px solid var(--btn-bg-color);
    border-left-width: .3rem;
    border-radius: 8px;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;

    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    transform: background .2s;
}

.get_s_card_item:hover {
    background: var(--bg-light);
}

.get_s_card_item p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #595c73;
}

.get_s_card_item a {
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: var(--btn-bg-color);
    transition: color .2s;
}

.get_s_card_item a:hover {
    color: var(--btn-focus-bg-color);
}

.get_s_card_item a span {
    font-size: 1.2rem;

}

/*========stat section==*/
.stats-container {
    padding: var(--section-padding);
    text-align: center;
    background: linear-gradient(to bottom right, #f4f0ff, #faf8ff);
    ;
}

.stats-title {
    font-size: 3rem;
    font-weight: 800;
    color: #6c2bd9;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: 240px;
    box-shadow: 0 20px 50px rgba(108, 43, 217, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(108, 43, 217, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--btn-focus-bg-color);
    ;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--btn-bg-color);
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/*.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: hidden;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

/* For PDF generation - ensure full content is visible */
.reg-popup-box.pdf-mode {
    max-height: none !important;
    overflow-y: visible !important;
    position: static !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;
}

/* Razorpay Payment Info Styles */
.razorpay-payment-info {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    border: 2px solid #28a745;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.razorpay-payment-info i {
    margin-bottom: 10px;
}

.razorpay-payment-info p {
    margin: 0;
    line-height: 1.4;
}

.razorpay-payment-info p:first-of-type {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
}

.razorpay-payment-info p:last-of-type {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    word-break: break-all;
}

/* 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-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: 45px;
        width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        position: relative;
        color: #fff;
        z-index: 9;
        border-radius: 5px;
        background: var(--btn-bg-color);
        opacity: 1;
    }

    .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: 40px;
    }

    .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 {
        flex-direction: column;
        align-items: baseline;
        position: absolute;
        left: -100%;
        top: 72px;
        background: #fff;
        padding: 10px;
        width: 100%;
        padding-block: 20px;
        gap: 20px;
        transition: .2s ease-in-out;
    }

    .navithor-menu a i {
        width: 35px;
    }

    .main_slider_item img {}

    .menu-open .navithor-menu {
        transition: .3s ease-in-out;
        left: 0;

    }

    .menu-open .menu_blur_overlay {
        display: block;
    }

    .navithor-menu a {
        font-size: 1.5rem;
        display: block;
        width: 100%;
        padding-left: 12px;
        border-radius: 5px;
    }

    .menu_blur_overlay {
        /*display: block;*/
    }

    .navithor-menu a:hover {
        background-color: unset;
    }

    .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;
    }

    .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_content h4 {
        font-size: 1rem;
    }

    .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: #555;
    background: #f8f9fa;
    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: #e9ecef;
    transform: translateY(-2px);
}

.meta-item i {
    color: #667eea;
    font-size: 15px;
}

.meta-item strong {
    color: #333;
    margin-right: 4px;
}

/* Scholarship Section in Slider */
.scholarship-section-slider {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 0;
}

.scholarship-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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(102, 126, 234, 0.4);
}

.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: #667eea;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 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 28px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.btn-apply-now:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.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;
    }
}