/* Global Variables */
:root {
    --primary-blue: #0B2447;
    --secondary-blue: #19376D;
    --accent-gold: #D4AF37;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F2D06B 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    /* --heading-font: 'Syne', sans-serif; */
    /* --heading-font: "Arimo", sans-serif; */
    /* --heading-font: "Playfair Display", serif; */
    /* --heading-font: "Spectral", serif; */
    --heading-font: "Space Grotesk", sans-serif;
    --body-font: 'Manrope', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    /* scroll-padding: 80px; */
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

p {
    line-height: 1.7;
    color: var(--text-gray);
}

.section-padding {
    padding: 100px 0;
}

.text-gold {
    color: var(--accent-gold) !important;
}

/* Buttons */
.myBtn {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.myBtn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-blue);
}

/* Header Section */
.header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    background: linear-gradient(rgba(11, 36, 71, 0.8), rgba(11, 36, 71, 0.6)), url('../images/shot-businessman-against-large-building.jpg') center/cover no-repeat;
    z-index: -1;
}

.header h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
}

.header p {
    font-size: 20px;
    max-width: 700px;
    opacity: 0.9;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: 0.3s;
}

.navbar-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.navbar-brand img{
    width: 150px;
    height: auto;
}

.navbar-toggler {
    border: none;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Fullpage Nav Overlay */
.fullpage-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-blue);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.fullpage-nav .nav-links li {
    margin: 20px 0;
}

.fullpage-nav .nav-links a {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.fullpage-nav .nav-links a:hover {
    color: var(--accent-gold);
}

.close-nav {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    opacity: 0.7;
}

.close-nav:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Stats Section */
.stats-section {
    background: var(--primary-blue);
    padding: 80px 0;
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Lead Section */
.lead_section {
    padding: 100px 0;
    background: var(--white);
}

.lead_section .section_title h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.lead_section p {
    font-size: 24px;
    max-width: 800px;
    margin-left: auto;
    color: var(--text-dark);
}

/* Endorse Section */
.endorse-box {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.endorse-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05));
    pointer-events: none;
}

.endorse-logo img {
    max-width: 220px;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: 0.3s;
}

.endorse-box:hover .endorse-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.endorse-title {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Highlights Section */
.highlights-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.highlight-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.highlight-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Scholarship Section */
.scholarship-section {
    background: var(--white);
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.scholarship-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.scholarship-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.sch-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.scholarship-item h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

/* Exceptional Scholarship Card */
.exceptional-card {
    background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.exceptional-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    transform: rotate(45deg);
}

.exceptional-header {
    position: relative;
    z-index: 1;
}

.exceptional-header h4 {
    color: var(--accent-gold);
    font-size: 28px;
    margin-bottom: 10px;
}

.exceptional-list {
    position: relative;
    z-index: 1;
}

.exc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.exc-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.exc-item i {
    margin-top: 5px;
    font-size: 18px;
}

.exc-item span {
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .exceptional-list {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .scholarship-grid {
        grid-template-columns: 1fr;
    }
}


/* About Section */
.about-pro-master {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.apm-bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    z-index: 0;
}

.apm-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.apm-image-card img {
    width: 100%;
    display: block;
}

.apm-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.apm-icon {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: block;
}

.apm-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 30px;
    box-shadow: var(--shadow-md);
}

.apm-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    color: var(--white);
}

/* Certificate Section */
.certificate-section {
    background: var(--white);
    overflow: hidden;
}

.cert-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cert-main {
    width: 60%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.cert-transcript {
    width: 50%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transform: translate(-50px, 30px);
    z-index: 1;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-gray);
}

/* Programs Horizontal Scroll */

.pm-types-section {
    padding: 120px 0;
    background: var(--primary-blue);
    color: var(--white);
    overflow: hidden;
}

.pm-types-title h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 10px;
}

.pm-types-title p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
}

.pm-horizontal-scroll {
    display: flex;
    gap: 30px;
    width: max-content;
    padding-left: 5vw;
}

.pm-type-card {
    min-width: 350px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 40px 10px 40px;
    transition: 0.4s ease;
    position: relative;
}

.pm-type-card:hover {
    background: var(--white);
    transform: translateY(-15px);
}

.pm-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-tag.available {
    background: rgba(40, 167, 69, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.pm-tag.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pm-type-card:hover .pm-tag.available {
    background: #e8f5e9;
    color: #2e7d32;
}

.pm-type-card:hover .pm-tag.upcoming {
    background: #f5f5f5;
    color: #616161;
    border-color: #e0e0e0;
}

.pm-type-card h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
    margin-top: 15px;
}

.pm-type-card h3 a{
    color: var(--white);
}

.pm-type-card:hover h3 a{
    color: #616161;
}

.pm-type-card p {
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}

.pm-type-card:hover h3 {
    color: var(--primary-blue);
}

.pm-type-card:hover p {
    color: var(--text-gray);
}

/* assessment section */


/* assessment section */

/* Footer */
.landing-footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.landing_footer_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%;
    background: url('../images/foot_bg.jpg') center/cover;
    opacity: 0.05;
}

.footer-logo h4 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-logo a img{
    height: 180px;
    width: auto;
}

.footer-title {
    color: var(--accent-gold);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-about{
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    margin-bottom: 10px;
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
    opacity: 0.6;
    font-size: 14px;
}

.footer-bottom p{
    color: rgba(255, 255, 255, 0.9);;
}

/* Parallax & Dedicated Sections */

/* Parallax Utility */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 36, 71, 0.85); /* Dark blue overlay */
    z-index: 1;
}

/* Entry Requirements */
.entry-req-section {
    /* background-image: url('../images/entry_req.jpg'); */
    /* min-height: 600px; */
    overflow: hidden;
}

.entry-requirement-bg{
    background: linear-gradient(rgba(11, 36, 71, 0.85), rgba(11, 36, 71, 0.85)), url('../images/entry_req.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    height: 125%;
    width: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Assessment Section */
.assessment-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.assessment-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.eval-box {
    transition: 0.3s;
    border: 1px solid transparent;
}

.eval-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

/* Required Documents */
.documents-section {
    /* background-image: url('../images/foot_bg.jpg'); */
    overflow: hidden;
}

.document-section-bg{
    background: linear-gradient(rgba(11, 36, 71, 0.85), rgba(11, 36, 71, 0.85)), url('../images/req_doc.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%;
}

.glass-card-sm {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: 0.3s;
}

.glass-card-sm:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

/* Administration Section */
.admin-grid {
    border: 1px solid rgba(0,0,0,0.05);
}

.admin-item strong {
    color: var(--primary-blue);
    font-size: 18px;
}

/* Mobile Responsiveness for Parallax */
@media (max-width: 991px) {
    .parallax-section {
        background-attachment: scroll; /* Disable fixed attachment on mobile for performance/support */
        min-height: auto; /* Allow height to adjust to content */
    }
    
    .entry-req-section {
        padding: 80px 0;
    }
}

/* ============================================
   SCHOLARSHIP MODAL STYLES
   ============================================ */

/* Modal Content */
.scholarship-modal-content {
    background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.scholarship-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Modal Header */
.scholarship-modal-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    position: relative;
    z-index: 1;
}

.scholarship-modal-title-wrapper {
    text-align: center;
    width: 100%;
}

.scholarship-modal-header .modal-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.scholarship-modal-header .modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
}

.scholarship-modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scholarship-modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Modal Body */
.scholarship-modal-body {
    padding: 40px;
    background: var(--white);
    position: relative;
    z-index: 1;
    max-height: 70vh;
    overflow-y: auto;
}

/* Custom Scrollbar */
.scholarship-modal-body::-webkit-scrollbar {
    width: 8px;
}

.scholarship-modal-body::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.scholarship-modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.scholarship-modal-body::-webkit-scrollbar-thumb:hover {
    background: #c49b2e;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--accent-gold);
    font-size: 22px;
}

/* Custom Form Groups */
.custom-form-group {
    margin-bottom: 20px;
}

.custom-label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.custom-label i {
    color: var(--accent-gold);
    font-size: 16px;
}

.custom-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(11, 36, 71, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.custom-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: #fffef8;
}

.custom-input::placeholder {
    color: #999;
}

/* Select Dropdown */
select.custom-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

/* Textarea */
textarea.custom-input {
    resize: vertical;
    min-height: 120px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.category-option {
    cursor: pointer;
    margin: 0;
}

.category-option input[type="radio"] {
    display: none;
}

.category-card {
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
}

.category-card span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.4;
}

.category-card:hover {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.category-option input[type="radio"]:checked + .category-card {
    background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(11, 36, 71, 0.2);
}

.category-option input[type="radio"]:checked + .category-card i {
    color: var(--accent-gold);
    transform: scale(1.15);
}

.category-option input[type="radio"]:checked + .category-card span {
    color: var(--white);
}

/* Experience Options */
.experience-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.experience-option {
    cursor: pointer;
    margin: 0;
}

.experience-option input[type="radio"] {
    display: none;
}

.experience-badge {
    display: inline-block;
    padding: 12px 28px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.experience-option:hover .experience-badge {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-option input[type="radio"]:checked + .experience-badge {
    background: var(--gradient-gold);
    border-color: var(--accent-gold);
    color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Submit Button */
.scholarship-submit-btn {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 50px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scholarship-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.scholarship-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.scholarship-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--primary-blue);
}

.scholarship-submit-btn i {
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .scholarship-modal-header {
        padding: 25px 20px;
    }
    
    .scholarship-modal-header .modal-title {
        font-size: 22px;
    }
    
    .scholarship-modal-header .modal-subtitle {
        font-size: 13px;
    }
    
    .scholarship-modal-body {
        padding: 25px 20px;
        max-height: 60vh;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-options {
        flex-direction: column;
    }
    
    .experience-badge {
        width: 100%;
        text-align: center;
    }
    
    .scholarship-submit-btn {
        width: 100%;
        padding: 14px 30px;
    }
}

/* Modal Animation */
.modal.fade .scholarship-modal-content {
    transform: scale(0.9);
    opacity: 0;
}

.modal.show .scholarship-modal-content {
    transform: scale(1);
    opacity: 1;
}


