/* ============================================
   STYLING VARIABLES & GENERAL STYLES
   ============================================ */

:root {
    --primary-color: #00205b;
    --secondary-color: #ffc720;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}


/* ============================================
   NAVBAR STYLING
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 32, 91, 0.95) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    animation: slideInLeft 0.6s ease;
    white-space: nowrap;
}

.logo-img {
    width: 40px;
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    animation: slideInRight 0.6s ease;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-menu a:not(.enroll-btn):not(.login-btn):not(.dashboard-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:not(.enroll-btn):not(.login-btn):not(.dashboard-btn):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.enroll-btn {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 199, 32, 0.3);
}

.login-btn {
    background: rgba(255, 199, 32, 0.25) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    border: 2px solid var(--secondary-color) !important;
    transition: var(--transition) !important;
    display: inline-block !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.login-btn:hover::after {
    width: 0 !important;
}

.login-btn:hover {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.dashboard-btn {
    background: rgba(255, 199, 32, 0.25) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    border: 2px solid var(--secondary-color) !important;
    transition: var(--transition) !important;
    display: inline-block !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.dashboard-btn:hover::after {
    width: 0 !important;
}

.dashboard-btn:hover {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

#loginArea {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#loginArea a {
    display: inline-block !important;
}

/* Hide Login button site-wide (keeps Enroll visible) */
.login-btn {
    display: none !important;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}


/* ============================================
   HERO SECTION WITH SLIDESHOW
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: rgba(18, 18, 18, 0.5);
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: fadeInSlide 1s ease-in-out;
}

.slide.fade {
    display: none;
}

.slide.fade.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 100%;
    padding: 0 20px;
    animation: scaleInContent 1s ease;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    animation: slideDownTitle 0.8s ease;
}

.slide-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
    animation: slideUpSubtitle 0.8s ease;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    z-index: 15;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(5px);
}

.next:hover {
    transform: translateX(-5px);
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}


/* ============================================
   HERO OVERLAY STYLING
   ============================================ */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 32, 91, 0.5);
    z-index: 10;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    animation: scaleInContent 1s ease;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    animation: slideDownTitle 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    animation: slideUpSubtitle 0.8s ease;
}


/* ============================================
   PAGE HEADER STYLING
   ============================================ */

.page-header {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInBackground 0.8s ease;
}

.header-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 91, 0.6);
}

.header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideDownTitle 0.8s ease;
}

.header-content p {
    font-size: 1.3rem;
    animation: slideUpSubtitle 0.8s ease;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ============================================
   SECTION TITLES & COMMON STYLES
   ============================================ */

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: fadeInUp 0.8s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 3.5rem 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 0.8s ease;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    animation: slideInRight 0.8s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-button-container {
    display: flex;
    justify-content: left;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-learn-more {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid var(--secondary-color);
}

.btn-learn-more:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}


/* ============================================
   VISION & MISSION SECTION
   ============================================ */

.vision-mission-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.1) 0%, rgba(255, 199, 32, 0.05) 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    color: #666;
    line-height: 1.8;
}


/* ============================================
   WHAT SETS APART SECTION
   ============================================ */

.apart-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.apart-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
}

.apart-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.apart-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.apart-item:hover i {
    transform: rotateY(360deg) scale(1.2);
    animation: spinIcon 0.6s ease;
}

.apart-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.apart-item:hover h4 {
    color: var(--white);
}

.apart-item p {
    color: #666;
    transition: var(--transition);
}

.apart-item:hover p {
    color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 3.5rem 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 32, 91, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: bold;
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 3.5rem 0;
    background: white;
    color: var(--text-color);
}

.testimonials-section .section-title {
    color: var(--text-color);
}

.testimonials-section .section-title::after {
    background: var(--secondary-color);
}

.testimonials-slider {
    background: var(--primary-color);
    border-radius: 10px;
    padding: 3rem;
    max-width: 800px;
    margin: 2rem auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    display: none;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.testimonial.fade-testimonial.active {
    display: block;
}

.testimonial p:first-child {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgb(255, 255, 255);
}

.testimonial h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-dots {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(9, 4, 161, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}


/* ============================================
   COURSES SECTION
   ============================================ */

.courses-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.course-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
    transition: var(--transition);
}

.course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.course-card:nth-child(even)>* {
    direction: ltr;
}

.course-image {
    overflow: hidden;
    min-height: 350px;
    margin-bottom: 1rem;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.course-list {
    list-style: none;
    margin-bottom: 1rem;
}

.course-list li {
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-list i {
    color: var(--secondary-color);
    font-weight: bold;
}

.course-ideal {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.course-ideal p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-enroll {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    font-size: 1rem;
    width: fit-content;
}

.btn-enroll:hover {
    background: #e6b300;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(255, 199, 32, 0.3);
}


/* ============================================
   TABLET RESPONSIVE (1024px)
   ============================================ */

@media (max-width: 1024px) {
    .course-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .course-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .course-image {
        min-height: 300px;
    }
    .course-content {
        padding: 1.8rem;
    }
    .course-content h3 {
        font-size: 1.6rem;
    }
    .course-description,
    .course-list li,
    .course-ideal p {
        font-size: 0.95rem;
    }
    .btn-enroll {
        padding: 0.75rem 1.8rem;
    }
}


/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.why-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: rotateY(360deg);
    background: var(--secondary-color);
    color: var(--primary-color);
}

.why-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-item p {
    color: #666;
}


/* ============================================
   ENROLL MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    animation: fadeInModal 0.3s ease;
    overflow: hidden;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: auto;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUpModal 0.5s ease;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover,
.close:focus {
    color: var(--primary-color);
}


/* ============================================
   FORM STYLING
   ============================================ */

.enroll-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 199, 32, 0.1);
}

.photo-upload {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-gray);
}

.photo-upload:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 199, 32, 0.05);
}

.upload-hint {
    pointer-events: none;
}

.upload-hint i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.upload-hint p {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.upload-hint span {
    display: block;
    color: #999;
    font-size: 0.85rem;
}

.form-group input[type="file"] {
    display: none;
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    grid-column: 1 / -1;
}

.btn-submit:hover {
    background: #e6b300;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 199, 32, 0.3);
}


/* ============================================
   PAYMENT MODAL STYLES
   ============================================ */

.payment-modal {
    max-width: 600px;
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-logo {
    width: 75px;
    height: 95px;
    margin-bottom: 1rem;
}

.payment-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.payment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-form .form-group {
    display: flex;
    flex-direction: column;
}

.payment-form .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.payment-form .form-group input {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.payment-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 32, 91, 0.2);
}

.payment-form .form-group input:read-only {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-pay {
    background: #ffd700;
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    font-style: italic;
    cursor: pointer;
    transition: var(--transition);
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.btn-pay:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}


/* User Login Modal */

.user-login-modal {
    max-width: 500px;
    width: 100%;
    aspect-ratio: 0.8 / 1;
}

.user-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-login-form .form-group {
    display: flex;
    flex-direction: column;
}

.user-login-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.user-login-form input {
    padding: 0.85rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.user-login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 32, 91, 0.2);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.login-footer a:hover {
    text-decoration: underline;
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-info-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.8;
}

.small-text {
    font-size: 0.85rem;
    color: #999;
}

.contact-form-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.02) 0%, rgba(255, 199, 32, 0.02) 100%);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.map-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hours-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.hours-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hours-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hours-card p {
    color: #666;
    font-size: 1.1rem;
}


/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.history-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.history-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.9;
    text-align: justify;
}

.history-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accreditation-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.accreditation-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.accreditation-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.badge p {
    color: var(--primary-color);
    font-weight: bold;
}

.values-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.05) 0%, rgba(255, 199, 32, 0.05) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: rotateY(360deg) scale(1.1);
    background: var(--secondary-color);
    color: var(--primary-color);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-card p {
    color: #666;
}

.facilities-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facility-item {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.facility-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.facility-item:hover .facility-image img {
    transform: scale(1.1);
}

.facility-item h4 {
    color: var(--primary-color);
    padding: 1rem 1rem 0.5rem;
}

.facility-item p {
    color: #666;
    padding: 0 1rem 1rem;
}

.team-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.05) 0%, rgba(255, 199, 32, 0.05) 100%);
}

.team-content {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.team-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.stat h4 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--primary-color);
    font-weight: bold;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}


/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDownTitle {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpSubtitle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleInContent {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes zoomInBackground {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spinIcon {
    from {
        transform: rotateY(0deg) scale(1);
    }
    to {
        transform: rotateY(360deg) scale(1.2);
    }
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   ANIMATION CLASSES
   ============================================ */

.card-animate {
    animation: fadeInUp 0.8s ease;
}

.course-animate {
    animation: fadeInUp 0.8s ease;
}

.value-animate {
    animation: fadeInUp 0.8s ease;
}

.facility-animate {
    animation: fadeInUp 0.8s ease;
}

.info-animate {
    animation: fadeInUp 0.8s ease;
}

.hours-animate {
    animation: fadeInUp 0.8s ease;
}

.modal-animate {
    animation: slideUpModal 0.5s ease;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: flex;
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 60px;
        left: 0;
        background: var(--primary-color);
        gap: 0;
    }
    .nav-menu.active li {
        width: 100%;
    }
    .nav-menu.active a {
        display: block;
        padding: 1rem;
    }
    .page-header {
        height: 400px;
        min-height: auto;
        overflow: hidden;
    }
    .about-section {
        padding: 2.5rem 0;
    }
    .courses-section {
        padding: 2.5rem 0;
    }
    .contact-info-section {
        padding: 2.5rem 0;
    }
    .contact-form-section {
        padding: 2.5rem 0;
    }
    .slide-title {
        font-size: 2rem;
    }
    .slide-subtitle {
        font-size: 1.1rem;
    }
    .hero-tagline {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .header-content h1 {
        font-size: 2rem;
    }
    .header-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-content,
    .history-content,
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    .course-card {
        grid-template-columns: 1fr;
        margin-bottom: 2.5rem;
        border-radius: 8px;
    }
    .course-card:nth-child(even) {
        direction: ltr;
    }
    .course-image {
        min-height: 280px;
    }
    .course-content {
        padding: 1.5rem;
    }
    .course-content h3 {
        font-size: 1.5rem;
    }
    .course-description,
    .course-list li {
        font-size: 0.95rem;
    }
    .course-ideal p {
        font-size: 0.85rem;
    }
    .btn-enroll {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-grid,
    .apart-grid,
    .why-grid,
    .values-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    .testimonials-slider {
        padding: 1.5rem;
    }
    .accreditation-badges {
        gap: 1rem;
    }
    .team-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    .section-title::after {
        width: 80px;
    }
    .slide-title {
        font-size: 1.5rem;
    }
    .slide-subtitle {
        font-size: 0.9rem;
    }
    .hero-section {
        min-height: 70vh;
    }
    .slideshow-container {
        height: 70vh;
    }
    .dots-container {
        bottom: 15px;
        gap: 8px;
    }
    .dot {
        height: 10px;
        width: 10px;
    }
    .nav-menu.active {
        top: 50px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .modal-content {
        width: 100%;
        max-height: 95vh;
        border-radius: 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .history-text p {
        text-align: left;
    }
    .course-image {
        min-height: 220px;
    }
    .course-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .course-content {
        padding: 1.2rem;
    }
    .course-description,
    .course-list li {
        font-size: 0.9rem;
    }
    .course-list li {
        margin-bottom: 0.4rem;
    }
    .course-ideal {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .course-ideal p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    .btn-enroll {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* ============================================
   HIDDEN ADMIN BUTTON
   ============================================ */

.hidden-admin-btn {
    width: auto;
    height: auto;
    padding: 8px 15px;
    margin-right: 15px;
    background: transparent;
    color: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    visibility: visible;
}

.hidden-admin-btn:hover {
    opacity: 0;
    background: transparent;
    color: transparent;
}


/* ============================================
   UNIFIED LOGIN SECTION
   ============================================ */

.unified-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #001447 50%, rgba(0, 20, 71, 0.98) 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.unified-login-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 199, 32, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.unified-login-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 150, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}


/* ============================================
   LOGIN SECTION
   ============================================ */

.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 50px 40px;
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 199, 32, 0.2);
}

.card-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.05;
}

.card-decoration-top {
    top: -30px;
    right: -30px;
    background: var(--secondary-color);
}

.card-decoration-bottom {
    bottom: -30px;
    left: -30px;
    background: var(--primary-color);
}


/* Role Selector */

.role-selector {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    display: none;
}

.role-selector label {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.role-options {
    display: flex;
    gap: 15px;
}

.role-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
}

.role-option input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.role-option span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.role-option:hover {
    border-color: var(--primary-color);
    background: rgba(0, 32, 91, 0.05);
}

.role-option input[type="radio"]:checked+span {
    color: var(--primary-color);
    font-weight: 600;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.logo-wrapper {
    display: inline-block;
    padding: 12px;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.1), rgba(255, 199, 32, 0.1));
    border-radius: 12px;
    margin-bottom: 25px;
    animation: slideDown 0.6s ease;
}

.login-header .logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 32, 91, 0.1));
}

.login-header h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-header p {
    color: #888;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hidden Admin Overlay Button */

.hidden-admin-overlay-btn {
    position: relative;
    display: block;
    margin: 0 auto 2px auto;
    width: 5px;
    height: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: visible;
}

.login-form .form-group {
    margin-bottom: 24px;
    position: relative;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.login-form label i {
    font-size: 15px;
}

.login-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    font-family: inherit;
}

.login-form input::placeholder {
    color: #bbb;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 32, 91, 0.08);
    transform: translateY(-1px);
}

.form-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #001d47 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 32, 91, 0.3);
    letter-spacing: 0.5px;
}

.btn-login:hover {
    background: linear-gradient(135deg, #001d47 0%, #001038 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 32, 91, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(3px);
}

.demo-info {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

.demo-credentials {
    background: linear-gradient(135deg, rgba(255, 199, 32, 0.08) 0%, rgba(0, 32, 91, 0.05) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 28px;
    border: 2px solid rgba(255, 199, 32, 0.3);
    animation: slideUp 0.6s ease 0.2s both;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.demo-header i {
    color: var(--secondary-color);
    font-size: 18px;
}

.demo-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 0.3px;
    margin: 0;
}

.demo-credentials .demo-info {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    text-align: left;
}

.demo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.demo-item:last-child {
    margin-bottom: 0;
}

.demo-label {
    color: #666;
    font-weight: 500;
}

.demo-value {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    background: rgba(255, 199, 32, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.signup-section {
    margin-top: 30px;
}

.signup-link {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.link-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.link-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.link-btn:hover::after {
    width: 100%;
}

.link-btn:hover {
    color: var(--secondary-color);
}


/* ============================================
   DASHBOARD SECTION
   ============================================ */

.dashboard-section {
    padding-top: 0;
}

.dashboard-content {
    padding: 40px 0;
    background: #f5f7fa;
    min-height: calc(100vh - 100px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-header h2 {
    color: var(--primary-color);
    font-size: 28px;
}

.btn-logout {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-logout:hover {
    background: #c82333;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.5s ease 0.1s both;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.dashboard-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-info p {
    margin-bottom: 12px;
    font-size: 14px;
}

.profile-info strong {
    color: var(--primary-color);
    margin-right: 8px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.approved {
    background: #d4edda;
    color: #155724;
}

.status-badge.rejected {
    background: #f8d7da;
    color: #721c24;
}


/* ============================================
   ENROLLMENT HISTORY
   ============================================ */

.enrollment-list {
    display: grid;
    gap: 15px;
}

.enrollment-item {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

.enrollment-item strong {
    color: var(--primary-color);
}


/* ============================================
   REFERENCE LINK SECTION
   ============================================ */

.reference-card {
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.05) 0%, rgba(255, 199, 32, 0.05) 100%);
    border: 2px solid #e0e0e0;
}

.reference-locked {
    text-align: center;
    padding: 40px 20px;
}

.lock-icon {
    font-size: 60px;
    color: #dc3545;
    margin-bottom: 15px;
}

.lock-message {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.lock-info {
    color: #666;
    font-size: 14px;
}

.reference-unlocked {
    animation: slideDown 0.5s ease;
}

.reference-link-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.reference-link-box p:first-child {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.link-container input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: var(--primary-color);
    font-family: monospace;
}

.btn-copy {
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-copy:hover {
    background: rgba(0, 32, 91, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 32, 91, 0.2);
}

.link-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.btn-reference-page {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #0d5fa8 0%, #0a4886 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-reference-page:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 95, 168, 0.3);
}


/* ============================================
   ADMIN LOGIN SECTION
   ============================================ */


/* ============================================
   ADMIN LOGIN SECTION
   ============================================ */

.admin-login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.05) 0%, rgba(255, 199, 32, 0.02) 100%);
}

.admin-login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.admin-login-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    animation: slideUp 0.5s ease;
    border-top: 4px solid var(--primary-color);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-header .logo {
    height: 60px;
    margin-bottom: 20px;
}

.admin-login-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.admin-login-header p {
    color: #666;
    font-size: 14px;
}

.admin-login-form .form-group {
    margin-bottom: 20px;
}

.admin-login-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.admin-login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
}

.admin-login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 32, 91, 0.1);
}

.btn-admin-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 32, 91, 0.85) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-admin-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 32, 91, 0.3);
}

.admin-info {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

.back-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}


/* ============================================
   ADMIN DASHBOARD SECTION
   ============================================ */

.admin-dashboard-section {
    background: #f5f7fa;
    min-height: calc(100vh - 70px);
    padding-top: 20px;
}

.admin-header-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.admin-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header-bar h1 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-color);
}

.admin-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-sidebar {
    width: 100%;
}

.admin-menu {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    list-style: none;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.admin-menu-item {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.admin-menu-item:hover {
    background: #f5f7fa;
    border-left-color: var(--primary-color);
}

.admin-menu-item.active {
    background: rgba(0, 32, 91, 0.08);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.admin-menu-item i {
    margin-right: 10px;
    width: 20px;
}

.admin-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-section-header {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.admin-section-header h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0 0 5px 0;
}

.admin-section-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-header h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin: 0;
    flex: 0 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 15px;
    min-width: 250px;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 32, 91, 0.1);
}

.search-bar i {
    color: #999;
    font-size: 16px;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    font-family: inherit;
}

.search-bar input::placeholder {
    color: #ccc;
}

.admin-tab {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.users-list {
    display: grid;
    gap: 20px;
}

.user-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
}

.user-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 32, 91, 0.15);
}

.user-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.user-email {
    font-size: 14px;
    color: #999;
}

.user-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.user-status.pending {
    background: #fff3cd;
    color: #856404;
}

.user-status.approved {
    background: #d4edda;
    color: #155724;
}

.user-status.rejected {
    background: #f8d7da;
    color: #721c24;
}

.user-card-info {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.user-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-view {
    flex: 1;
    min-width: 120px;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-view:hover {
    background: rgba(0, 32, 91, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 32, 91, 0.2);
}

.btn-approve {
    flex: 1;
    min-width: 120px;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-approve:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-reject {
    flex: 1;
    min-width: 120px;
    padding: 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-reject:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-logout {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-logout:hover {
    background: rgba(255, 199, 32, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 199, 32, 0.3);
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}


/* ============================================
   USER DETAILS MODAL
   ============================================ */

.user-details-modal {
    max-width: 600px;
}

.user-details-content {
    margin: 20px 0;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
}

.detail-item {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    width: 150px;
}

.detail-value {
    color: var(--text-color);
    flex: 1;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.reference-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.reference-section h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.reference-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.reference-link-display {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reference-link-display input {
    flex: 1;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
    color: var(--primary-color);
}

.reference-link-display input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.no-data {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}


/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ============================================
   MODERN ENROLLMENT FORM STYLES
   ============================================ */

.modern-enroll-modal {
    max-width: 720px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.enroll-modal-header {
    background: linear-gradient(135deg, var(--primary-color), #003a8a);
    color: white;
    padding: 30px 35px;
    text-align: center;
}

.enroll-modal-header .enroll-logo {
    width: 55px;
    height: 70px;
    margin-bottom: 10px;
}

.enroll-modal-header h2 {
    color: white !important;
    margin: 0 0 5px;
    font-size: 1.6rem;
}

.enroll-modal-header .form-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0;
}

.enroll-success {
    text-align: center;
    padding: 50px 35px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-icon i {
    animation: scaleInContent 0.5s ease;
}

.enroll-success h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.enroll-success p {
    color: #666;
    margin-bottom: 25px;
}

/* Form Steps Progress */
.form-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 25px 35px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    position: relative;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 0.8;
}

.step.completed .step-number {
    background: #28a745;
    border-color: #28a745;
}

.step + .step::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #ddd;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: var(--primary-color);
    background: white;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Step Content */
.step-content {
    display: none;
    padding: 25px 35px;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.step-title i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Form Grid Layouts */
.form-row {
    display: grid;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.form-row.three-col {
    grid-template-columns: 1fr 0.5fr 1fr;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 32, 91, 0.08);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

/* Photo Upload */
.photo-upload {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fafafa;
}

.photo-upload:hover {
    border-color: var(--primary-color);
    background: rgba(0, 32, 91, 0.03);
}

.upload-hint i {
    font-size: 2rem;
    color: #ccc;
    margin-bottom: 8px;
}

.upload-hint p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.upload-hint span {
    color: #999;
    font-size: 0.8rem;
}

/* Course Summary Card */
.course-summary-card {
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    border: 1px solid #d0d9f0;
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
}

.course-summary-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1rem;
}

.course-summary-card h4 i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 32, 91, 0.08);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.summary-value {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
}

/* Review Card */
.review-card {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.review-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1rem;
}

.review-card h4 i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.review-grid {
    display: grid;
    gap: 8px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
}

.review-value {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.85rem;
    text-align: right;
}

/* Agreement Checkbox */
.agreement {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-next,
.btn-prev {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-next {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    background: #003a8a;
    transform: translateY(-2px);
}

.btn-prev {
    background: #e8e8e8;
    color: #555;
}

.btn-prev:hover {
    background: #ddd;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-enroll-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 199, 32, 0.4);
    border: 2px solid var(--secondary-color);
}

.btn-enroll-hero:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 199, 32, 0.3);
}

.btn-explore {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-3px);
}

/* Modern Enroll Form Submit Button */
.modern-enroll-form .btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #003a8a);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-enroll-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 32, 91, 0.3);
}

.modern-enroll-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Enrollment Modal Responsive */
@media (max-width: 768px) {
    .modern-enroll-modal {
        width: 100%;
        border-radius: 0;
        margin: 0;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .enroll-modal-header {
        padding: 20px;
    }
    
    .form-row.two-col,
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .form-steps {
        padding: 15px 20px;
        gap: 5px;
    }
    
    .step {
        padding: 5px 10px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .form-nav {
        flex-direction: column;
    }
    
    .btn-next {
        margin-left: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-enroll-hero,
    .btn-explore {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .hidden-admin-btn {
        padding: 6px 10px;
        font-size: 11px;
        margin-right: 10px;
    }
    .nav-logo {
        font-size: 1.2rem;
    }
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .admin-sidebar {
        width: 100%;
    }
    .admin-menu {
        display: flex;
        gap: 10px;
        overflow-x: auto;
    }
    .admin-menu-item {
        flex: 1;
        white-space: nowrap;
        padding: 12px 15px;
    }
    .admin-header-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .admin-user-info {
        width: 100%;
        justify-content: space-between;
    }
    .tab-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .search-bar {
        min-width: 100%;
    }
    .user-card-actions {
        flex-direction: column;
    }
    .btn-view,
    .btn-approve,
    .btn-reject {
        width: 100%;
    }
    .btn-copy {
        width: 100%;
        justify-content: center;
    }
    .reference-link-display {
        flex-direction: column;
    }
    .reference-link-display input {
        width: 100%;
    }
}