/* ========================================
   Custom Pages Styling - Accreditation, Career Center, Research
   Modern & Beautiful Design
   ======================================== */

/* Global Spacing Class */
.spacing {
    padding: 80px 0;
}

@media (max-width: 991px) {
    .spacing {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .spacing {
        padding: 50px 0;
    }
}

/* ========================================
   ACCREDITATION PAGE STYLES
   ======================================== */

/* Main Section */
.accreditation-main {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.accreditation-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(119, 3, 3, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(119, 3, 3, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-heading h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-heading h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color, #770303), transparent);
    border-radius: 2px;
}

.section-heading h6 {
    font-size: 18px;
    color: var(--body-color, #666666);
    font-weight: 400;
    line-height: 1.7;
    max-width: 800px;
    margin: 20px auto 0;
}

.accreditation-description {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
    border: 1px solid rgba(119, 3, 3, 0.08);
    position: relative;
    overflow: hidden;
}

.accreditation-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.5));
}

.accreditation-description h5 {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color, #770303);
    margin-bottom: 20px;
}

.accreditation-description p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.accreditation-description p:last-child {
    margin-bottom: 0;
}

/* Divider */
.section-divider {
    position: relative;
    text-align: center;
    margin: 60px 0;
}

.divider-line {
    height: 3px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(119, 3, 3, 0.1) 25%,
        var(--accent-color, #770303) 50%,
        rgba(119, 3, 3, 0.1) 75%,
        transparent 100%);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 2px;
}

/* Tabs Styling - Modern Design */
.accreditation-tabs {
    margin: 50px 0 40px;
    position: relative;
}

.accreditation-tabs .nav-tabs {
    border: none;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background: white;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.accreditation-tabs .nav-link {
    border: 2px solid transparent;
    background: #f8f9fa;
    color: #555;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 35px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.accreditation-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.accreditation-tabs .nav-link:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: var(--accent-color, #770303);
    border-color: rgba(119, 3, 3, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(119, 3, 3, 0.15);
}

.accreditation-tabs .nav-link:hover::before {
    left: 100%;
}

.accreditation-tabs .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, rgba(119, 3, 3, 0.85) 100%);
    border-color: var(--accent-color, #770303);
    box-shadow: 0 8px 25px rgba(119, 3, 3, 0.3);
    transform: translateY(-2px);
}

/* Tab Content */
/* .accreditation-content {
    padding: 60px 0 40px;
    min-height: 500px;
} */

.tab-pane {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accreditation-intro-box {
    background: linear-gradient(135deg,
        rgba(119, 3, 3, 0.03) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(119, 3, 3, 0.03) 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--accent-color, #770303);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.accreditation-intro-box p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
    color: #444;
}

.accreditation-intro-box p:last-child {
    margin-bottom: 0;
}

/* Body Cards - Premium Design */
.accreditation-body-card {
    background: white;
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.accreditation-body-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(119, 3, 3, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.4s ease;
}

.accreditation-body-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.15);
    border-color: rgba(119, 3, 3, 0.1);
}

.accreditation-body-card:hover::before {
    transform: translate(50%, -50%) scale(1.5);
    opacity: 0.8;
}

.accreditation-body-header {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.accreditation-logo {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.accreditation-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.3));
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.accreditation-body-card:hover .accreditation-logo::after {
    opacity: 0.1;
}

.accreditation-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.accreditation-body-info {
    flex: 1;
}

.accreditation-body-info h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 10px;
    line-height: 1.3;
}

.accreditation-body-description {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.accreditation-body-description p {
    margin-bottom: 0;
}

.accreditation-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-visit-website,
.btn-view-certificate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-visit-website::before,
.btn-view-certificate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-visit-website:hover::before,
.btn-view-certificate:hover::before {
    width: 300px;
    height: 300px;
}

.btn-visit-website {
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, rgba(119, 3, 3, 0.85) 100%);
    color: white;
    border: 2px solid var(--accent-color, #770303);
    box-shadow: 0 4px 15px rgba(119, 3, 3, 0.2);
}

.btn-visit-website:hover {
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.9) 0%, var(--accent-color, #770303) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(119, 3, 3, 0.35);
    color: white;
}

.btn-view-certificate {
    background: white;
    color: var(--accent-color, #770303);
    border: 2px solid var(--accent-color, #770303);
}

.btn-view-certificate::before {
    background: var(--accent-color, #770303);
}

.btn-view-certificate:hover {
    background: var(--accent-color, #770303);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(119, 3, 3, 0.25);
}

.btn-visit-website i,
.btn-view-certificate i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-visit-website:hover i {
    transform: translateX(3px);
}

.btn-view-certificate:hover i {
    transform: scale(1.1);
}

/* Memberships Section */
.memberships-section {
    background: linear-gradient(135deg,
        rgba(119, 3, 3, 0.02) 0%,
        #ffffff 50%,
        rgba(119, 3, 3, 0.02) 100%);
    padding: 50px;
    border-radius: 20px;
    border-left: 6px solid var(--accent-color, #770303);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
}

.memberships-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.memberships-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.memberships-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #333;
    padding: 18px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.memberships-list li:hover {
    transform: translateX(5px);
    border-left-color: var(--accent-color, #770303);
    box-shadow: 0 6px 20px rgba(119, 3, 3, 0.12);
}

.memberships-list li i {
    color: var(--accent-color, #770303);
    font-size: 10px;
    flex-shrink: 0;
}

/* ========================================
   WELCOME FORM SECTION (Universal)
   ======================================== */

.welcome-form-section {
    background: linear-gradient(135deg,
        var(--accent-color, #770303) 0%,
        rgba(119, 3, 3, 0.9) 50%,
        var(--accent-color, #770303) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.welcome-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.welcome-form-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.welcome-form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.welcome-text {
    flex: 1;
    color: white;
}

.welcome-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.welcome-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

.welcome-form {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex: 1.2;
    max-width: 600px;
}

.welcome-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    transition: all 0.3s ease;
    color: #333;
}

.welcome-form input::placeholder {
    color: #999;
}

.welcome-form input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.welcome-form button {
    padding: 16px 35px;
    background: white;
    color: var(--accent-color, #770303);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.welcome-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #ffffff;
}

.welcome-form button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.welcome-form button:hover i {
    transform: translateX(3px);
}

/* Responsive Welcome Form */
@media (max-width: 991px) {
    .welcome-form-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .welcome-text h2 {
        font-size: 38px;
    }

    .welcome-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .welcome-form-section {
        padding: 40px 0;
    }

    .welcome-text h2 {
        font-size: 32px;
    }

    .welcome-text p {
        font-size: 16px;
    }

    .welcome-form {
        flex-direction: column;
        gap: 12px;
    }

    .welcome-form input,
    .welcome-form button {
        width: 100%;
    }

    .welcome-form button {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .welcome-text h2 {
        font-size: 28px;
    }

    .welcome-form input {
        padding: 14px 18px;
        font-size: 14px;
    }

    .welcome-form button {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* ========================================
   CAREER CENTER PAGE STYLES
   ======================================== */

.career-main {
    padding: 80px 0;
    background: white;
}

/* Recent Events Section */
.recent-events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.events-slider-wrapper {
    margin-top: 40px;
}

.events-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(119, 3, 3, 0.15);
}

.event-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-info {
    padding: 25px;
}

.event-info h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color, #000000);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 50px;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color, #770303);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: #fff5f5;
    border-radius: 20px;
}

.event-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Career Stats Section */
.career-stats-section {
    padding: 80px 0;
    background: white;
}

.accelerate-degree-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.accelerate-degree-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(77, 3, 10, 0.9) 100%);
    z-index: 1;
}

.accelerate-degree-card > * {
    position: relative;
    z-index: 2;
}

.accelerate-degree-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.accelerate-degree-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.accelerate-degree-card .btn {
    background: white;
    color: var(--accent-color, #770303);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.accelerate-degree-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.career-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    height: 100%;
}

.career-stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.career-stat-item:hover {
    border-color: var(--accent-color, #770303);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(119, 3, 3, 0.15);
}

.career-stat-item .stat-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color, #770303);
    line-height: 1;
    margin-bottom: 12px;
}

.career-stat-item .stat-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
}

/* ========================================
   RESEARCH PAGE STYLES
   ======================================== */

.research-main {
    padding: 80px 0;
    background: white;
}

/* Recognizing Talents Section - Modern Design */
.recognizing-talents-section {
    padding: 60px 0;
    position: relative;
}

.recognizing-talents-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--accent-color, #770303) 50%,
        transparent 100%);
}

.talents-visual {
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.talents-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.talents-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg,
        rgba(119, 3, 3, 0.05) 0%,
        rgba(119, 3, 3, 0.02) 100%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.talents-icon {
    max-width: 140px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(119, 3, 3, 0.15));
}

.talents-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color, #770303);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

.talents-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-color, #770303) 50%,
        transparent 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.talents-content {
    padding: 0 40px 0 60px;
    position: relative;
}

.talents-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: rgba(119, 3, 3, 0.1);
}

.talents-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin: 0;
    text-align: justify;
    position: relative;
}

/* High Standards Section */
.high-research-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.high-research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(119, 3, 3, 0.85) 100%);
}

.high-research-section .container {
    position: relative;
    z-index: 2;
}

.high-research-section h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.high-research-section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Content Boxes */
.research-content-boxes {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.research-team-departments-section {
    margin-top: 60px !important;
    padding-top: 60px;
    border-top: 3px solid #e8e8e8;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 80px 0;
    margin-left: -15px;
    margin-right: -15px;
}

.research-section-title {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.research-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color, #770303), transparent);
    border-radius: 2px;
}

.research-content-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.research-content-box.active {
    border-color: var(--accent-color, #770303);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.research-content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(119, 3, 3, 0.15);
}

.research-content-box h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color, #770303);
    margin-bottom: 20px;
}

.research-content-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Research Team - Modern Redesign */
.research-team-slider {
    position: relative;
}

.team-member-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--accent-color, #770303) 0%,
        rgba(119, 3, 3, 0.5) 50%,
        var(--accent-color, #770303) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
    z-index: 2;
}

.team-member-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.2);
    border-color: rgba(119, 3, 3, 0.1);
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(119, 3, 3, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

.team-member-info {
    padding: 30px 25px;
    background: white;
    text-align: center;
}

.team-member-info h6 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 10px;
    line-height: 1.3;
}

.team-member-info p {
    font-size: 15px;
    color: var(--accent-color, #770303);
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

/* Research Departments - Modern Redesign */
.research-departments {
    background: linear-gradient(135deg,
        rgba(119, 3, 3, 0.02) 0%,
        #ffffff 30%,
        #ffffff 70%,
        rgba(119, 3, 3, 0.02) 100%);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(119, 3, 3, 0.08);
    position: relative;
    overflow: hidden;
}

.research-departments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,
        var(--accent-color, #770303) 0%,
        rgba(119, 3, 3, 0.6) 50%,
        var(--accent-color, #770303) 100%);
}

.research-departments h5 {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color, #770303);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.research-departments h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color, #770303);
    border-radius: 2px;
}

.research-departments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.research-departments li {
    padding: 18px 25px;
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.research-departments li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color, #770303);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.research-departments li::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color, #770303);
    opacity: 0;
    transition: all 0.3s ease;
}

.research-departments li:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    transform: translateX(8px);
    border-color: rgba(119, 3, 3, 0.15);
    box-shadow: 0 6px 24px rgba(119, 3, 3, 0.12);
    padding-right: 50px;
}

.research-departments li:hover::before {
    transform: scaleY(1);
}

.research-departments li:hover::after {
    opacity: 1;
    right: 20px;
}

.research-departments li:last-child {
    margin-bottom: 0;
}

/* Research Stats */
.research-numbers-section {
    padding: 80px 0;
    background: white;
}

.research-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.research-stat-item {
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, var(--accent-color-dark, #4d030a) 100%);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(119, 3, 3, 0.2);
    transition: all 0.3s ease;
}

.research-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(119, 3, 3, 0.3);
}

.research-stat-item .stat-value {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
}

.research-stat-item .stat-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 992px) {
    .career-stats-grid {
        grid-template-columns: 1fr;
    }

    .research-stats-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-body-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .accreditation-main {
        padding: 60px 0;
    }

    .section-heading h3 {
        font-size: 36px;
    }

    .accreditation-description {
        padding: 35px;
    }

    .accreditation-body-card {
        padding: 35px;
    }

    .accreditation-body-header {
        gap: 25px;
    }

    .accreditation-logo {
        width: 100px;
        height: 100px;
    }

    .research-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .accreditation-main {
        padding: 40px 0;
    }

    .section-heading h3 {
        font-size: 28px;
    }

    .section-heading h3::after {
        width: 60px;
        height: 3px;
    }

    .section-heading h6 {
        font-size: 16px;
    }

    .accreditation-description {
        padding: 25px;
    }

    .accreditation-description h5 {
        font-size: 22px;
    }

    .accreditation-tabs .nav-tabs {
        padding: 10px;
        gap: 8px;
    }

    .accreditation-tabs .nav-link {
        font-size: 14px;
        padding: 14px 20px;
    }

    .accreditation-body-card {
        padding: 25px;
    }

    .accreditation-body-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .accreditation-logo {
        width: 90px;
        height: 90px;
    }

    .accreditation-body-info h4 {
        font-size: 20px;
    }

    .accreditation-actions {
        justify-content: center;
    }

    .btn-visit-website,
    .btn-view-certificate {
        padding: 12px 20px;
        font-size: 14px;
    }

    .memberships-section {
        padding: 30px 20px;
    }

    .memberships-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .events-slider {
        grid-template-columns: 1fr;
    }

    .accelerate-degree-card {
        min-height: 300px;
    }

    .research-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-opportunities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-heading h3 {
        font-size: 24px;
    }

    .accreditation-description {
        padding: 20px;
    }

    .accreditation-tabs .nav-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .accreditation-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .accreditation-body-card {
        padding: 20px;
    }

    .btn-visit-website,
    .btn-view-certificate {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   STUDENT RESOURCE CENTER PAGE STYLES
   ======================================== */

/* Hero Banner */
.src-hero-banner {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.src-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(119, 3, 3, 0.6) 100%);
}

.src-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.src-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.src-hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Breadcrumb Section */
.src-breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.src-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.src-breadcrumb-item {
    color: #666;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.src-breadcrumb-item:hover {
    color: var(--accent-color, #770303);
}

.src-breadcrumb-item.active {
    color: var(--accent-color, #770303);
    font-weight: 600;
}

.src-breadcrumb-separator {
    color: #999;
    font-size: 14px;
}

/* Main Section */
.src-main-section {
    padding: 80px 0;
    background: white;
}

.src-main-content {
    max-width: 900px;
    margin: 0 auto;
}

.src-main-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    line-height: 1.4;
    margin-bottom: 25px;
}

.src-main-subheading {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Support Hub Section */
.src-support-hub-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.src-support-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.src-support-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color, #770303);
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.src-support-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color, #770303), transparent);
    border-radius: 2px;
}

.src-support-text {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.src-support-text:last-child {
    margin-bottom: 0;
}

/* Why Enroll Section */
.src-why-enroll-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.src-why-enroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(119, 3, 3, 0.8) 100%);
}

.src-why-enroll-section .container {
    position: relative;
    z-index: 2;
}

.src-why-enroll-heading {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.src-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.src-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    text-align: center;
}

.src-service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.src-service-focused {
    background: var(--accent-color, #770303);
    border-color: var(--accent-color, #770303);
}

.src-service-focused:hover {
    background: var(--accent-color, #770303);
}

.src-service-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.src-service-focused .src-service-number {
    color: rgba(255, 255, 255, 0.3);
}

.src-service-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.src-service-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Stats Section */
.src-stats-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.src-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(77, 3, 10, 0.9) 100%);
}

.src-stats-section .container {
    position: relative;
    z-index: 2;
}

.src-stats-section .row {
    align-items: center;
}

.src-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.src-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.src-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.src-stat-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.src-stat-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.src-counselor-content {
    padding-left: 40px;
}

.src-counselor-content p {
    font-size: 18px;
    line-height: 1.9;
    color: white;
    margin-bottom: 25px;
}

.src-counselor-content p:first-child {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
}

.src-counselor-content p:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.src-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.src-testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.src-testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.src-testimonial-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.src-testimonial-quote {
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.src-quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    color: var(--accent-color, #770303);
    opacity: 0.2;
}

.src-testimonial-quote p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.src-testimonial-author h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 5px;
}

.src-testimonial-author span {
    font-size: 16px;
    color: var(--accent-color, #770303);
    font-weight: 500;
}

.src-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.src-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.src-dot:hover {
    background: #bbb;
}

.src-dot.active {
    background: var(--accent-color, #770303);
    transform: scale(1.2);
}

/* Student Resource Center Responsive */
@media (max-width: 991px) {
    .src-hero-title {
        font-size: 52px;
    }

    .src-hero-subtitle {
        font-size: 18px;
    }

    .src-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .src-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .src-counselor-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .src-why-enroll-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .src-hero-banner {
        min-height: 400px;
    }

    .src-hero-title {
        font-size: 40px;
    }

    .src-hero-subtitle {
        font-size: 16px;
    }

    .src-main-section {
        padding: 60px 0;
    }

    .src-main-heading {
        font-size: 28px;
    }

    .src-support-title {
        font-size: 32px;
    }

    .src-why-enroll-section {
        padding: 60px 0;
    }

    .src-why-enroll-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .src-service-card {
        padding: 30px 20px;
    }

    .src-service-number {
        font-size: 48px;
    }

    .src-service-title {
        font-size: 22px;
    }

    .src-stats-section {
        padding: 60px 0;
    }

    .src-stats-grid {
        grid-template-columns: 1fr;
    }

    .src-stat-value {
        font-size: 40px;
    }

    .src-counselor-content p:first-child {
        font-size: 20px;
    }

    .src-testimonials-section {
        padding: 60px 0;
    }

    .src-testimonial-quote {
        padding: 30px 20px;
    }

    .src-testimonial-quote p {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .src-hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .src-hero-content {
        padding: 60px 0;
    }

    .src-main-heading {
        font-size: 24px;
    }

    .src-support-title {
        font-size: 26px;
    }

    .src-why-enroll-heading {
        font-size: 24px;
    }

    .src-service-number {
        font-size: 40px;
    }

    .src-service-title {
        font-size: 20px;
    }
}

/* ========================================
   GETEX PAGE STYLES
   ======================================== */

/* GETEX Hero Banner */
.getex-hero-banner {
    position: relative;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.getex-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(119, 3, 3, 0.5) 100%);
}

.getex-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 80px 0;
}

.getex-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.getex-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 500px;
}

/* GETEX Breadcrumb Section */
.getex-breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.getex-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.getex-breadcrumb-item {
    color: #666;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.getex-breadcrumb-item:hover {
    color: var(--accent-color, #770303);
}

.getex-breadcrumb-item.active {
    color: var(--accent-color, #770303);
    font-weight: 600;
}

.getex-breadcrumb-separator {
    color: #999;
    font-size: 14px;
}

/* GETEX Content Section */
.getex-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.getex-section-heading {
    margin-bottom: 30px;
}

.getex-section-heading h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
    line-height: 1.3;
}

.getex-section-heading h6 {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    line-height: 1.7;
}

.getex-content-text {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.getex-content-text:last-child {
    margin-bottom: 0;
}

.getex-content-text strong {
    color: var(--accent-color, #770303);
    font-weight: 700;
}

/* GETEX Gallery Section */
.getex-gallery-section {
    padding: 80px 0;
    background: white;
}

.getex-gallery-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.getex-gallery-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(119, 3, 3, 0.2);
}

.getex-gallery-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.getex-gallery-box:hover img {
    transform: scale(1.05);
}

.getex-gallery-caption {
    padding: 20px;
    background: white;
    border-top: 3px solid var(--accent-color, #770303);
}

.getex-gallery-caption p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-weight: 500;
}

/* GETEX Responsive */
@media (max-width: 991px) {
    .getex-hero-title {
        font-size: 56px;
    }

    .getex-hero-subtitle {
        font-size: 18px;
    }

    .getex-section-heading h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .getex-hero-banner {
        min-height: 350px;
    }

    .getex-hero-title {
        font-size: 42px;
    }

    .getex-hero-subtitle {
        font-size: 16px;
    }

    .getex-content-section {
        padding: 60px 0;
    }

    .getex-gallery-section {
        padding: 60px 0;
    }

    .getex-section-heading h3 {
        font-size: 28px;
    }

    .getex-gallery-box img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .getex-hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .getex-hero-content {
        padding: 60px 0;
    }

    .getex-section-heading h3 {
        font-size: 24px;
    }

    .getex-gallery-caption {
        padding: 15px;
    }

    .getex-gallery-caption p {
        font-size: 14px;
    }
}


/* ========================================
   CUSTOM HERO - LEFT ALIGNED (ALL PAGES)
   ======================================== */

/* Left-aligned hero styles for custom pages */
.custom-hero-left {
    text-align: left;
}

.custom-hero-left .td_page_heading_in {
    text-align: left !important;
}

.custom-hero-left .custom-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.custom-hero-left .td_page_heading_in p {
    max-width: 500px;
    line-height: 1.6;
}

/* Responsive adjustments for custom hero */
@media (max-width: 1199px) {
    .custom-hero-left .custom-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .custom-hero-left .custom-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .custom-hero-left .custom-hero-title {
        font-size: 42px;
        letter-spacing: 1px;
    }

    .custom-hero-left .td_page_heading_in p {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .custom-hero-left .custom-hero-title {
        font-size: 36px;
    }
}


/* ========================================
   ASSOCIATE DEGREE PAGE STYLES
   ======================================== */

/* Breadcrumb */
.ad-breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.ad-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.ad-breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.ad-breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.ad-breadcrumb-list li a {
    color: var(--accent-color, #770303);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ad-breadcrumb-list li a:hover {
    color: var(--heading-color, #1a1a1a);
}

.ad-breadcrumb-list li.active {
    color: #999;
}

/* Section Header */
.ad-section-header {
    margin-bottom: 50px;
}

.ad-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.3;
}

.ad-section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.ad-intro-section {
    padding: 80px 0;
    background: #fff;
}

.ad-intro-content {
    margin-top: 50px;
}

.ad-intro-text {
    padding-right: 30px;
}

.ad-intro-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
}

.ad-intro-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.ad-intro-image {
    position: relative;
}

.ad-intro-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ad-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-color, #770303);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.15;
}

/* Program Details Section */
.ad-program-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ad-program-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.ad-program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.ad-program-content {
    position: relative;
    z-index: 2;
}

.ad-program-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.ad-program-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Stats Box */
.ad-stats-box {
    background: #fff;
    border-radius: 0 12px 12px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ad-stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
}

.ad-stat-item.bordered {
    border-bottom: 1px solid #eee;
}

.ad-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ad-stat-icon i {
    font-size: 22px;
    color: #fff;
}

.ad-stat-content {
    display: flex;
    flex-direction: column;
}

.ad-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color, #770303);
    line-height: 1;
}

.ad-stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-top: 5px;
}

/* CTA Banner */
.ad-cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.ad-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(119, 3, 3, 0.7) 100%);
}

.ad-cta-content {
    position: relative;
    z-index: 2;
}

.ad-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ad-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Support System Section */
.ad-support-section {
    padding: 100px 0;
    background: #fff;
}

.ad-support-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ad-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color, #770303);
    transition: height 0.4s ease;
}

.ad-support-card:hover,
.ad-support-card.highlighted {
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ad-support-card:hover::before,
.ad-support-card.highlighted::before {
    height: 100%;
}

.ad-support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ad-support-icon i {
    font-size: 28px;
    color: #fff;
}

.ad-support-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.ad-support-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.highlighted a.ad-support-link {
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}
.ad-support-card  .ad-support-link {
    background: #000000;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
}

.ad-support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color, #770303);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.ad-support-link:hover {
    gap: 12px;
    color: var(--heading-color, #1a1a1a);
}

/* School Selector Section */
.ad-school-selector-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.ad-selector-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.ad-selector-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 10px;
}

.ad-selector-wrapper {
    position: relative;
}

.ad-selector-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.ad-school-select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    font-size: 16px;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-school-select:focus {
    outline: none;
    border-color: var(--accent-color, #770303);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(119, 3, 3, 0.1);
}

.ad-select-icon {
    position: absolute;
    right: 20px;
    bottom: 18px;
    pointer-events: none;
    color: #666;
}

/* Apply CTA Section */
.ad-apply-section {
    padding: 80px 0;
    background: #fff;
}

.ad-apply-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 50px 40px;
}

.ad-apply-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.ad-apply-content {
    position: relative;
    z-index: 2;
}

.ad-apply-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ad-apply-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.ad-apply-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ad-apply-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.ad-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-color, #770303);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ad-apply-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateX(5px);
}

/* Associate Degree Responsive */
@media (max-width: 991px) {
    .ad-section-title {
        font-size: 32px;
    }

    .ad-intro-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ad-program-card {
        border-radius: 12px 12px 0 0;
        min-height: 280px;
    }

    .ad-stats-box {
        border-radius: 0 0 12px 12px;
    }

    .ad-cta-title {
        font-size: 28px;
    }

    .ad-apply-action {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .ad-intro-section,
    .ad-program-section,
    .ad-support-section,
    .ad-school-selector-section,
    .ad-apply-section {
        padding: 60px 0;
    }

    .ad-section-title {
        font-size: 28px;
    }

    .ad-cta-banner {
        padding: 70px 0;
        background-attachment: scroll;
    }

    .ad-cta-title {
        font-size: 24px;
    }

    .ad-selector-card {
        padding: 40px 25px;
    }

    .ad-selector-title {
        font-size: 26px;
    }

    .ad-apply-card {
        padding: 40px 25px;
    }

    .ad-apply-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .ad-stat-item {
        padding: 20px;
    }

    .ad-stat-value {
        font-size: 26px;
    }

    .ad-support-card {
        padding: 30px 20px;
    }
}


/* ========================================
   RANKING PAGE STYLES - Modern Theme
   Colors: #000000 (Navy), var(--accent-color) (Orange)
   ======================================== */

/* Breadcrumb - Light Strip */
.rk-breadcrumb-section {
    background: #f8f9ff;
    padding: 18px 0;
    border-bottom: 1px solid rgba(8, 27, 115, 0.08);
}

.rk-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rk-breadcrumb-link {
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rk-breadcrumb-link:hover {
    color: var(--accent-color);
}

.rk-breadcrumb-separator {
    color: var(--accent-color);
    font-size: 14px;
}

.rk-breadcrumb-current {
    font-size: 15px;
    color: #000000;
    font-weight: 600;
}

/* Section Titles */
.rk-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.rk-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #000000);
    border-radius: 2px;
}

.rk-section-subtitle {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    max-width: 700px;
    margin: 25px auto 0;
}

/* Main Section */
.rk-main-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.rk-main-content {
    max-width: 900px;
}

.rk-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.4;
}

.rk-main-text {
    font-size: 17px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 20px;
}

.rk-main-text:last-child {
    margin-bottom: 0;
}

.rk-main-image {
    position: relative;
}

.rk-main-image img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(8, 27, 115, 0.12);
}

.rk-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #000000 0%, #2b2c30 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(8, 27, 115, 0.3);
}

.rk-badge-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.rk-badge-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Prestige Section */
.rk-prestige-section {
    padding: 80px 0;
    background: #f0f4ff;
}

.rk-prestige-sidebar {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    border-left: 4px solid #000000;
    box-shadow: 0 10px 30px rgba(8, 27, 115, 0.08);
}

.rk-prestige-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.rk-prestige-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
}

.rk-prestige-content {
    padding: 20px 0;
}

.rk-prestige-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    text-align: justify;
}

/* Popular Schools Section */
.rk-schools-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.rk-schools-chart {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.rk-schools-center {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(8, 27, 115, 0.1);
    border: 3px solid #000000;
}

.rk-schools-center img {
    max-width: 80px;
    height: auto;
}

.rk-schools-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    width: 100%;
}

.rk-school-item {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(8, 27, 115, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--school-color, #000000);
    border: 1px solid rgba(8, 27, 115, 0.08);
}

.rk-school-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(8, 27, 115, 0.15);
}

.rk-school-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--school-color, #000000) 0%, rgba(8, 27, 115, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.rk-school-percentage {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.rk-school-icon {
    font-size: 28px;
    color: #fff;
}

.rk-school-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.rk-school-percent-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
}

/* Enrollment Section */
.rk-enrollment-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rk-enrollment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 27, 115, 0.95) 0%, rgba(10, 36, 148, 0.9) 100%);
}

.rk-enrollment-section .container {
    position: relative;
    z-index: 2;
}

.rk-enrollment-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.rk-enrollment-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rk-enrollment-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rk-enrollment-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.rk-enroll-stat {
    text-align: center;
}

.rk-enroll-value {
    display: block;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.rk-enroll-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Insights Section */
.rk-insights-section {
    padding: 80px 0;
    background: #f0f4ff;
}

.rk-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rk-insights-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(8, 27, 115, 0.08);
    border-left: 4px solid #000000;
    border: 1px solid rgba(8, 27, 115, 0.08);
}

.rk-students-card {
    border-left-color: #000000;
}

.rk-faculty-card {
    border-left-color: var(--accent-color);
}

.rk-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(8, 27, 115, 0.1);
}

.rk-gender-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 10px;
}

.rk-gender-row span {
    font-size: 15px;
    color: #64748b;
}

.rk-gender-row strong {
    color: var(--accent-color);
    font-size: 18px;
}

.rk-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(8, 27, 115, 0.08);
}

.rk-stat-row:last-child {
    border-bottom: none;
}

.rk-big-stat {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
}

.rk-stat-text {
    font-size: 15px;
    color: #64748b;
}

/* Employers Section - Table Layout */
.rk-employers-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.rk-employers-section.spacing {
    padding: 80px 0;
}

.rk-section-heading {
    margin-bottom: 20px;
}

.rk-employer-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(8, 27, 115, 0.08);
    height: 100%;
    border: 1px solid rgba(8, 27, 115, 0.08);
}

.rk-table-title {
    padding: 20px 25px;
    text-align: center;
}

.rk-table-title h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rk-table-title-primary {
    background: linear-gradient(135deg, #000000 0%, #2b2c30 100%);
}

.rk-table-title-secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #cb3f0a 100%);
}

.rk-table-body {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rk-table-body li {
    padding: 18px 25px;
    font-size: 15px;
    color: #334155;
    border-bottom: 1px solid rgba(8, 27, 115, 0.06);
    transition: all 0.3s ease;
}

.rk-table-body li:last-child {
    border-bottom: none;
}

.rk-table-body li:hover {
    background: #f8f9ff;
}

.rk-table-body li.highlighted {
    background: linear-gradient(135deg, rgba(8, 27, 115, 0.08) 0%, rgba(8, 27, 115, 0.04) 100%);
    color: #000000;
    font-weight: 600;
    border-left: 4px solid var(--accent-color);
}

/* Affordability Section - CTA + Rankings Layout */
.rk-affordability-section {
    padding: 80px 0;
    background: #f0f4ff;
}

.rk-affordability-section.spacing {
    padding: 80px 0;
}

.rk-cta-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
}

.rk-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 27, 115, 0.4) 0%, rgba(8, 27, 115, 0.95) 100%);
}

.rk-cta-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
}

.rk-cta-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.rk-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #cb3f0a 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.rk-cta-btn:hover {
    /* background: #ffffff; */
    color: #000000;
    transform: translateY(-3px);
    box-shadow:none;
}

.rk-cta-logo {
    max-width: 120px;
    height: auto;
    opacity: 1;
    /* filter: brightness(0) invert(1); */
}

.rk-program-rankings {
    height: 100%;
}

.rk-ranking-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(8, 27, 115, 0.06);
    border-left: 4px solid #000000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(8, 27, 115, 0.08);
}

.rk-ranking-box:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(8, 27, 115, 0.12);
    border-left-color: var(--accent-color);
}

.rk-ranking-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
    min-width: 80px;
}

.rk-ranking-program {
    font-size: 16px;
    color: #334155;
    margin: 0;
    line-height: 1.5;
}

/* Welcome Form Section */
.rk-welcome-section {
    padding: 60px 0;
    background: #f8f9ff;
}

.rk-welcome-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(8, 27, 115, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-top: 4px solid #000000;
}

.rk-welcome-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.rk-welcome-text p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

.rk-welcome-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rk-welcome-form input {
    padding: 16px 20px;
    border: 2px solid rgba(8, 27, 115, 0.15);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.rk-welcome-form input:focus {
    border-color: #000000;
    outline: none;
    box-shadow: 0 0 0 4px rgba(8, 27, 115, 0.1);
}

.rk-welcome-btn {
    background: linear-gradient(135deg, #000000 0%, #2b2c30 100%);
    color: #fff;
    padding: 16px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rk-welcome-btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #cb3f0a 100%);
    transform: translateY(-2px);
}

/* Ranking Responsive */
@media (max-width: 991px) {
    .rk-section-title {
        font-size: 32px;
    }

    .rk-main-section {
        padding: 60px 0;
    }

    .rk-main-title {
        font-size: 28px;
    }

    .rk-main-image {
        margin-top: 40px;
    }

    .rk-prestige-section,
    .rk-schools-section,
    .rk-enrollment-section,
    .rk-insights-section,
    .rk-employers-section,
    .rk-affordability-section {
        padding: 70px 0;
    }

    .rk-prestige-sidebar {
        margin-bottom: 30px;
    }

    .rk-prestige-title {
        font-size: 24px;
    }

    .rk-enrollment-title {
        font-size: 32px;
    }

    .rk-enrollment-stats {
        gap: 30px;
    }

    .rk-enroll-value {
        font-size: 44px;
    }

    .rk-cta-card {
        min-height: 350px;
        margin-bottom: 30px;
    }

    .rk-ranking-number {
        font-size: 28px;
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .rk-main-section,
    .rk-prestige-section,
    .rk-schools-section,
    .rk-enrollment-section,
    .rk-insights-section,
    .rk-employers-section,
    .rk-affordability-section {
        padding: 50px 0;
    }

    .rk-section-title {
        font-size: 26px;
    }

    .rk-main-title {
        font-size: 24px;
    }

    .rk-enrollment-title {
        font-size: 26px;
    }

    .rk-enrollment-stats {
        flex-direction: column;
        gap: 25px;
    }

    .rk-enroll-value {
        font-size: 40px;
    }

    .rk-employer-table {
        margin-bottom: 20px;
    }

    .rk-table-body li {
        padding: 14px 20px;
        font-size: 14px;
    }

    .rk-cta-card {
        min-height: 300px;
    }

    .rk-cta-content h3 {
        font-size: 22px;
    }

    .rk-ranking-box {
        padding: 20px;
        gap: 15px;
    }

    .rk-ranking-number {
        font-size: 24px;
        min-width: 50px;
    }

    .rk-ranking-program {
        font-size: 14px;
    }

    .rk-welcome-card {
        padding: 35px 25px;
    }

    .rk-welcome-text h2 {
        font-size: 26px;
    }

    .rk-affordability-title {
        font-size: 26px;
    }

    .rk-highlight-value {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .rk-section-title {
        font-size: 22px;
    }

    .rk-main-text {
        font-size: 15px;
    }

    .rk-prestige-title {
        font-size: 20px;
    }

    .rk-school-name {
        font-size: 14px;
    }

    .rk-enrollment-title {
        font-size: 20px;
    }

    .rk-table-title {
        padding: 15px 20px;
    }

    .rk-table-title h5 {
        font-size: 14px;
    }

    .rk-table-body li {
        padding: 12px 15px;
        font-size: 13px;
    }

    .rk-cta-content {
        padding: 30px 20px;
    }

    .rk-cta-content h3 {
        font-size: 20px;
    }

    .rk-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .rk-ranking-box {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .rk-ranking-number {
        font-size: 28px;
        min-width: auto;
    }

    .rk-welcome-card {
        padding: 25px 20px;
    }

    .rk-welcome-text h2 {
        font-size: 22px;
    }

    .rk-welcome-form input {
        padding: 14px 18px;
    }

    .rk-welcome-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}


/* ========================================
   APPLY NOW PAGE STYLES
   ======================================== */

/* Breadcrumb */
.an-breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.an-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.an-breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.an-breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.an-breadcrumb-list li a {
    color: var(--accent-color, #770303);
    text-decoration: none;
    transition: color 0.3s ease;
}

.an-breadcrumb-list li a:hover {
    color: var(--heading-color, #1a1a1a);
}

.an-breadcrumb-list li.active {
    color: #999;
}

/* Section Titles */
.an-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.3;
}

.an-section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.an-intro-section {
    padding: 80px 0;
    background: #fff;
}

.an-intro-content {
    padding-right: 40px;
}

.an-intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
    line-height: 1.3;
}

.an-intro-subtitle {
    font-size: 18px;
    color: var(--accent-color, #770303);
    font-weight: 600;
    margin-bottom: 20px;
}

.an-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

.an-intro-image {
    position: relative;
}

.an-intro-image img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.an-intro-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.5));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
}

/* Steps Section */
.an-steps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.an-steps-timeline {
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
}

.an-steps-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.3));
    transform: translateX(-50%);
    border-radius: 2px;
}

.an-step-item {
    position: relative;
    width: 50%;
    padding: 30px;
    margin-bottom: 30px;
}

.an-step-item.left {
    padding-right: 60px;
    text-align: right;
}

.an-step-item.right {
    padding-left: 60px;
    margin-left: 50%;
}

.an-step-content {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.an-step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.15);
}

.an-step-number {
    position: absolute;
    top: -15px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(119, 3, 3, 0.1);
    line-height: 1;
}

.an-step-item.left .an-step-number {
    right: 35px;
}

.an-step-item.right .an-step-number {
    left: 35px;
}

.an-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.an-step-item.left .an-step-icon {
    margin-left: auto;
}

.an-step-icon i {
    font-size: 24px;
    color: #fff;
}

.an-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 12px;
}

.an-step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Requirements Section */
.an-requirements-section {
    padding: 100px 0;
    background: #fff;
}

.an-req-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.an-req-card:hover {
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.1);
    transform: translateY(-5px);
    border-color: rgba(119, 3, 3, 0.2);
}

.an-req-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.an-req-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.an-req-icon i {
    font-size: 28px;
    color: #fff;
}

.an-req-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin: 0;
}

.an-req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.an-req-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.an-req-list li:last-child {
    border-bottom: none;
}

.an-req-list li i {
    color: var(--accent-color, #770303);
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* CTA Banner */
.an-cta-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.an-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.an-cta-banner .container {
    position: relative;
    z-index: 2;
}

.an-cta-content {
    color: #fff;
}

.an-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.an-cta-desc {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.an-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-color, #770303);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.an-cta-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.an-cta-btn i {
    transition: transform 0.3s ease;
}

.an-cta-btn:hover i {
    transform: translateX(5px);
}

/* Deadlines Section */
.an-deadlines-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.an-deadline-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.an-deadline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #ddd;
}

.an-deadline-card.accepting::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.an-deadline-card.upcoming::before {
    background: linear-gradient(90deg, var(--accent-color, #770303), #a00);
}

.an-deadline-card.closed::before {
    background: linear-gradient(90deg, #6c757d, #adb5bd);
}

.an-deadline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.an-deadline-status {
    margin-bottom: 20px;
}

.an-deadline-status span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-accepting {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-upcoming {
    background: rgba(119, 3, 3, 0.1);
    color: var(--accent-color, #770303);
}

.status-closed {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.an-deadline-term {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
}

.an-deadline-dates {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.an-date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.an-date-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.an-date-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
}

.an-deadline-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 0;
}

.an-deadline-note i {
    color: var(--accent-color, #770303);
    margin-right: 8px;
}

/* FAQ Section */
.an-faq-section {
    padding: 100px 0;
    background: #fff;
}

.an-faq-accordion {
    margin-top: 20px;
}

.an-faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.an-faq-item.active {
    background: #fff;
    border-color: var(--accent-color, #770303);
    box-shadow: 0 10px 40px rgba(119, 3, 3, 0.1);
}

.an-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.an-faq-question:hover {
    background: rgba(119, 3, 3, 0.02);
}

.an-faq-question h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color, #1a1a1a);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.an-faq-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.an-faq-toggle i {
    color: #fff;
    font-size: 14px;
}

.an-faq-toggle .fa-minus {
    display: none;
}

.an-faq-item.active .an-faq-toggle .fa-plus {
    display: none;
}

.an-faq-item.active .an-faq-toggle .fa-minus {
    display: block;
}

.an-faq-answer {
    padding: 0 30px 25px;
}

.an-faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

/* Apply CTA Section */
.an-apply-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.an-apply-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    padding: 60px 50px;
}

.an-apply-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.an-apply-card .row {
    position: relative;
    z-index: 2;
}

.an-apply-content {
    color: #fff;
}

.an-apply-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.an-apply-desc {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.an-apply-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.an-apply-logo {
    max-width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
}

.an-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-color, #770303);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.an-apply-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Apply Now Responsive */
@media (max-width: 991px) {
    .an-section-title {
        font-size: 32px;
    }

    .an-intro-section {
        padding: 60px 0;
    }

    .an-intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .an-intro-title {
        font-size: 30px;
    }

    .an-steps-timeline::before {
        left: 30px;
    }

    .an-step-item,
    .an-step-item.left,
    .an-step-item.right {
        width: 100%;
        margin-left: 0;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .an-step-item.left .an-step-icon {
        margin-left: 0;
    }

    .an-step-item.left .an-step-number,
    .an-step-item.right .an-step-number {
        left: 35px;
        right: auto;
    }

    .an-steps-section,
    .an-requirements-section,
    .an-deadlines-section,
    .an-faq-section {
        padding: 70px 0;
    }

    .an-cta-banner {
        padding: 60px 0;
    }

    .an-cta-title {
        font-size: 30px;
    }

    .an-cta-btn {
        margin-top: 30px;
    }

    .an-apply-card {
        padding: 50px 35px;
    }

    .an-apply-title {
        font-size: 30px;
    }

    .an-apply-action {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .an-intro-section,
    .an-steps-section,
    .an-requirements-section,
    .an-deadlines-section,
    .an-faq-section,
    .an-apply-section {
        padding: 50px 0;
    }

    .an-section-title {
        font-size: 28px;
    }

    .an-intro-title {
        font-size: 26px;
    }

    .an-steps-timeline {
        padding: 0;
    }

    .an-steps-timeline::before {
        left: 20px;
    }

    .an-step-item,
    .an-step-item.left,
    .an-step-item.right {
        padding-left: 60px;
        padding-right: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .an-step-content {
        padding: 25px;
    }

    .an-step-icon {
        width: 50px;
        height: 50px;
    }

    .an-step-icon i {
        font-size: 20px;
    }

    .an-step-title {
        font-size: 18px;
    }

    .an-req-card {
        padding: 30px 25px;
    }

    .an-req-icon {
        width: 60px;
        height: 60px;
    }

    .an-req-icon i {
        font-size: 24px;
    }

    .an-req-title {
        font-size: 20px;
    }

    .an-cta-banner {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .an-cta-title {
        font-size: 26px;
    }

    .an-deadline-card {
        padding: 30px 25px;
    }

    .an-deadline-term {
        font-size: 20px;
    }

    .an-faq-question {
        padding: 20px;
    }

    .an-faq-question h5 {
        font-size: 16px;
    }

    .an-faq-toggle {
        width: 35px;
        height: 35px;
    }

    .an-faq-answer {
        padding: 0 20px 20px;
    }

    .an-apply-card {
        padding: 40px 25px;
    }

    .an-apply-title {
        font-size: 26px;
    }

    .an-apply-btn {
        padding: 15px 35px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .an-section-title {
        font-size: 24px;
    }

    .an-intro-title {
        font-size: 22px;
    }

    .an-step-number {
        font-size: 36px;
    }

    .an-step-title {
        font-size: 16px;
    }

    .an-step-desc {
        font-size: 14px;
    }

    .an-req-list li {
        font-size: 14px;
    }

    .an-cta-title {
        font-size: 22px;
    }

    .an-cta-btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    .an-deadline-term {
        font-size: 18px;
    }

    .an-date-value {
        font-size: 14px;
    }

    .an-faq-question h5 {
        font-size: 15px;
    }

    .an-apply-title {
        font-size: 22px;
    }
}


/* ========================================
   FACULTY PAGE STYLES
   ======================================== */

/* Breadcrumb */
.fc-breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.fc-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.fc-breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.fc-breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.fc-breadcrumb-list li a {
    color: var(--accent-color, #770303);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc-breadcrumb-list li a:hover {
    color: var(--heading-color, #1a1a1a);
}

.fc-breadcrumb-list li.active {
    color: #999;
}

/* Section Titles */
.fc-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.3;
}

.fc-section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.fc-intro-section {
    padding: 80px 0;
    background: #fff;
}

.fc-intro-content {
    padding-right: 40px;
}

.fc-intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.3;
}

.fc-intro-subtitle {
    font-size: 18px;
    color: var(--accent-color, #770303);
    font-weight: 600;
    margin-bottom: 20px;
}

.fc-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.fc-intro-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.fc-stat-item {
    text-align: center;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 120px;
}

.fc-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color, #770303);
    line-height: 1;
    margin-bottom: 8px;
}

.fc-stat-label {
    display: block;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.fc-intro-image {
    position: relative;
}

.fc-intro-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.fc-intro-accent {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.3));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

/* Departments Section */
.fc-departments-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fc-dept-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    text-decoration: none;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fc-dept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color, #770303), #a00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.fc-dept-card:hover {
    border-color: rgba(119, 3, 3, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.12);
}

.fc-dept-card:hover::before {
    transform: scaleX(1);
}

.fc-dept-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fc-dept-icon i {
    font-size: 28px;
    color: #fff;
}

.fc-dept-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 8px;
}

.fc-dept-count {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.fc-dept-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    color: var(--accent-color, #770303);
    transition: all 0.3s ease;
}

.fc-dept-card:hover .fc-dept-arrow {
    background: var(--accent-color, #770303);
    color: #fff;
    transform: translateX(5px);
}

/* Featured Faculty Section */
.fc-featured-section {
    padding: 100px 0;
    background: #fff;
}

.fc-member-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.fc-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.15);
}

.fc-member-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.fc-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc-member-card:hover .fc-member-image img {
    transform: scale(1.1);
}

.fc-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(119, 3, 3, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fc-member-card:hover .fc-member-overlay {
    opacity: 1;
}

.fc-member-bio {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.fc-member-info {
    padding: 25px;
    text-align: center;
}

.fc-member-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 5px;
}

.fc-member-title {
    font-size: 14px;
    color: var(--accent-color, #770303);
    font-weight: 600;
    margin-bottom: 15px;
}

.fc-member-credentials {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.fc-member-spec {
    display: block;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Achievements Section */
.fc-achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fc-achieve-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.fc-achieve-card:hover {
    border-color: var(--accent-color, #770303);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.12);
}

.fc-achieve-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.1) 0%, rgba(119, 3, 3, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.fc-achieve-card:hover .fc-achieve-icon {
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
}

.fc-achieve-icon i {
    font-size: 32px;
    color: var(--accent-color, #770303);
    transition: color 0.4s ease;
}

.fc-achieve-card:hover .fc-achieve-icon i {
    color: #fff;
}

.fc-achieve-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.fc-achieve-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* CTA Banner */
.fc-cta-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fc-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.fc-cta-banner .container {
    position: relative;
    z-index: 2;
}

.fc-cta-content {
    color: #fff;
}

.fc-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.fc-cta-desc {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.fc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-color, #770303);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fc-cta-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateY(-3px);
}

/* Research Section */
.fc-research-section {
    padding: 100px 0;
    background: #fff;
}

.fc-research-content {
    padding-right: 40px;
}

.fc-research-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.fc-research-areas {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-research-area {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 25px;
    border-left: 4px solid var(--accent-color, #770303);
    transition: all 0.3s ease;
}

.fc-research-area:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.fc-area-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 10px;
}

.fc-area-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.fc-area-meta span {
    font-size: 14px;
    color: #666;
}

.fc-area-meta span i {
    color: var(--accent-color, #770303);
    margin-right: 8px;
}

.fc-research-image {
    position: relative;
}

.fc-research-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Contact Section */
.fc-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fc-contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid #eee;
}

.fc-contact-info {
    padding-right: 30px;
}

.fc-contact-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.fc-contact-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.fc-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fc-contact-item:hover {
    background: rgba(119, 3, 3, 0.05);
    transform: translateX(5px);
}

.fc-contact-item i {
    width: 40px;
    height: 40px;
    background: var(--accent-color, #770303);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.fc-contact-item a,
.fc-contact-item span {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc-contact-item a:hover {
    color: var(--accent-color, #770303);
}

/* Faculty Responsive */
@media (max-width: 991px) {
    .fc-section-title {
        font-size: 32px;
    }

    .fc-intro-section,
    .fc-departments-section,
    .fc-featured-section,
    .fc-achievements-section,
    .fc-research-section,
    .fc-contact-section {
        padding: 70px 0;
    }

    .fc-intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .fc-intro-title {
        font-size: 30px;
    }

    .fc-intro-stats {
        justify-content: center;
    }

    .fc-cta-banner {
        padding: 60px 0;
    }

    .fc-cta-title {
        font-size: 30px;
    }

    .fc-cta-btn {
        margin-top: 25px;
    }

    .fc-research-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .fc-contact-card {
        padding: 40px 30px;
    }

    .fc-contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .fc-intro-section,
    .fc-departments-section,
    .fc-featured-section,
    .fc-achievements-section,
    .fc-research-section,
    .fc-contact-section {
        padding: 50px 0;
    }

    .fc-section-title {
        font-size: 28px;
    }

    .fc-intro-title {
        font-size: 26px;
    }

    .fc-stat-item {
        padding: 15px 20px;
        min-width: 100px;
    }

    .fc-stat-value {
        font-size: 26px;
    }

    .fc-dept-card {
        padding: 30px 25px;
    }

    .fc-dept-icon {
        width: 60px;
        height: 60px;
    }

    .fc-dept-icon i {
        font-size: 24px;
    }

    .fc-member-image {
        height: 240px;
    }

    .fc-member-info {
        padding: 20px;
    }

    .fc-achieve-card {
        padding: 30px 25px;
    }

    .fc-achieve-icon {
        width: 70px;
        height: 70px;
    }

    .fc-achieve-icon i {
        font-size: 28px;
    }

    .fc-cta-banner {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .fc-cta-title {
        font-size: 26px;
    }

    .fc-contact-card {
        padding: 30px 25px;
    }

    .fc-contact-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .fc-section-title {
        font-size: 24px;
    }

    .fc-intro-title {
        font-size: 22px;
    }

    .fc-intro-stats {
        gap: 15px;
    }

    .fc-stat-item {
        flex: 1;
        min-width: 90px;
    }

    .fc-stat-value {
        font-size: 22px;
    }

    .fc-dept-name {
        font-size: 18px;
    }

    .fc-member-name {
        font-size: 18px;
    }

    .fc-achieve-title {
        font-size: 18px;
    }

    .fc-cta-title {
        font-size: 22px;
    }

    .fc-cta-btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    .fc-area-title {
        font-size: 16px;
    }

    .fc-contact-title {
        font-size: 22px;
    }
}


/* ========================================
   ALUMNI PAGE STYLES
   ======================================== */

/* Breadcrumb */
.al-breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.al-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.al-breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.al-breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.al-breadcrumb-list li a {
    color: var(--accent-color, #770303);
    text-decoration: none;
    transition: color 0.3s ease;
}

.al-breadcrumb-list li a:hover {
    color: var(--heading-color, #1a1a1a);
}

.al-breadcrumb-list li.active {
    color: #999;
}

/* Section Titles */
.al-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.3;
}

.al-section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.al-intro-section {
    padding: 80px 0;
    background: #fff;
}

.al-intro-image {
    position: relative;
}

.al-intro-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.al-intro-accent {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.3));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.al-intro-content {
    padding-left: 40px;
}

.al-intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.3;
}

.al-intro-subtitle {
    font-size: 18px;
    color: var(--accent-color, #770303);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.al-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

/* Stats Section */
.al-stats-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.al-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.al-stats-section .container {
    position: relative;
    z-index: 2;
}

.al-stat-box {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.al-stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.al-stat-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.al-stat-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Benefits Section */
.al-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.al-benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
}

.al-benefit-card:hover {
    border-color: var(--accent-color, #770303);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.12);
}

.al-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.1) 0%, rgba(119, 3, 3, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.al-benefit-card:hover .al-benefit-icon {
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
}

.al-benefit-icon i {
    font-size: 32px;
    color: var(--accent-color, #770303);
    transition: color 0.4s ease;
}

.al-benefit-card:hover .al-benefit-icon i {
    color: #fff;
}

.al-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.al-benefit-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Success Stories Section */
.al-stories-section {
    padding: 100px 0;
    background: #fff;
}

.al-story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.al-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.15);
}

.al-story-image {
    height: 200px;
    overflow: hidden;
}

.al-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.al-story-card:hover .al-story-image img {
    transform: scale(1.1);
}

.al-story-content {
    padding: 30px;
}

.al-story-quote {
    position: relative;
    margin-bottom: 20px;
}

.al-story-quote i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--accent-color, #770303);
    opacity: 0.3;
}

.al-story-quote p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding-left: 35px;
}

.al-story-author {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.al-author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 5px;
}

.al-author-title {
    font-size: 14px;
    color: var(--accent-color, #770303);
    margin-bottom: 5px;
    font-weight: 600;
}

.al-author-class {
    font-size: 13px;
    color: #888;
}

/* Events Section */
.al-events-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.al-event-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ddd;
    transition: all 0.4s ease;
}

.al-event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 50px rgba(119, 3, 3, 0.12);
}

.al-event-card.networking { border-left-color: var(--accent-color, #770303); }
.al-event-card.career { border-left-color: #28a745; }
.al-event-card.reunion { border-left-color: #007bff; }
.al-event-card.webinar { border-left-color: #6f42c1; }

.al-event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color, #770303);
    margin-bottom: 15px;
    padding: 8px 15px;
    background: rgba(119, 3, 3, 0.08);
    border-radius: 20px;
}

.al-event-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.4;
}

.al-event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.al-event-meta span {
    font-size: 14px;
    color: #666;
}

.al-event-meta span i {
    width: 20px;
    color: var(--accent-color, #770303);
    margin-right: 8px;
}

.al-event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color, #770303);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.al-event-link:hover {
    gap: 12px;
    color: var(--heading-color, #1a1a1a);
}

/* CTA Banner */
.al-cta-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.al-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.al-cta-banner .container {
    position: relative;
    z-index: 2;
}

.al-cta-content {
    color: #fff;
}

.al-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.al-cta-desc {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.al-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-color, #770303);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.al-cta-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateY(-3px);
}

.al-cta-btn i {
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.al-cta-btn:hover i {
    color: #fff;
    transform: scale(1.2);
}

/* Chapters Section */
.al-chapters-section {
    padding: 100px 0;
    background: #fff;
}

.al-chapter-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.al-chapter-card:hover {
    border-color: var(--accent-color, #770303);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(119, 3, 3, 0.12);
    background: #fff;
}

.al-chapter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.al-chapter-icon i {
    font-size: 28px;
    color: #fff;
}

.al-chapter-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 8px;
}

.al-chapter-members {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.al-chapter-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color, #770303);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.al-chapter-link:hover {
    gap: 12px;
    color: var(--heading-color, #1a1a1a);
}

/* Contact Section */
.al-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.al-contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid #eee;
}

.al-contact-info {
    padding-right: 30px;
}

.al-contact-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.al-contact-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.al-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.al-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.al-contact-item:hover {
    color: var(--accent-color, #770303);
}

.al-contact-item i {
    width: 40px;
    height: 40px;
    background: var(--accent-color, #770303);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.al-social-connect {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
}

.al-social-connect h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
}

.al-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.al-social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.al-social-link:hover {
    transform: translateY(-3px);
}

.al-social-link.facebook { background: #1877f2; }
.al-social-link.linkedin { background: #0a66c2; }
.al-social-link.twitter { background: #1da1f2; }
.al-social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* Alumni Responsive */
@media (max-width: 991px) {
    .al-section-title {
        font-size: 32px;
    }

    .al-intro-section,
    .al-benefits-section,
    .al-stories-section,
    .al-events-section,
    .al-chapters-section,
    .al-contact-section {
        padding: 70px 0;
    }

    .al-intro-image {
        margin-bottom: 40px;
    }

    .al-intro-content {
        padding-left: 0;
    }

    .al-intro-title {
        font-size: 30px;
    }

    .al-stats-section {
        padding: 60px 0;
    }

    .al-stat-value {
        font-size: 40px;
    }

    .al-cta-banner {
        padding: 60px 0;
    }

    .al-cta-title {
        font-size: 30px;
    }

    .al-cta-btn {
        margin-top: 25px;
    }

    .al-contact-card {
        padding: 40px 30px;
    }

    .al-contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .al-intro-section,
    .al-benefits-section,
    .al-stories-section,
    .al-events-section,
    .al-chapters-section,
    .al-contact-section {
        padding: 50px 0;
    }

    .al-section-title {
        font-size: 28px;
    }

    .al-intro-title {
        font-size: 26px;
    }

    .al-stats-section {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .al-stat-box {
        padding: 30px 20px;
    }

    .al-stat-value {
        font-size: 36px;
    }

    .al-benefit-card {
        padding: 30px 25px;
    }

    .al-benefit-icon {
        width: 70px;
        height: 70px;
    }

    .al-benefit-icon i {
        font-size: 28px;
    }

    .al-story-image {
        height: 180px;
    }

    .al-story-content {
        padding: 25px;
    }

    .al-event-card {
        padding: 25px;
    }

    .al-event-title {
        font-size: 18px;
    }

    .al-cta-banner {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .al-cta-title {
        font-size: 26px;
    }

    .al-chapter-card {
        padding: 30px 25px;
    }

    .al-contact-card {
        padding: 30px 25px;
    }

    .al-contact-title {
        font-size: 24px;
    }

    .al-social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .al-section-title {
        font-size: 24px;
    }

    .al-intro-title {
        font-size: 22px;
    }

    .al-stat-value {
        font-size: 32px;
    }

    .al-stat-label {
        font-size: 14px;
    }

    .al-benefit-title {
        font-size: 18px;
    }

    .al-author-name {
        font-size: 16px;
    }

    .al-event-title {
        font-size: 16px;
    }

    .al-cta-title {
        font-size: 22px;
    }

    .al-cta-btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    .al-chapter-name {
        font-size: 18px;
    }

    .al-contact-title {
        font-size: 22px;
    }
}

/* ================================================
   INTERNATIONAL EVENTS PAGE STYLES (ie- prefix)
   ================================================ */

/* Intro Section */
.ie-intro-section {
    padding: 80px 0;
    background: #fff;
}

.ie-intro-content {
    padding-right: 40px;
}

.ie-intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
    line-height: 1.3;
}

.ie-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.ie-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color, #770303);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ie-intro-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateY(-3px);
}

.ie-intro-image {
    position: relative;
}

.ie-intro-image img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ie-intro-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.5));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
}

/* Section Title Common */
.ie-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.ie-section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Engagement Section */
.ie-engagement-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ie-engage-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.ie-engage-card:hover {
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.1);
    transform: translateY(-5px);
    border-color: rgba(119, 3, 3, 0.2);
}

.ie-engage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ie-engage-icon i {
    font-size: 28px;
    color: #fff;
}

.ie-engage-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.ie-engage-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Webinars Section */
.ie-webinars-section {
    padding: 100px 0;
    background: #fff;
}

.ie-webinar-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.ie-webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.15);
    border-color: rgba(119, 3, 3, 0.2);
}

.ie-webinar-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ie-webinar-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ie-webinar-img img[src=""],
.ie-webinar-img img:not([src]) {
    display: none;
}

.ie-webinar-card:hover .ie-webinar-img img {
    transform: scale(1.05);
}

.ie-webinar-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color, #770303);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.ie-webinar-content {
    padding: 25px;
    border-top: 3px solid var(--accent-color, #770303);
}

.ie-webinar-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ie-webinar-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.ie-webinar-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color, #770303);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ie-webinar-link:hover {
    gap: 12px;
    color: var(--heading-color, #1a1a1a);
}

.ie-webinar-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(119, 3, 3, 0.15);
    z-index: 1;
}

.ie-webinar-img img + .ie-webinar-placeholder-icon {
    display: none;
}

/* About Section */
.ie-about-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ie-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(90, 2, 2, 0.9) 100%);
}

.ie-about-section .container {
    position: relative;
    z-index: 2;
}

.ie-about-content {
    color: #fff;
}

.ie-about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ie-about-desc {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

.ie-about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ie-about-list li {
    font-size: 16px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ie-about-list li:last-child {
    border-bottom: none;
}

.ie-about-list li i {
    color: #fff;
    font-size: 16px;
}

.ie-about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.ie-cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.ie-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.92) 0%, rgba(90, 2, 2, 0.88) 100%);
}

.ie-cta-section .container {
    position: relative;
    z-index: 2;
}

.ie-cta-content {
    color: #fff;
}

.ie-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ie-cta-desc {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.ie-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-color, #770303);
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ie-cta-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateY(-3px);
}

.ie-cta-btn i {
    transition: transform 0.3s ease;
}

.ie-cta-btn:hover i {
    transform: translateX(5px);
}

.ie-cta-logo {
    max-width: 200px;
    height: auto;
}

/* Responsive for International Events */
@media (max-width: 991px) {
    .ie-intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ie-intro-title,
    .ie-section-title,
    .ie-about-title,
    .ie-cta-title {
        font-size: 30px;
    }

    .ie-engage-card,
    .ie-webinar-card {
        margin-bottom: 30px;
    }

    .ie-cta-logo {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .ie-intro-section,
    .ie-engagement-section,
    .ie-webinars-section,
    .ie-about-section,
    .ie-cta-section {
        padding: 60px 0;
    }

    .ie-intro-title,
    .ie-section-title,
    .ie-about-title,
    .ie-cta-title {
        font-size: 26px;
    }

    .ie-about-section {
        background-attachment: scroll;
    }
}

/* ================================================
   INTERNATIONAL SCHOLARSHIP PAGE STYLES (is- prefix)
   ================================================ */

/* Main Section */
.is-main-section {
    padding: 80px 0;
    background: #fff;
}

.is-main-content {
    padding-right: 40px;
}

.is-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
    line-height: 1.3;
}

.is-main-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.is-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color, #770303);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.is-main-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateY(-3px);
}

.is-main-image {
    position: relative;
}

.is-main-image img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.is-main-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color, #770303), rgba(119, 3, 3, 0.5));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
}

/* Section Title Common */
.is-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.is-section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Explore Section */
.is-explore-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.is-explore-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    text-align: center;
}

.is-explore-card:hover {
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.1);
    transform: translateY(-5px);
    border-color: rgba(119, 3, 3, 0.2);
}

.is-explore-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color, #770303) 0%, #a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.is-explore-icon i {
    font-size: 32px;
    color: #fff;
}

.is-explore-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 15px;
}

.is-explore-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Types Section */
.is-types-section {
    padding: 100px 0;
    background: #fff;
}

.is-type-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.is-type-card:hover {
    box-shadow: 0 20px 60px rgba(119, 3, 3, 0.1);
    transform: translateY(-5px);
    border-color: rgba(119, 3, 3, 0.2);
}

.is-type-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(119, 3, 3, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.is-type-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.is-type-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Insights Section */
.is-insights-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.is-insights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.95) 0%, rgba(90, 2, 2, 0.9) 100%);
}

.is-insights-section .container {
    position: relative;
    z-index: 2;
}

.is-insights-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.is-insights-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.is-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.is-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.is-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.is-stat-icon i {
    font-size: 24px;
    color: #fff;
}

.is-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.is-stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* CTA Section */
.is-cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.is-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 3, 3, 0.92) 0%, rgba(90, 2, 2, 0.88) 100%);
}

.is-cta-section .container {
    position: relative;
    z-index: 2;
}

.is-cta-content {
    color: #fff;
}

.is-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.is-cta-desc {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.is-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-color, #770303);
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.is-cta-btn:hover {
    background: var(--heading-color, #1a1a1a);
    color: #fff;
    transform: translateY(-3px);
}

.is-cta-btn i {
    transition: transform 0.3s ease;
}

.is-cta-btn:hover i {
    transform: translateX(5px);
}

.is-cta-logo {
    max-width: 200px;
    height: auto;
}

/* Responsive for International Scholarship */
@media (max-width: 991px) {
    .is-main-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .is-main-title,
    .is-section-title,
    .is-insights-title,
    .is-cta-title {
        font-size: 30px;
    }

    .is-explore-card,
    .is-type-card,
    .is-stat-card {
        margin-bottom: 30px;
    }

    .is-cta-logo {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .is-main-section,
    .is-explore-section,
    .is-types-section,
    .is-insights-section,
    .is-cta-section {
        padding: 60px 0;
    }

    .is-main-title,
    .is-section-title,
    .is-insights-title,
    .is-cta-title {
        font-size: 26px;
    }

    .is-stat-value {
        font-size: 36px;
    }

    .is-insights-section {
        background-attachment: scroll;
    }
}

/* ========================================
   ALUMNI PAGE STYLES - COMMON SECTIONS
   ======================================== */

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 0;
    background: #f8f9fa;
}

.breadcrumb-area {
    padding: 20px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.breadcrumb-list li::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #cbd5e1;
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list li a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--accent-color);
}

.breadcrumb-list li.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Feature Sections - Side by Side Image + Content */
.alumni-feature-section,
.alumni-support-section,
.alumni-research-section {
    padding: 0;
}

.feature-image-side {
    min-height: 500px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-content-side {
    padding: 80px 60px;
    background: linear-gradient(135deg, #fef9f8 0%, #f8f9ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.research-side {
    background: linear-gradient(135deg, #f8f9ff 0%, #fef9f8 100%);
}

/* Feature Badge */
.feature-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(8, 27, 115, 0.1) 100%);
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.research-badge {
    background: linear-gradient(135deg, rgba(8, 27, 115, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(8, 27, 115, 0.2);
}

.feature-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.research-badge i {
    color: #000000;
}

.feature-badge span,
.section-badge span {
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content-side h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-content-side .para1 {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Support Section Specific */
.alumni-support-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.support-content {
    padding-right: 40px;
}

.support-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.support-features {
    margin: 30px 0;
}

.support-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9ff 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(8, 27, 115, 0.08);
    transition: all 0.3s ease;
}

.support-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.support-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #cb3f0a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:none;
}

.support-feature-item .feature-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.support-feature-item .feature-text h6 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.support-feature-item .feature-text p {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.support-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.support-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-image {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(8, 27, 115, 0.15);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #cb3f0a 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

/* CTA Banner */
.alumni-cta-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.alumni-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.btn-style-white {
    background: #ffffff;
    color: var(--accent-color);
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-style-white:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.btn-style-1 {
    background: linear-gradient(135deg, var(--accent-color) 0%, #cb3f0a 100%);
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow:none;
}

.btn-style-1:hover {
    background: linear-gradient(135deg, #000000 0%, #2b2c30 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(8, 27, 115, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    .breadcrumb-list {
        gap: 8px;
        font-size: 0.9rem;
    }

    .feature-content-side {
        padding: 60px 40px;
        min-height: auto;
    }

    .feature-image-side {
        min-height: 400px;
    }

    .feature-content-side h3 {
        font-size: 1.9rem;
    }

    .support-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .support-content h3 {
        font-size: 2rem;
    }

    .alumni-support-section {
        padding: 70px 0;
    }

    .cta-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-area {
        padding: 15px 0;
    }

    .breadcrumb-list {
        font-size: 0.85rem;
    }

    .feature-content-side {
        padding: 50px 30px;
    }

    .feature-image-side {
        min-height: 300px;
    }

    .feature-content-side h3 {
        font-size: 1.6rem;
    }

    .feature-content-side .para1 {
        font-size: 1rem;
    }

    .support-content h3 {
        font-size: 1.7rem;
    }

    .support-feature-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .support-feature-item .feature-icon {
        width: 50px;
        height: 50px;
    }

    .support-feature-item .feature-icon i {
        font-size: 1.3rem;
    }

    .alumni-support-section {
        padding: 60px 0;
    }

    .alumni-cta-section {
        padding: 50px 0;
        text-align: center;
    }

    .cta-content h3 {
        font-size: 1.7rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-style-white,
    .btn-style-1 {
        padding: 15px 28px;
        font-size: 0.95rem;
    }
}
