/* ============================================
   San Diego University of California
   New Education-Focused Design
   ============================================ */

/* CSS Variables - New Color Scheme */
:root {
    /* Primary Colors - Deep Navy Blue & Teal */
    --primary-color: #263a95;
    --primary-dark: #081b73;
    --primary-light: #334dc3;

    /* Secondary Colors - Warm Gold */
    --secondary-color: #f04923;
    --secondary-dark: #f04923;
    --secondary-light: #f46848;

    /* Accent Colors - Teal */
    --accent-color: #f04923;
    --accent-dark: #f04923;
    --accent-light: #f46848;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #171923;
    /* Functional Colors */
    --success: #38a169;
    --warning: #dd6b20;
    --error: #e53e3e;
    --info: #3182ce;
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    color: var(--white);
    transform: translateY(-2px);
}

.btn i {
    margin-left: var(--spacing-sm);
}

/* ============================================
   Header Styles
   ============================================ */

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.top-bar a {
    color: var(--gray-200);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar .btn-secondary:hover {
    color: var(--white);
}

.top-bar i {
    font-size: 0.75rem;
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    margin-bottom: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color);
    background: var(--gray-50);
}

.nav-item.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: var(--spacing-xs);
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 700px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
    overflow: hidden;
}

.nav-item.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-wrapper {
    display: flex;
}

.mega-menu-image {
    flex-shrink: 0;
    width: 220px;
    min-height: 280px;
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-main {
    flex: 1;
    padding: var(--spacing-xl);
}

.mega-menu-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--secondary-color);
}

.mega-menu-header h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 4px;
}

.mega-menu-header p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.mega-menu-content {
    display: grid;
    gap: var(--spacing-sm) var(--spacing-lg);
}

.mega-menu-group h5 {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.mega-menu-list {
    list-style: none;
}

.mega-menu-list li {
    margin-bottom: 2px;
}

.mega-menu-list a {
    display: flex;
    align-items: center;
    padding: 4px 0;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.mega-menu-list a::before {
    content: '\00BB\00BB';
    margin-right: var(--spacing-sm);
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 700;
}

.mega-menu-list a:hover {
    color: var(--primary-color);
}

/* Schools Mega Menu - Wider */
.mega-menu.wide {
    min-width: 900px;
}

.mega-menu.wide .mega-menu-content {

}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('/images/backgrounds/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(15, 39, 68, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

/* Welcome Form Section */
.welcome-form-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.welcome-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.welcome-form-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.welcome-text {
    color: var(--white);
}

.welcome-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.welcome-text p {
    opacity: 0.9;
    margin-bottom: 0;
}

.welcome-form {
    display: flex;
    gap: var(--spacing-md);
    flex: 1;
    max-width: 600px;
}

.welcome-form input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
}

.welcome-form input:focus {
    outline: 3px solid var(--secondary-color);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
}

/* Alternating Background */
.section-alt {
    background: var(--gray-50);
}

/* ============================================
   Welcome Section
   ============================================ */
.welcome-section {
    padding: var(--spacing-3xl) 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.welcome-image {
    max-width: 300px;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.welcome-text-content h3 {
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.welcome-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.welcome-text-content p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ============================================
   Reasons Section
   ============================================ */
.reasons-section {
    background: var(--gray-50);
    padding: var(--spacing-3xl) 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl) var(--spacing-xl);
}

.reason-item {
    text-align: center;
    padding: var(--spacing-md);
}

.reason-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    font-size: 1.75rem;
    transition: all var(--transition-normal);
}

.reason-item:hover .reason-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.reason-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.reason-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   Course Chart Section
   ============================================ */
.course-chart-section {
    background: url('/images/bg/course-chart-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.course-chart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 39, 68, 0.85) 100%);
}

.course-chart-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.course-chart-content h2 {
    color: var(--white);
}

.course-chart-content p {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    opacity: 0.9;
}

.course-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.course-selector label {
    font-weight: 500;
}

.course-selector select {
    flex: 1;
    min-width: 300px;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
}

/* ============================================
   News Section
   ============================================ */
.news-section {
    padding: var(--spacing-3xl) 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.news-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.news-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: block;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.news-card-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.news-card-overlay span {
    font-size: 0.8125rem;
    opacity: 0.8;
}

.news-card.featured {
    height: 100%;
}

.news-card.featured img {
    height: 100%;
    min-height: 432px;
    object-fit: cover;
}

.news-card.featured .news-card-overlay h4 {
    font-size: 1.25rem;
}

.news-more {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.news-more a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.news-more a:hover {
    color: var(--accent-color);
}

/* ============================================
   Campaign Section
   ============================================ */
.campaign-section {
    background: url('/images/backgrounds/campaign-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.campaign-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 121, 31, 0.9) 0%, rgba(214, 158, 46, 0.85) 100%);
}

.campaign-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
    align-items: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.campaign-title h2 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.1;
}

.campaign-title h3 {
    color: var(--white);
    opacity: 0.8;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-sm);
}

.campaign-description p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.campaign-description .btn {
    background: var(--white);
    color: var(--secondary-dark);
}

.campaign-description .btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ============================================
   Aid Programs Section
   ============================================ */
.aid-programs-section {
    padding: var(--spacing-3xl) 0;
}

.aid-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.aid-tabs-nav {
    display: flex;
    gap: var(--spacing-md);
}

.aid-tab-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.aid-tab-btn.active,
.aid-tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.aid-tab-content {
    background: var(--gray-50);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
}

.aid-tab-content h3 {
    margin-bottom: var(--spacing-md);
}

.aid-tab-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: url('/images/backgrounds/stats-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 39, 68, 0.95) 100%);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.stats-text {
    color: var(--white);
}

.stats-text p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    background: transparent;
    height: auto;
    min-height: auto;
}

.stats-section .stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.stats-section .stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stats-section .stat-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.stats-section .stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.stats-section .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: var(--gray-50);
    padding: var(--spacing-3xl) 0;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: var(--spacing-2xl);
}

.testimonial-logo {
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.testimonial-logo img {
    height: 50px;
    width: auto;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-author h5 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: url('/images/bg/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 94, 97, 0.9) 0%, rgba(49, 151, 149, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content h3 {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--accent-dark);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--accent-dark);
}

/* ============================================
   Accreditations Section
   ============================================ */
.accreditations-section {
    padding: var(--spacing-3xl) 0;
}

.accreditation-slider {
    max-width: 100%;
}

.accreditation-slider .slick-slide {
    padding: 0 var(--spacing-md);
}

.accreditation-slide {
    text-align: center;
}

/* Slick slider navigation arrows */
.accreditation-slider .slick-prev,
.accreditation-slider .slick-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    z-index: 10;
}

.accreditation-slider .slick-prev:hover,
.accreditation-slider .slick-next:hover {
    background: var(--primary-dark);
}

.accreditation-slider .slick-prev:before,
.accreditation-slider .slick-next:before {
    font-size: 16px;
    color: var(--white);
    opacity: 1;
}

.accreditation-slider .slick-prev {
    left: -50px;
}

.accreditation-slider .slick-next {
    right: -50px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding-top: var(--spacing-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
}

.footer-brand p {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-section h5 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-fast);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--gray-700);
}

.footer-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-contact-item i {
    color: var(--accent-color);
}

.footer-contact-item a {
    color: var(--gray-300);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    background: var(--gray-800);
    padding: var(--spacing-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    background: var(--gray-900);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--gray-800);
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }

    .mega-menu {
        min-width: 500px;
    }

    .mega-menu.wide {
        min-width: 600px;
    }

    .mega-menu.wide .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
    }

    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        box-shadow: none;
        display: none;
    }

    .mega-menu-wrapper {
        flex-direction: column;
    }

    .mega-menu-image {
        display: none;
    }

    .mega-menu-main {
        padding: var(--spacing-md);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
    }

    .nav-item.has-dropdown.active .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .welcome-form-content {
        flex-direction: column;
        text-align: center;
    }

    .welcome-form {
        flex-direction: column;
        width: 100%;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .welcome-image {
        margin: 0 auto;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured img {
        min-height: 250px;
    }

    .news-card img {
        height: 180px;
    }

    .campaign-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-content {
        grid-template-columns: 1fr;
    }

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs-center { text-align: left; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   Internal Pages Styles
   ============================================ */

/* Page Hero Section */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 39, 68, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: var(--spacing-2xl);
}

.page-hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.content-text .lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.content-text p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
}

.content-text h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl);
}

.leader-card {
    text-align: center;
}

.leader-image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.leader-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.leader-dept {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* Cabinet Grid */
.cabinet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
}

.cabinet-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cabinet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cabinet-card h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
}

.cabinet-card p {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* Academic Grid */
.academic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.academic-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.academic-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.academic-item h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.service-item {
    text-align: center;
    padding: var(--spacing-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Section Gradient Background */
.section-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-gradient .section-badge {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.section-gradient h2 {
    color: var(--white);
}

.section-gradient p {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Dark Background */
.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.values-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

/* Page CTA Section */
.page-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: var(--spacing-3xl) 0;
}

.page-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-cta-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.page-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.page-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Accreditation Types Grid */
.accreditation-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.accreditation-type-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
}

.accreditation-type-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.accreditation-type-card p {
    color: var(--gray-600);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.benefit-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Accrediting Bodies Grid */
.accrediting-bodies-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-lg);
}

.accrediting-body-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal);
}

.accrediting-body-card:hover {
    transform: translateY(-5px);
}

.accrediting-body-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.accrediting-body-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.accrediting-body-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.accrediting-body-card p {
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* Tuition Fee Tables */
.fee-category {
    margin-bottom: var(--spacing-3xl);
}

.fee-category-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--secondary-color);
}

.fee-table-wrapper {
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.fee-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.fee-table th {
    padding: var(--spacing-lg);
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.fee-table td {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.fee-table tbody tr:hover {
    background: var(--gray-50);
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-amount {
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Financial Aid Grid */
.financial-aid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.financial-aid-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.financial-aid-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.financial-aid-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.financial-aid-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.financial-aid-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Payment Features List */
.payment-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
}

.payment-features li {
    padding: var(--spacing-sm) 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.payment-features li i {
    color: var(--success);
    font-size: 1rem;
}

/* Internal Pages Responsive Styles */
@media (max-width: 1200px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cabinet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .accrediting-bodies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .content-image {
        order: -1;
    }

    .academic-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .financial-aid-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accreditation-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cabinet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .academic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accrediting-bodies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-cta-buttons {
        flex-direction: column;
    }

    /* Fee Table Responsive */
    .fee-table thead {
        display: none;
    }

    .fee-table tbody tr {
        display: block;
        margin-bottom: var(--spacing-lg);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }

    .fee-table td {
        display: flex;
        justify-content: space-between;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--gray-100);
    }

    .fee-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .leadership-grid,
    .cabinet-grid,
    .academic-grid,
    .services-grid,
    .benefits-grid,
    .financial-aid-grid,
    .accrediting-bodies-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-content {
        padding: var(--spacing-xl);
    }
}

/* Coming Soon Page */
.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-3xl) 0;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon i {
    font-size: 3rem;
    color: var(--white);
}

.coming-soon-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.coming-soon-content .lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.coming-soon-content p {
    color: var(--gray-500);
    margin-bottom: var(--spacing-xl);
}

.coming-soon-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ============================================
   Internal Pages Styles
   ============================================ */

/* Banner Slider */
.banner-slider .banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.banner-slider .banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.7));
}

.banner-slider .banner-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.banner-slider .banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.banner-slider .banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Top Form Section */
.top-form {
    background: var(--primary-color);
    padding: var(--spacing-xl) 0;
}

.top-form .heading h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.top-form .heading .para1 {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.custom-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.custom-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.custom-form-submit {
    width: 100%;
    padding: 12px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-form-submit:hover {
    background: var(--secondary-dark);
}

/* Breadcrumb */
.breadcrumb-area {
    padding: var(--spacing-md) 0;
    background: var(--gray-50);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: var(--spacing-sm);
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: var(--spacing-sm);
    color: var(--gray-400);
}

.breadcrumb-list li a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-list li a:hover {
    color: var(--primary-color);
}

/* Section Heading */
.section-heading h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.section-heading h6 {
    color: var(--gray-600);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-heading.text-white h3,
.section-heading.text-white h6 {
    color: var(--white);
}

.stats-section .section-heading {
    position: relative;
    z-index: 2;
}

/* Section Divider */
.section-divider img {
    max-width: 200px;
    opacity: 0.6;
}

/* Spacing Classes */
.spacing {
    padding: var(--spacing-3xl) 0;
}

.spacing-05 {
    padding: var(--spacing-md) 0;
}

.spacing-40 {
    padding: 40px 0;
}

.spacing-b-40 {
    padding-bottom: 40px;
}

/* Background Patterns */
.bg-pattern {
    background-color: var(--gray-50);
}

.bg-pattern-2 {
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

/* About Page - Features List */
.about-image img {
    width: 100%;
    max-width: 250px;
    border-radius: var(--radius-lg);
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.features-list li a {
    color: var(--gray-700);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.features-list li a::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
}

/* Core Values Section */
.core-values-section h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: var(--spacing-md);
    display: inline-block;
}

.core-values-section h5 {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.core-values-section p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.mission-vision-section .mission-icon img,
.mission-vision-section .vision-icon img {
    max-width: 80px;
    margin-bottom: var(--spacing-md);
}

.mission-vision-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.mission-vision-section p {
    color: var(--gray-600);
}

/* Why Choose SDUC Section */
.why-choose-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.why-choose-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-choose-card h5 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.why-choose-card .para2 {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Stats Section - About Page */
.stats-section {
    position: relative;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    background: transparent;
    height: auto;
    min-height: auto;
    padding: 0;
}

.stats-section .stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stats-section .stat-item h4 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.stats-section .stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.view-more-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-normal);
}

.view-more-link:hover {
    color: var(--secondary-color);
}

.view-more-link::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8em;
}

/* Dean's Message Section */
.dean-message-section {
    position: relative;
}

.dean-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.dean-message-section .container {
    position: relative;
    z-index: 10;
}

.dean-image img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.dean-message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    padding: var(--spacing-xl);
    padding-left: var(--spacing-xl);
    border-left: 4px solid var(--secondary-color);
}

/* FAQ Section */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--spacing-xl);
}

.faq-tabs .nav-item {
    list-style: none;
}

.faq-tabs .nav-link {
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--gray-600);
    font-weight: 500;
    border-radius: 0;
    margin-bottom: -2px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.faq-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.faq-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    background: transparent;
}

.faq-content {
    min-height: 300px;
    padding-top: var(--spacing-lg);
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border: none;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.accordion-button::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
    transition: transform var(--transition-normal);
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: var(--spacing-lg);
    background: var(--white);
    color: var(--gray-600);
    line-height: 1.7;
}

/* Accreditation Page */
.accreditation-description h5 {
    color: var(--primary-color);
}

.accreditation-tabs {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.accreditation-tabs .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

.accreditation-tabs .nav-link {
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: -2px;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.accreditation-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.accreditation-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    background: transparent;
}

.accreditation-content {
    min-height: 400px;
    padding-top: var(--spacing-xl);
}

.accreditation-intro-box {
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
}

.accreditation-intro-box p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
    line-height: 1.7;
}

.accreditation-intro-box p:last-child {
    margin-bottom: 0;
}

.accreditation-box {
    display: flex;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
}


.accreditation-detail h6 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.accreditation-detail .para1 {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.accreditation-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.accreditation-links .btn-outline {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
}

.memberships-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.memberships-list li {
    padding: var(--spacing-sm) 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.memberships-list li i {
    font-size: 0.5rem;
    color: var(--secondary-color);
}

/* Tuition Fee Page */
.tuition-sidebar {
    padding: var(--spacing-2xl);
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.tuition-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-xl);
    filter: brightness(0) invert(1);
}

.tuition-sidebar h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
}

.tuition-description p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.scholarship-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.scholarship-list li {
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.scholarship-list li span {
    color: var(--secondary-color);
}

/* Credit Cost Section */
.credit-cost-section {
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
}

.credit-cost-section h5 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.credit-cost-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
}

.credit-cost-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.credit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.credit-cost-list h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.credit-cost-list h4 span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* Degree Program Tables */
.degree-program {
    margin-bottom: var(--spacing-2xl);
}

.program-title {
    background: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.program-title h6 {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
}

.program-table {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden;
}

.table-header,
.table-row {
    display: flex;
    flex-wrap: wrap;
}

.table-header {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.table-row {
    border-bottom: 1px solid var(--gray-100);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: var(--gray-50);
}

.table-cell {
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
}

.w-12 { flex: 0 0 12%; max-width: 12%; }
.w-15 { flex: 0 0 15%; max-width: 15%; }
.w-20 { flex: 0 0 20%; max-width: 20%; }

.table-cell .btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
}

/* Financial Cards Section */
.financial-cards {
    padding: var(--spacing-3xl) 0;
}

.financial-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    height: 100%;
    box-shadow: var(--shadow-lg);
}

.financial-card h5 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.financial-card .para1 {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Para Classes */
.para1 {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.para2 {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Text Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

/* Responsive Styles for Internal Pages */
@media (max-width: 992px) {
    .banner-slider .banner-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accreditation-box {
        flex-direction: column;
        text-align: center;
    }


    .scholarship-list {
        grid-template-columns: 1fr;
    }

    .table-header {
        display: none;
    }

    .table-row {
        flex-direction: column;
        padding: var(--spacing-md);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        margin-bottom: var(--spacing-md);
    }

    .table-cell {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: space-between;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray-700);
    }

    .w-12, .w-15, .w-20 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-slider .banner {
        min-height: 350px;
    }

    .banner-slider .banner-content h1 {
        font-size: 1.75rem;
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-section .stat-item h4 {
        font-size: 2rem;
    }

    .credit-cost-list {
        flex-direction: column;
    }

    .accreditation-tabs .nav-link {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .dean-image {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }

    .faq-tabs {
        justify-content: center;
    }

    .financial-card {
        margin-bottom: var(--spacing-xl);
    }
}

@media (max-width: 576px) {
    .top-form .heading {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }

    .why-choose-card {
        margin-bottom: var(--spacing-xl);
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: var(--spacing-md);
    }
}

/* ============================================
   Footer Testimonials/Logo Slider
   ============================================ */
.footer-testimonials-slider {
    background: var(--gray-100);
    padding: var(--spacing-xl) 0;
}

.footer-logo-slider {
    max-width: 100%;
}

.footer-logo-slider .testimonial-card {
    padding: var(--spacing-md);
    text-align: center;
}

.footer-logo-slider .testimonial-logo {
    margin: 0 auto;
}

.footer-logo-slider .testimonial-logo img {
    max-height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.footer-logo-slider .testimonial-logo img:hover {
    opacity: 1;
}

/* ============================================
   Divider Line (CSS-based)
   ============================================ */
.divider-line {
    width: 100%;
    max-width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   Mission/Vision Icons
   ============================================ */
.mission-vision-section .mission-icon,
.mission-vision-section .vision-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.mission-vision-section .mission-icon i,
.mission-vision-section .vision-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* ============================================
   Dean Avatar (Icon-based)
   ============================================ */
.dean-avatar {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.dean-avatar i {
    font-size: 4rem;
    color: var(--white);
}

/* ============================================
   Internal Page Hero Banner
   ============================================ */
.banner-slider.internal-page .banner {
    min-height: 400px;
}

.banner-slider.internal-page .banner::before {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(49, 151, 149, 0.75));
}

/* ============================================
   Ranking Page Styles
   ============================================ */
.ranking-main {
    padding-bottom: var(--spacing-3xl);
}

/* Prestige Section */
.prestige-sidebar {
    text-align: center;
    padding: var(--spacing-xl);
}

.prestige-sidebar .prestige-logo {
    max-width: 180px;
    margin-bottom: var(--spacing-lg);
}

.prestige-sidebar h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.prestige-description {
    padding: var(--spacing-lg);
}

.prestige-description .para1 {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Popular Schools Chart */
.popular-schools-chart {
    padding: var(--spacing-2xl) 0;
}

.schools-circle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
}

.schools-circle-container .center-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

    .schools-circle-container .center-logo img {
        max-width: 135%;
        height: auto;
    }

.school-item {
    text-align: center;
}

.school-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.school-item.school-psychology .school-circle {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.school-item.school-business-and-management .school-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.school-item.school-engineering .school-circle {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.school-item.school-health-sciences .school-circle {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
}

.school-item.school-computer-science .school-circle {
    background: linear-gradient(135deg, #3182ce, #2b6cb0);
}

.school-item.school-law-and-legal-studies .school-circle {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.school-name {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    display: block;
}

/* Enrollment Section */
.enrollment-section {
    background: var(--gray-50);
}

.enrollment-chart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
}

.enrollment-visual {
    position: relative;
}

.enrollment-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.enrollment-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.enrollment-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.enrollment-stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: var(--white);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.enrollment-stat-item .stat-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 80px;
}

.enrollment-stat-item .stat-label {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Insights Section */
.insights-section {
    background: var(--white);
}

.insights-chart {
    padding: var(--spacing-xl) 0;
}

.insights-visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-3xl);
}

.insights-left,
.insights-right {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.student-stats,
.faculty-stats {
    background: var(--gray-50);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.student-stats .stat-row,
.faculty-stats .stat-row {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.student-stats .stat-row:last-child,
.faculty-stats .stat-row:last-child {
    border-bottom: none;
}

.student-stats .highlight,
.faculty-stats .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.student-stats .highlight.big,
.faculty-stats .highlight.big {
    font-size: 2rem;
}

/* Employers Section */
.employers-section {
    background: var(--gray-50);
}

.employer-table {
    margin-bottom: var(--spacing-lg);
}

.employer-table .table-title {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
}

.employer-table .table-title.bg-primary {
    background: var(--primary-color);
}

.employer-table .table-title.bg-secondary {
    background: var(--secondary-color);
}

.employer-table .table-title h5 {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.employer-table .table-body {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--white);
}

.employer-table .table-body li {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.employer-table .table-body li:last-child {
    border-bottom: none;
}

.employer-table .table-body li.highlighted {
    background: var(--secondary-light);
    font-weight: 700;
    color: var(--primary-dark);
}

/* Affordability Section */
.affordability-section {
    background: var(--white);
}

.cta-card {
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85), rgba(204, 153, 0, 0.85));
    border-radius: var(--radius-lg);
    z-index: 1;
}

.cta-card > * {
    position: relative;
    z-index: 2;
}

.cta-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.4;
}

.cta-card .cta-logo {
    max-width: 150px;
    opacity: 0.9;
    margin-top: var(--spacing-lg);
}

.program-rankings .row {
    margin: 0 -var(--spacing-sm);
}

.program-rankings .col-lg-6 {
    padding: var(--spacing-sm);
}

.ranking-box {
    background: var(--gray-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.ranking-box h4 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.ranking-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Responsive adjustments for Ranking Page */
@media (max-width: 768px) {
    .schools-circle-container {
        gap: var(--spacing-md);
    }

    .school-circle {
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }

    .enrollment-chart {
        flex-direction: column;
    }

    .enrollment-circle {
        width: 160px;
        height: 160px;
    }

    .enrollment-title {
        font-size: 1rem;
    }

    .insights-visual {
        flex-direction: column;
        align-items: center;
    }

    .insights-left,
    .insights-right {
        min-width: 100%;
    }

    .cta-card {
        margin-bottom: var(--spacing-xl);
    }

    .ranking-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Career Center Page Styles
   ============================================ */

/* Career Main Section */
.career-main {
    background: var(--gray-50);
}

/* Career Opportunity Cards */
.career-opportunity-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.career-opportunity-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

    .career-opportunity-card.active {
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 39, 68, 0.95) 100%);
        color: var(--white);
    }

.career-opportunity-card.active h5,
.career-opportunity-card.active p {
    color: var(--white);
}

.career-opportunity-card .opportunity-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.career-opportunity-card.active .opportunity-icon {
    background: rgba(255, 255, 255, 0.2);
}

.career-opportunity-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.career-opportunity-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Recent Events Section */
.recent-events-section {
    background: var(--gray-100);
}

.events-slider-wrapper {
    overflow: hidden;
}

.events-slider {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    padding: var(--spacing-md) 0;
    scroll-snap-type: x mandatory;
}

.event-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.event-card .event-image {
    height: 200px;
    overflow: hidden;
}

.event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-card .event-info {
    padding: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
}

.event-card .event-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.event-card .event-info .event-date {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Career Stats Section */
.career-stats-section {
    background: var(--white);
}

.accelerate-degree-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .accelerate-degree-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 39, 68, 0.95) 100%);
        z-index: 1;
    }

.accelerate-degree-card > * {
    position: relative;
    z-index: 2;
}

.accelerate-degree-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.accelerate-degree-card p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.accelerate-degree-card .btn {
    display: inline-block;
    width: auto;
}

.career-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
}

.career-stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
}

.career-stat-item .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.career-stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Responsive adjustments for Career Center */
@media (max-width: 991px) {
    .career-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accelerate-degree-card {
        margin-bottom: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .career-stats-grid {
        grid-template-columns: 1fr;
    }

    .career-stat-item .stat-value {
        font-size: 2rem;
    }

    .event-card {
        flex: 0 0 280px;
    }
}

/* ============================================
   Research Page Styles
   ============================================ */

/* Research Main Section */
.research-main {
    background: var(--gray-50);
}

.research-sidebar {
    text-align: center;
}

.research-sidebar .research-logo {
    max-width: 200px;
    margin-bottom: var(--spacing-lg);
}

.research-sidebar h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.research-description {
    display: flex;
    align-items: center;
    height: 100%;
}

/* High Research Standards Section */
.high-research-section {
    position: relative;
}

.high-research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 39, 68, 0.95) 100%);
    z-index: 1;
}

.high-research-section .container {
    position: relative;
    z-index: 2;
}

.high-research-section .section-heading h3,
.high-research-section .section-heading p {
    color: var(--white);
}

/* Research Content Boxes */
.research-content-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    height: 100%;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.research-content-box:hover {
    box-shadow: var(--shadow-md);
}

.research-content-box.active {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 39, 68, 0.95) 100%);
    border-left-color: var(--white);
}

.research-content-box.active h5,
.research-content-box.active p {
    color: var(--white);
}

.research-content-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.research-content-box p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Research Team Slider */
.research-team-slider {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.team-member-card {
    text-align: center;
}

.team-member-card img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.team-member-card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.team-member-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

/* Research Departments */
.research-departments {
    background: var(--gray-100);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    height: 100%;
}

.research-departments h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--secondary-color);
}

.research-departments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.research-departments ul li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.research-departments ul li:last-child {
    border-bottom: none;
}

.research-departments ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Research Numbers Section */
.research-numbers-section {
    background: var(--gray-50);
}

.research-stats-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.research-stat-item {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 200px;
    border-top: 4px solid var(--primary-color);
}

.research-stat-item .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.research-stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Responsive adjustments for Research */
@media (max-width: 991px) {
    .research-sidebar {
        margin-bottom: var(--spacing-xl);
    }

    .research-stats-grid {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .research-stat-item {
        min-width: 150px;
        padding: var(--spacing-lg);
    }

    .research-stat-item .stat-value {
        font-size: 2rem;
    }
}

/* ============================================
   Contact Us Page Styles
   ============================================ */

.contact-main {
    position: relative;
}

.contact-main .section-heading h3 {
    position: relative;
    padding-bottom: var(--spacing-md);
}

.contact-main .section-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

/* Contact Info Box */
.contact-info-box {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(15, 39, 68, 0.9) 100%);
    z-index: 1;
}

.contact-info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.contact-info-box ul li {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-box ul li:last-child {
    border-bottom: none;
}

.contact-info-box ul li h6 {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-box ul li span,
.contact-info-box ul li a {
    color: var(--white);
    font-size: 1rem;
    text-decoration: none;
    display: block;
    transition: var(--transition-fast);
}

.contact-info-box ul li a:hover {
    color: var(--secondary-color);
}

.contact-info-box .chat-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.contact-info-box .chat-link:hover {
    color: var(--secondary-light);
}

/* Contact Details Section */
.contact-details-section {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    position: relative;
}

    .contact-details-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(15, 39, 68, 0.9) 100%);
        z-index: 1;
    }

.contact-details-section .container {
    position: relative;
    z-index: 2;
}

.contact-detail-box {
    padding: var(--spacing-xl);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.contact-detail-box:last-child,
.col-lg-4:last-child .contact-detail-box {
    border-right: none;
}

.contact-detail-box h5 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.contact-detail-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive adjustments for Contact Us */
@media (max-width: 991px) {
    .contact-info-box {
        margin-top: var(--spacing-2xl);
    }

    .contact-detail-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: var(--spacing-xl) 0;
    }

    .col-lg-4:last-child .contact-detail-box {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .contact-info-box {
        padding: var(--spacing-xl);
    }

    .contact-detail-box h5 {
        font-size: 1.1rem;
    }
}

/* ============================================
   News & Events Page Styles
   ============================================ */

.news-events-main {
    position: relative;
}

/* News Event Card */
.news-event-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.news-event-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.news-event-card .news-image {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    overflow: hidden;
}

.news-event-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    transition: var(--transition-normal);
}

.news-event-card:hover .news-image img {
    transform: scale(1.05);
}

.news-event-card .news-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-event-card .news-arrow::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 0.9rem;
}

.news-event-card .news-content {
    flex: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
}

.news-event-card .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.news-event-card .news-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.news-event-card .news-type.news {
    background: rgba(139, 69, 89, 0.1);
    color: #8b4559;
}

.news-event-card .news-type.event {
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
}

.news-event-card .news-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.news-event-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-event-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.news-event-card .btn {
    align-self: flex-start;
}

/* Responsive adjustments for News & Events */
@media (max-width: 991px) {
    .news-event-card {
        flex-direction: column;
    }

    .news-event-card .news-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .news-event-card .news-image img {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .news-event-card .news-content {
        padding: var(--spacing-lg);
    }

    .news-event-card h5 {
        font-size: 1rem;
    }
}

/* ============================================
   Student Resource Center Page Styles
   ============================================ */

.student-resource-main {
    position: relative;
}

/* Support Hub Box */
.support-hub-box {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 4px solid var(--secondary-color);
}

.support-hub-box::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.support-hub-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto var(--spacing-lg);
}

.support-hub-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.support-hub-box .para1 {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.support-hub-box .para1:last-child {
    margin-bottom: 0;
}

/* Why Enroll Section */
.why-enroll-section {
    position: relative;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
}

.why-enroll-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(0, 51, 102, 0.85) 100%);
    z-index: 1;
}

.why-enroll-section .container {
    position: relative;
    z-index: 2;
}

.why-enroll-section .section-heading.light h3 {
    color: var(--white);
}

/* Service Boxes */
.service-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-box.focused {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a64a 100%);
}

.service-box.focused h5,
.service-box.focused .para1 {
    color: var(--white);
}

.service-box.focused .service-number {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--spacing-lg);
}

.service-box h5 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.service-box .para1 {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Divider Line Light */
.divider-line.light {
    background: rgba(255, 255, 255, 0.3);
}

/* Resource Stats Section */
.resource-stats-section {
    background: var(--white);
}

.stats-counselor-box {
    background-color: var(--gray-100);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.stats-counselor-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.95) 0%, rgba(26, 54, 93, 0.85) 40%, rgba(26, 54, 93, 0.7) 100%);
    z-index: 1;
}

.stats-counselor-box .row {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-item h5 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
}

.bb-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.br-1 {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.counselor-content {
    padding: var(--spacing-2xl);
}

.counselor-content .para1 {
    color: var(--white);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-100);
    background-size: cover;
    background-position: center;
}

.testimonials-section::before {
    
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: var(--spacing-2xl);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--spacing-lg);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.testimonial-item h6 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.testimonial-item .para1 {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.testimonial-role {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments for Student Resource Center */
@media (max-width: 991px) {
    .stats-counselor-box .row {
        flex-direction: column;
    }

    .stats-counselor-box .col-md-4 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .br-1 {
        border-right: none;
    }

    .counselor-content {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .support-hub-box {
        padding: var(--spacing-xl);
    }

    .service-box {
        margin-bottom: var(--spacing-lg);
    }

    .stat-item h5 {
        font-size: 1.5rem;
    }

    .testimonial-item {
        padding: var(--spacing-xl);
    }

    .testimonial-item .para1 {
        font-size: 0.95rem;
    }
}

/* ============================================
   Apply Now Page Styles
   ============================================ */

.apply-now-main {
    background: var(--gray-50);
    padding-bottom: var(--spacing-3xl);
}

.apply-now-main .breadcrumb-area {
    padding: var(--spacing-lg) 0;
}

/* Application Steps */
.application-steps {
    padding: var(--spacing-2xl) 0;
}

.application-steps ul {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.application-steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 var(--spacing-lg);
}

.application-steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: var(--gray-300);
}

.application-steps li.active:not(:last-child)::after {
    background: var(--secondary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-normal);
}

.application-steps li.active .step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.step-number span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
}

.application-steps li.active .step-number span {
    color: rgba(255, 255, 255, 0.7);
}

.step-number strong {
    font-size: 1.5rem;
    color: var(--gray-600);
    line-height: 1;
}

.application-steps li.active .step-number strong {
    color: var(--white);
}

.application-steps li h6 {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.application-steps li.active h6 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Application Form Box */
.application-form-box {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.application-form .form-group {
    margin-bottom: var(--spacing-lg);
}

.application-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--spacing-sm);
}

.application-form .form-control {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.application-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.application-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.application-form .btn-primary {
    padding: var(--spacing-md) var(--spacing-3xl);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promo Box */
.promo-box {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 51, 102, 0.85) 0%, rgba(26, 54, 93, 0.9) 100%);
    z-index: 1;
}

.promo-box > * {
    position: relative;
    z-index: 2;
}

.promo-box h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.promo-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.promo-box .btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.promo-box .btn-secondary:hover {
    background: var(--secondary-light);
}

.promo-logo {
    max-width: 150px;
    opacity: 0.9;
}

/* Responsive adjustments for Apply Now */
@media (max-width: 991px) {
    .promo-box {
        margin-top: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .application-steps ul {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .application-steps li:not(:last-child)::after {
        display: none;
    }

    .application-form-box {
        padding: var(--spacing-xl);
    }

    .promo-box h4 {
        font-size: 1.25rem;
    }
}

/* ========================================
   Schools Page Styles
   ======================================== */

.career-focused-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.career-focused-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.career-focused-section .container {
    position: relative;
    z-index: 1;
}

.areas-study-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.areas-study-box h4 {
    color: var(--primary-color);
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.areas-study-box h4 strong {
    color: var(--secondary-color);
    display: block;
    font-size: 2rem;
}

.areas-description {
    padding-left: var(--spacing-lg);
}

.decorative-dots {
    margin-top: var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.decorative-dots span {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.6;
}

/* Programs Section */
.programs-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.programs-section .container {
    position: relative;
    z-index: 1;
}

.programs-diagram {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.diagram-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.diagram-circle.masters {
    background: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.diagram-circle.bachelors {
    background: var(--primary-color);
    margin-top: -30px;
    margin-left: 60px;
    position: relative;
    z-index: 1;
}

.diagram-labels {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.label-item {
    background: var(--light-bg);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.label-item.diploma {
    background: #f0f0f0;
}

.label-item.certificate {
    background: #e8e8e8;
}

.label-item.doctorate {
    background: #e0e0e0;
}

/* Schools List */
.schools-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
    margin: 0;
}

.schools-list ul li {
    flex: 0 0 calc(33.333% - var(--spacing-sm));
}

.schools-list ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.schools-list ul li a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* School Programs Grid */
.school-programs-section {
    background: var(--light-bg);
}

.school-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 280px;
    transition: var(--transition-base);
}

.school-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.school-box i {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.school-box i::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--white);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.school-box i.ic1::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E"); }
.school-box i.ic2::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E"); }
.school-box i.ic3::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M4 4h16v2H4zm0 14h16v2H4zm0-7h16v2H4z'/%3E%3C/svg%3E"); }
.school-box i.ic4::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E"); }
.school-box i.ic5::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z'/%3E%3C/svg%3E"); }
.school-box i.ic6::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E"); }
.school-box i.ic7::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.05 8.05c-2.73 2.73-2.73 7.15-.02 9.88 1.47-3.4 4.09-6.24 7.36-7.93-2.77 2.34-4.71 5.61-5.39 9.32 2.6 1.23 5.8.78 7.95-1.37 2.73-2.73 2.73-7.17 0-9.9-2.74-2.73-7.17-2.73-9.9 0z'/%3E%3C/svg%3E"); }
.school-box i.ic8::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z'/%3E%3C/svg%3E"); }
.school-box i.ic9::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z'/%3E%3C/svg%3E"); }
.school-box i.ic10::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z'/%3E%3C/svg%3E"); }
.school-box i.ic11::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z'/%3E%3C/svg%3E"); }
.school-box i.ic12::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E"); }
.school-box i.ic13::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12.5 2.5c-2.5 0-4.5 2-4.5 4.5 0 1.63.87 3.05 2.17 3.84-2.91 1.03-5.17 3.67-5.17 7.16h2c0-3.03 2.47-5.5 5.5-5.5s5.5 2.47 5.5 5.5h2c0-3.49-2.26-6.13-5.17-7.16 1.3-.79 2.17-2.21 2.17-3.84 0-2.5-2-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); }
.school-box i.ic14::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z'/%3E%3C/svg%3E"); }
.school-box i.ic15::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }
.school-box i.ic16::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z'/%3E%3C/svg%3E"); }

.school-box h6 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.school-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--spacing-lg);
}

.school-box-footer {
    text-align: right;
}

.btn-learn-more {
    color: var(--white);
    background: var(--secondary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-base);
}

.btn-learn-more:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Schools Page Responsive */
@media (max-width: 991px) {
    .areas-description {
        padding-left: 0;
        margin-top: var(--spacing-md);
    }

    .schools-list ul li {
        flex: 0 0 calc(50% - var(--spacing-sm));
    }

    .diagram-circle {
        width: 120px;
        height: 120px;
        font-size: 0.8rem;
    }

    .diagram-circle.bachelors {
        margin-left: 50px;
    }
}

@media (max-width: 767px) {
    .areas-study-box h4 {
        font-size: 1.5rem;
    }

    .areas-study-box h4 strong {
        font-size: 1.75rem;
    }

    .schools-list ul li {
        flex: 0 0 100%;
    }

    .school-box {
        min-height: auto;
    }

    .programs-diagram {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .diagram-circle.bachelors {
        margin-left: 0;
        margin-top: -20px;
    }

    .diagram-labels {
        justify-content: center;
    }
}

/* ========================================
   Academics Page Styles
   ======================================== */

.academics-main {
    background: var(--light-bg);
}

/* Program Type Boxes */
.program-type-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.program-type-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.03) 0%, transparent 100%);
}

.program-type-box.active {
    background: var(--secondary-color);
    color: var(--white);
}

.program-type-box.active h5,
.program-type-box.active ul li {
    color: var(--white);
}

.program-type-box.large {
    min-height: 100%;
}

.program-type-box h5 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.program-type-box p {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-md);
}

.program-type-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.program-type-box ul li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--white);
}

.program-type-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.program-type-box.active ul li::before {
    background: var(--white);
}

/* Stand Out Section */
.stand-out-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.stand-out-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.stand-out-section .container {
    position: relative;
    z-index: 1;
}

.stand-out-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
}

.stand-out-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stand-out-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stand-out-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.stand-out-icon.ic1::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E"); }
.stand-out-icon.ic2::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }
.stand-out-icon.ic3::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E"); }

.stand-out-box h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.stand-out-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

/* Academic Calendar Section */
.academic-calendar-section {
    background: var(--primary-color);
}

.calendar-box {
    background-size: cover;
    background-position: center;
    padding: var(--spacing-xxl);
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.calendar-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.9) 0%, rgba(128, 0, 32, 0.7) 100%);
}

.calendar-box h5,
.calendar-box p,
.calendar-box a {
    position: relative;
    z-index: 1;
}

.calendar-box h5 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.calendar-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.calendar-box .btn-style {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.calendar-box .btn-style:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Stats Grid */
.stats-grid {
    background: var(--secondary-color);
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl);
}

.stats-grid ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.stats-grid ul li {
    text-align: center;
    padding: var(--spacing-lg);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid ul li:nth-child(3n) {
    border-right: none;
}

.stats-grid ul li:nth-child(n+4) {
    border-bottom: none;
}

.stats-grid ul li i {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto var(--spacing-sm);
    background: var(--white);
    border-radius: 50%;
}

.stats-grid ul li h4 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.stats-grid ul li p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin: 0;
}

/* Accreditations Section */
.accreditations-section {
    background: var(--white);
}

.accreditation-logo {
    text-align: center;
    padding: var(--spacing-md);
}

.accreditation-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-base);
}

.accreditation-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Academics Page Responsive */
@media (max-width: 991px) {
    .calendar-box {
        min-height: 250px;
    }

    .stats-grid ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid ul li:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stats-grid ul li:nth-child(2n) {
        border-right: none;
    }

    .stats-grid ul li:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .calendar-box h5 {
        font-size: 1.5rem;
    }

    .stats-grid ul li h4 {
        font-size: 1.5rem;
    }

    .stand-out-box {
        margin-bottom: var(--spacing-md);
    }

    .program-type-box {
        margin-bottom: var(--spacing-md);
    }
}

/* ========================================
   Admissions Page Styles
   ======================================== */

.admissions-main {
    background: var(--light-bg);
}

/* Enrollment Process */
.enrollment-process {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.enrollment-process li {
    flex: 0 0 25%;
    padding: 0 var(--spacing-sm);
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    height: 100%;
    border-left: 3px solid var(--secondary-color);
    position: relative;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
}

.step-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Empower Section */
.empower-section {
    background: var(--primary-color);
}

.empower-title h5 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.empower-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Admission Features Section */
.admission-features-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.admission-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.admission-features-section .container {
    position: relative;
    z-index: 1;
}

.admission-feature-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.admission-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
}

.admission-feature-box h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.admission-feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

/* Enrollment Stats Section */
.enrollment-stats-section {
    background: var(--primary-color);
}

.enrollment-sidebar {
    background-size: cover;
    background-position: center;
    padding: var(--spacing-xxl);
    height: 100%;
    min-height: 350px;
    position: relative;
}

.enrollment-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.95) 0%, rgba(128, 0, 32, 0.8) 100%);
}

.enrollment-sidebar h5,
.enrollment-sidebar ul {
    position: relative;
    z-index: 1;
}

.enrollment-sidebar h5 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.enrollment-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enrollment-sidebar ul li {
    margin-bottom: var(--spacing-md);
}

.enrollment-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.enrollment-sidebar ul li a:hover {
    padding-left: var(--spacing-sm);
}

.enrollment-grid {
    background: var(--secondary-color);
}

/* Financial Support Section */
.financial-support-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.financial-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(128, 0, 32, 0.95) 0%, rgba(128, 0, 32, 0.7) 50%, transparent 100%);
}

.financial-content {
    position: relative;
    z-index: 1;
}

.financial-content h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.financial-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

/* Admissions Page Responsive */
@media (max-width: 991px) {
    .enrollment-process li {
        flex: 0 0 50%;
        margin-bottom: var(--spacing-md);
    }

    .enrollment-sidebar {
        min-height: auto;
        padding: var(--spacing-xl);
    }
}

@media (max-width: 767px) {
    .enrollment-process li {
        flex: 0 0 100%;
    }

    .empower-title {
        margin-bottom: var(--spacing-md);
    }

    .admission-feature-box {
        margin-bottom: var(--spacing-md);
    }

    .financial-content h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   INTERNATIONAL PAGE STYLES
   ============================================ */

.international-main {
    background-color: var(--white);
}

.services-title-box {
    background: var(--primary-color);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);
}

.services-title-box h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.services-description {
    padding-left: var(--spacing-md);
}

/* International Service Boxes */
.international-service-box {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.international-service-box:hover,
.international-service-box.active {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.international-service-box .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.international-service-box .service-icon.ic1 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
}

.international-service-box .service-icon.ic1::before {
    content: "\f109";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
}

.international-service-box .service-icon.ic2 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
}

.international-service-box .service-icon.ic2::before {
    content: "\f0ac";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
}

.international-service-box .service-icon.ic3 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
}

.international-service-box .service-icon.ic3::before {
    content: "\f4c0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
}

.international-service-box h5 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    min-height: 60px;
}

.international-service-box p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Diversity CTA Section */
.diversity-cta {
    background-size: cover;
    background-position: center;
    position: relative;
}

.diversity-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 29, 43, 0.95), rgba(139, 29, 43, 0.8));
}

.diversity-cta .container {
    position: relative;
    z-index: 1;
}

.diversity-content h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Alumni Stories Section */
.alumni-stories-section {
    background-color: var(--bg-light);
}

.alumni-story-card {
    margin-bottom: var(--spacing-md);
}

.alumni-story-card h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    min-height: 60px;
}

.alumni-story-card .story-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.alumni-story-card .story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alumni-story-card .story-image:hover .story-overlay {
    opacity: 1;
}

.alumni-story-card .story-overlay p {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.alumni-story-card .story-overlay .btn-style {
    color: var(--white);
    font-size: 0.85rem;
}

/* International Features Section */
.international-features-section {
    background-color: var(--bg-light);
}

.feature-box-large,
.feature-box-small {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--box-shadow);
}

.feature-box-large {
    height: 100%;
}

.feature-box-large .feature-header,
.feature-box-small .feature-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.feature-box-large .feature-header i,
.feature-box-small .feature-header i {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-box-large .feature-header i::before,
.feature-box-small .feature-header i::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.feature-box-large .feature-header i.feature-icon.ic1::before {
    content: "\f5da";
}

.feature-box-small .feature-header i.feature-icon.ic2::before {
    content: "\f0c0";
}

.feature-box-small .feature-header i.feature-icon.ic3::before {
    content: "\f4c4";
}

.feature-box-large .feature-header h4,
.feature-box-small .feature-header h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    padding-top: 5px;
}

.feature-box-large .feature-content p,
.feature-box-small .feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    border-bottom: none;
    margin-bottom: var(--spacing-lg);
    justify-content: center;
}

.faq-tabs .nav-item {
    margin: 0;
}

.faq-tabs .nav-link {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-tabs .nav-link:hover,
.faq-tabs .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.faq-accordion {
    border: none;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md) !important;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B1D2B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-muted);
    line-height: 1.7;
}

/* International Page Responsive */
@media (max-width: 991px) {
    .services-title-box {
        margin-bottom: var(--spacing-md);
    }

    .services-description {
        padding-left: 0;
    }

    .international-service-box {
        margin-bottom: var(--spacing-md);
    }

    .diversity-content h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
    }

    .feature-box-large {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 767px) {
    .alumni-story-card h5 {
        min-height: auto;
    }

    .faq-tabs {
        justify-content: flex-start;
    }

    .faq-tabs .nav-link {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ============================================
   ALUMNI PAGE STYLES
   ============================================ */

.alumni-main {
    background-color: var(--white);
}

.network-title-box h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.network-title-box h4 strong {
    font-weight: 700;
}

.network-description {
    padding-left: var(--spacing-md);
}

.network-additional {
    text-align: center;
}

/* Learning Hub Section */
.learning-hub-section {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.learning-hub-content {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xxl);
    margin: var(--spacing-xl) 0;
}

.learning-hub-content h5 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.learning-hub-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* Financial Support Alumni */
.financial-support-alumni {
    background-color: var(--white);
}

.financial-content-alumni h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.financial-content-alumni p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.financial-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

/* Research Excellence Section */
.research-excellence-section {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.research-content {
    background: rgba(139, 29, 43, 0.95);
    padding: var(--spacing-xxl);
    margin: var(--spacing-xl) 0;
}

.research-content h5 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.research-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.research-content .btn-style {
    color: var(--white);
}

/* Alumni Page Responsive */
@media (max-width: 991px) {
    .network-description {
        padding-left: 0;
        margin-top: var(--spacing-md);
    }

    .learning-hub-content,
    .research-content {
        margin: 0;
        padding: var(--spacing-xl);
    }

    .financial-image {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .network-title-box h4 {
        font-size: 1.25rem;
    }

    .learning-hub-content h5,
    .research-content h5 {
        font-size: 1.25rem;
    }
}

/* =========================================
   FACULTY PAGE STYLES
   ========================================= */

/* Faculty Main Section */
.faculty-main {
    padding-bottom: var(--spacing-xl);
}

.faculty-shape-img img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* Distinguished Faculty Section */
.faculty-departments-section {
    padding: var(--spacing-xl) 0;
}

.faculty-departments-header {
    background: var(--primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
}

.faculty-departments-header h6 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

    .faculty-departments-header p {
        color: var(--primary);
        margin-bottom: 0;
    }

/* Faculty Accordion */
.faculty-accordion .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-xs);
    border-radius: var(--border-radius-md) !important;
    overflow: hidden;
}

.faculty-accordion .accordion-button {
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 500;
    background: var(--white);
    color: var(--text-dark);
}

.faculty-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.faculty-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.faculty-accordion .accordion-button::after {
    background-size: 1rem;
}

.faculty-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faculty-accordion .accordion-body {
    padding: var(--spacing-md) var(--spacing-lg);
    background: #f8f9fa;
}

/* Faculty Members Table */
.faculty-members-table {
    width: 100%;
}

.faculty-member-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.faculty-member-row:last-child {
    border-bottom: none;
}

.faculty-member-row span {
    flex: 1;
    font-size: 0.95rem;
}

.member-name {
    font-weight: 600;
    color: var(--text-dark);
}

.member-email {
    color: var(--primary);
}

.member-position {
    text-align: right;
    color: var(--text-muted);
}

/* Faculty Benefits Section */
.faculty-benefits-section {
    padding: var(--spacing-xxl) 0;
}

.faculty-benefit-box {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.faculty-benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 29, 43, 0.9), transparent 60%);
}

.faculty-benefit-box h5 {
    position: relative;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Demographics Section */
.faculty-demographics-section {
    padding: var(--spacing-xxl) 0;
}

.demographics-chart-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    margin-bottom: var(--spacing-lg);
}

.chart-image img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

/* Faculty Insights Section */
.faculty-insights-section {
    padding: var(--spacing-xxl) 0;
}

.insights-chart-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
}

/* Faculty CTA Section */
.faculty-cta-section {
    padding: var(--spacing-xl) 0;
}

.faculty-cta-box {
    background-size: cover;
    background-position: center;
    padding: var(--spacing-xxl);
    border-radius: var(--border-radius-md);
    position: relative;
}

.faculty-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent 50%);
    border-radius: var(--border-radius-md);
}

.faculty-cta-box > .row {
    position: relative;
    z-index: 1;
}

.faculty-cta-box h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.faculty-cta-box .cta-logo img {
    max-width: 150px;
    margin-bottom: var(--spacing-md);
}

/* Faculty Page Responsive */
@media (max-width: 991px) {
    .faculty-member-row {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .member-position {
        text-align: left;
    }

    .faculty-benefit-box {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .faculty-departments-header h6 {
        font-size: 1.1rem;
    }

    .faculty-cta-box {
        padding: var(--spacing-xl);
    }

    .faculty-cta-box h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-lg);
    }

    .faculty-benefit-box {
        height: 160px;
        margin-bottom: var(--spacing-md);
    }
}

/* ========================================
   Credit Transfer Program Page Styles
   ======================================== */

.credit-transfer-main {
    padding-top: 0;
}

.credit-transfer-section {
    margin-bottom: var(--spacing-xl);
}

.credit-transfer-section:last-child {
    margin-bottom: 0;
}

.credit-transfer-section .headingstyle2 {
    margin-bottom: var(--spacing-md);
}

.credit-transfer-section .headingstyle2 h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.credit-transfer-section .para1 {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.credit-transfer-section .para1:last-child {
    margin-bottom: 0;
}

/* Credit Transfer Info Section */
.credit-transfer-info-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.credit-transfer-info-box {
    padding: var(--spacing-lg);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.credit-transfer-info-box:last-child {
    border-right: none;
}

.credit-transfer-info-box h5 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.credit-transfer-info-box .para2 {
    color: var(--white);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Styles for Credit Transfer Program Page */
@media (max-width: 991px) {
    .credit-transfer-section .headingstyle2 h3 {
        font-size: 1.5rem;
    }

    .credit-transfer-info-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-lg);
    }

    .credit-transfer-info-box:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .credit-transfer-section .headingstyle2 h3 {
        font-size: 1.25rem;
    }

    .credit-transfer-info-box h5 {
        font-size: 1.1rem;
    }
}

/* ========================================
   Financial Aid Programs Page Styles
   ======================================== */

.financial-aid-main {
    padding-top: 0;
}

.financial-intro-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Program Type Boxes */
.program-type-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    min-height: 220px;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: var(--spacing-md);
}

.program-type-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 15px;
    z-index: 1;
}

.program-type-box h6 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.program-type-box .para1 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.program-type-box .btn-style {
    position: relative;
    z-index: 2;
    width: fit-content;
}

/* Budget Box */
.budget-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.budget-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.7) 100%);
    border-radius: 15px;
    z-index: 1;
}

.budget-box h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.budget-box .btn-style {
    position: relative;
    z-index: 2;
    width: fit-content;
}

.budget-box img {
    max-width: 150px;
    position: relative;
    z-index: 2;
}

/* Eligibility Box */
.eligibility-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eligibility-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 15px;
    z-index: 1;
}

.eligibility-box h5 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.eligibility-box .para1 {
    color: var(--text-color);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Affordability Section */
.affordability-section {
    background-color: var(--light-bg);
}

.affordability-cta-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    min-height: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.affordability-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.7) 100%);
    border-radius: 15px;
    z-index: 1;
}

.affordability-cta-box h4 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.affordability-cta-box .btn-style {
    position: relative;
    z-index: 2;
    width: fit-content;
}

.affordability-cta-box img {
    max-width: 150px;
    position: relative;
    z-index: 2;
}

/* Ranking Boxes */
.ranking-box {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.ranking-box:last-child {
    border-bottom: none;
}

.ranking-box h4 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.ranking-box p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Insights Section */
.insights-section {
    background-color: var(--white);
}

.insight-stat-box {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    height: 100%;
}

.insight-stat-box .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-md);
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.insight-stat-box h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.insight-stat-box .para1 {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Funding Chart */
.funding-chart-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* Financial CTA Section */
.financial-cta-section {
    background-color: var(--white);
}

.financial-cta-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    position: relative;
}

.financial-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    border-radius: 15px;
    z-index: 1;
}

.financial-cta-box .row {
    position: relative;
    z-index: 2;
}

.financial-cta-box h6 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.financial-cta-box .cta-logo img {
    max-width: 180px;
}

/* Responsive Styles for Financial Aid Programs Page */
@media (max-width: 991px) {
    .program-type-box {
        min-height: 180px;
    }

    .budget-box,
    .eligibility-box,
    .affordability-cta-box {
        min-height: auto;
        margin-bottom: var(--spacing-md);
    }

    .ranking-box h4 {
        font-size: 1.5rem;
    }

    .insight-stat-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .program-type-box h6 {
        font-size: 1rem;
    }

    .budget-box h4,
    .affordability-cta-box h4 {
        font-size: 1.25rem;
    }

    .eligibility-box h5 {
        font-size: 1.1rem;
    }

    .financial-cta-box h6 {
        font-size: 1.1rem;
    }
}

/* ===================================
   Request More Information Page Styles
   =================================== */

.request-info-main {
    padding-top: 0;
}

.calendar-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(100, 0, 0, 0.75) 100%);
    border-radius: 15px;
    z-index: 1;
}

.calendar-box h3,
.calendar-box p,
.calendar-box .btn-style {
    position: relative;
    z-index: 2;
}

.calendar-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.calendar-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.enroll-cta-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enroll-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(100, 0, 0, 0.75) 100%);
    border-radius: 15px;
    z-index: 1;
}

.enroll-cta-box h3,
.enroll-cta-box .btn-style,
.enroll-cta-box img {
    position: relative;
    z-index: 2;
}

.enroll-cta-box h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.enroll-cta-box img {
    max-width: 200px;
}

.request-info-form .form-header {
    background: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.request-info-form .form-header h6 {
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.request-info-form .form-group {
    margin-bottom: var(--spacing-md);
}

.request-info-form .label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.request-info-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.request-info-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.request-info-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.request-info-form .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.request-info-form .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

/* Responsive Styles for Request More Information Page */
@media (max-width: 991px) {
    .calendar-box,
    .enroll-cta-box {
        min-height: auto;
        margin-bottom: var(--spacing-lg);
    }

    .calendar-box h3 {
        font-size: 1.25rem;
    }

    .enroll-cta-box h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .request-info-form .form-control {
        padding: 10px 12px;
    }

    .request-info-form .btn-primary {
        padding: 10px 20px;
    }
}

/* ===================================
   International Scholarship Page Styles
   =================================== */

.intl-scholarship-main {
    padding-top: 0;
}

.explore-scholarship-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    position: relative;
    min-height: 200px;
}

.explore-scholarship-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(100, 0, 0, 0.75) 100%);
    border-radius: 15px;
    z-index: 1;
}

.explore-scholarship-box .d-flex,
.explore-scholarship-box p {
    position: relative;
    z-index: 2;
}

.explore-scholarship-box .explore-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-scholarship-box h5 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.explore-scholarship-box p {
    color: rgba(255, 255, 255, 0.9);
}

.scholarship-types-list {
    background: var(--primary-color);
    border-radius: 15px;
    padding: var(--spacing-lg);
}

.scholarship-types-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.scholarship-types-list ul li {
    width: 33.333%;
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.scholarship-types-list ul li::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.scholarship-insights-section {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

.scholarship-cta-section {
    /*padding: var(--spacing-xxl) 0;*/
}

.scholarship-cta-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: var(--spacing-xl);
    position: relative;
}

.scholarship-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    border-radius: 15px;
    z-index: 1;
}

.scholarship-cta-box .row {
    position: relative;
    z-index: 2;
}

.scholarship-cta-box h6 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.scholarship-cta-box .cta-logo img {
    max-width: 180px;
}

/* Responsive Styles for International Scholarship Page */
@media (max-width: 991px) {
    .explore-scholarship-box {
        min-height: auto;
    }

    .explore-scholarship-box h5 {
        font-size: 1.25rem;
    }

    .scholarship-types-list ul li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .scholarship-types-list ul li {
        width: 100%;
    }

    .scholarship-cta-box h6 {
        font-size: 1.1rem;
    }
}

/* ===================================
   Degree Program Page Styles
   =================================== */

.degree-program-main {
    padding-top: 0;
}

.degree-intro-image img {
    border-radius: 15px;
}

.degree-intro-content h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.offered-programs-section {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

.degree-program-box {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-lg);
    min-height: 280px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.degree-program-box.active {
    background: var(--primary-color);
    color: var(--white);
}

.degree-program-box.active h5,
.degree-program-box.active p,
.degree-program-box.active ul li {
    color: var(--white);
}

.degree-program-box:not(.active)[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.degree-program-box:not(.active)[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(100, 0, 0, 0.75) 100%);
    border-radius: 15px;
    z-index: 1;
}

.degree-program-box:not(.active)[style*="background-image"] h5,
.degree-program-box:not(.active)[style*="background-image"] p,
.degree-program-box:not(.active)[style*="background-image"] ul {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.degree-program-box h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.degree-program-box p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.degree-program-box ul {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
}

.degree-program-box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: var(--spacing-xs);
}

.degree-program-box ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

.admission-process-section {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

.admission-steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.admission-step-box {
    flex: 0 0 23%;
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.admission-step-box::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--primary-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.admission-step-box:last-child::after {
    display: none;
}

.admission-step-box .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.admission-step-box h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.admission-step-box p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.difference-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.7) 50%, transparent 100%);
    z-index: 1;
}

.difference-section .container-fluid,
.difference-section .container {
    position: relative;
    z-index: 2;
}

.difference-cta {
    padding: var(--spacing-xl);
}

.difference-cta h5 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.difference-logo {
    max-width: 150px;
}

.difference-content {
    padding: var(--spacing-xl);
}

.difference-content h4 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

.difference-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.difference-item {
    flex: 0 0 calc(25% - var(--spacing-lg));
    text-align: center;
}

.difference-item .difference-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
}

.difference-item h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Styles for Degree Program Page */
@media (max-width: 991px) {
    .admission-step-box {
        flex: 0 0 48%;
        margin-bottom: var(--spacing-md);
    }

    .admission-step-box:nth-child(2)::after {
        display: none;
    }

    .difference-item {
        flex: 0 0 calc(50% - var(--spacing-lg));
    }
}

@media (max-width: 767px) {
    .admission-step-box {
        flex: 0 0 100%;
    }

    .admission-step-box::after {
        display: none;
    }

    .difference-item {
        flex: 0 0 100%;
    }

    .degree-program-box {
        min-height: auto;
    }

    .difference-content h4 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Privacy Policy Page Styles
============================================ */
.privacy-policy-section {
    
    background-color: var(--bg-light);
}

.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy-content .intro-text {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.privacy-policy-content .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.privacy-policy-content .policy-section {
    margin-bottom: var(--spacing-xl);
}

.privacy-policy-content .policy-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.privacy-policy-content .policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.privacy-policy-content .policy-section p:last-child {
    margin-bottom: 0;
}

.privacy-policy-content .policy-section p strong {
    color: var(--text-primary);
}

.policy-contact-info {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--primary-color);
}

.policy-contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.policy-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-contact-info a:hover {
    color: var(--secondary-color);
}

.policy-contact-info .trademark-notice {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-muted);
}

/* Privacy Policy Responsive */
@media (max-width: 991px) {
    .privacy-policy-content {
        padding: 0 var(--spacing-md);
    }

    .privacy-policy-content .intro-text p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .privacy-policy-section {
        padding: var(--spacing-xl) 0;
    }

    .privacy-policy-content .policy-section h5 {
        font-size: 1.1rem;
    }
}

/* ============================================
   ACADEMIC CALENDAR PAGE STYLES
============================================ */

.academic-calendar-section {
    padding-top: 0;
    padding-bottom: var(--spacing-xxl);
    background-color: var(--gray-100);
}

.calendar-table-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Calendar Tabs */
.calendar-tabs {
    background-color: var(--primary-color);
    padding: 0;
}

.calendar-tabs .nav-tabs {
    border: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.calendar-tabs .nav-item {
    flex: 1;
    min-width: 150px;
}

.calendar-tabs .nav-link {
    display: block;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    color: var(--white);
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    cursor: pointer;
}

.calendar-tabs .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.calendar-tabs .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Calendar Content */
.calendar-content {
    padding: 0;
}

.calendar-events-table {
    padding: 0;
}

.calendar-event-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.calendar-event-row:last-child {
    border-bottom: none;
}

.calendar-event-row:nth-child(odd) {
    background-color: var(--gray-50);
}

.calendar-event-row:nth-child(even) {
    background-color: var(--white);
}

.calendar-event-row:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.event-date {
    flex: 0 0 20%;
    min-width: 150px;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.05);
    display: flex;
    align-items: center;
    border-right: 2px solid var(--primary-color);
}

.event-description {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

/* Calendar CTA Box */
.calendar-cta-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xxl) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    position: relative;
    margin-bottom: 50px;
}

.calendar-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.9) 0%, rgba(var(--secondary-color-rgb), 0.85) 100%);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.calendar-cta-box > .row {
    position: relative;
    z-index: 2;
    width: 100%;
}

.calendar-cta-box .cta-text {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 250px;
    padding:30px;
}

.calendar-cta-box .cta-text h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.calendar-cta-box .cta-text .para1 {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.calendar-cta-box .cta-action {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-lg);
}

.calendar-cta-box .cta-logo {
    max-height: 60px;
    width: auto;
}

.calendar-cta-box .btn-style {
    background-color: var(--white);
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.calendar-cta-box .btn-style:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Academic Calendar Responsive */
@media (max-width: 991px) {
    .calendar-tabs .nav-link {
        padding: var(--spacing-md);
        font-size: 0.9rem;
    }

    .event-date {
        flex: 0 0 30%;
        min-width: 120px;
    }

    .calendar-cta-box {
        padding: var(--spacing-xl);
    }

    .calendar-cta-box .cta-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .calendar-tabs .nav-tabs {
        flex-direction: column;
    }

    .calendar-tabs .nav-item {
        width: 100%;
    }

    .calendar-tabs .nav-link {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .calendar-event-row {
        flex-direction: column;
    }

    .event-date {
        flex: none;
        width: 100%;
        min-width: auto;
        border-right: none;
        border-bottom: 2px solid var(--primary-color);
        padding: var(--spacing-sm) var(--spacing-md);
        justify-content: center;
        font-size: 0.95rem;
    }

    .event-description {
        padding: var(--spacing-md);
        justify-content: center;
        text-align: center;
    }

    .calendar-cta-box {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }

    .calendar-cta-box .cta-text h3 {
        font-size: 1.25rem;
    }

    .calendar-cta-box .cta-action {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* ============================================
   ADMISSION FAQS PAGE STYLES
============================================ */

.admission-faqs-section {
    padding-top: 0;
    padding-bottom: var(--spacing-xxl);
    background-color: var(--gray-100);
}

.faqs-content-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item .para1 {
    margin-bottom: 0;
    line-height: 1.8;
}

.faq-item .para1 strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

/* Sidebar CTA Box */
.sidebar-cta-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
}

.sidebar-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(var(--primary-color-rgb), 0.85) 0%, rgba(var(--secondary-color-rgb), 0.9) 100%);
    border-radius: var(--border-radius-lg);
}

.sidebar-cta-box .btn-style-1 {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    text-decoration: none;
}

.sidebar-cta-box .btn-style-1:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.sidebar-cta-box h3 {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: var(--spacing-lg) 0;
    line-height: 1.4;
}

.sidebar-cta-box img {
    position: relative;
    z-index: 1;
    max-width: 150px;
    height: auto;
    margin-top: var(--spacing-md);
}

/* Admission FAQs Responsive */
@media (max-width: 991px) {
    .faqs-content-wrapper {
        padding: var(--spacing-lg);
    }

    .sidebar-cta-box {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .admission-faqs-section {
        padding-bottom: var(--spacing-xl);
    }

    .faqs-content-wrapper {
        padding: var(--spacing-md);
    }

    .faq-item .para1 strong {
        font-size: 1rem;
    }

    .sidebar-cta-box {
        padding: var(--spacing-lg);
    }

    .sidebar-cta-box h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   CREDIT TRANSFER PAGE STYLES
============================================ */

.credit-transfer-section {
    padding: 20px;
    background-color: var(--gray-100);
}

.credit-transfer-section .section-heading {
    margin-bottom: var(--spacing-lg);
}

.credit-transfer-section .section-heading h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.credit-transfer-section .section-heading h6 {
    color: var(--text-muted);
    font-weight: 500;
}

.credit-transfer-section .intro-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Transfer Cards */
.transfer-card {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    min-height: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.transfer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(var(--primary-color-rgb), 0.85) 100%);
    border-radius: var(--border-radius-lg);
}

.transfer-card h5 {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.transfer-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Credit Steps Section */
.credit-steps-section {
    background-color: var(--primary-color);
    padding: var(--spacing-xxl) 0;
}

.credit-steps-section .section-heading h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
}

.step-box {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    min-height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: var(--border-radius-lg);
}

.step-box .step-number {
    position: absolute;
    top: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.step-box p {
    position: relative;
    z-index: 1;
    color: var(--white);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Transferable Credits Section */
.transferable-credits-section {
    background-color: var(--white);
    padding: var(--spacing-xxl) 0;
}

.credits-cta-box {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.credits-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(var(--primary-color-rgb), 0.85) 0%, rgba(var(--secondary-color-rgb), 0.9) 100%);
    border-radius: var(--border-radius-lg);
}

.credits-cta-box h4 {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.credits-cta-box .cta-action {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.credits-cta-box .cta-action img {
    max-height: 50px;
}

.credits-cta-box .btn-style-1 {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
}

.credits-cta-box .btn-style-1:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.transferable-box {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    height: 100%;
}

.transferable-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.credits-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.credits-list li {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.credits-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.credits-list li i {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
    background-color: var(--primary-color);
    border-radius: 50%;
}

.credits-list li h6 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.transferable-box .btn-box {
    text-align: center;
}

/* Why Transfer Section */
.why-transfer-section {
    background-color: var(--gray-100);
}

.why-transfer-section .section-heading h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
}

.why-transfer-section h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.why-transfer-section h4 span {
    color: var(--secondary-color);
}

.why-transfer-section .why-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Credit Transfer Responsive */
@media (max-width: 991px) {
    .credit-transfer-section .section-heading h3 {
        font-size: 1.5rem;
    }

    .transfer-card {
        min-height: 250px;
    }

    .step-box {
        min-height: 180px;
        margin-bottom: var(--spacing-md);
    }

    .credits-cta-box {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .credit-transfer-section {
        padding-bottom: var(--spacing-xl);
    }

    .transfer-card {
        min-height: 220px;
        padding: var(--spacing-lg);
    }

    .transfer-card h5 {
        font-size: 1.1rem;
    }

    .credit-steps-section .row > .col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .credits-list li {
        min-width: calc(50% - var(--spacing-sm));
    }

    .why-transfer-section h4 {
        font-size: 1.25rem;
        margin-top: var(--spacing-lg);
    }

    .why-transfer-section .why-image {
        margin-bottom: var(--spacing-md);
    }
}

/* ============================================
   GETEX PAGE STYLES
   ============================================ */

/* GETEX Section */
.getex-section {
    background: var(--gray-50);
}

.getex-section .section-heading h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.getex-section .section-heading h6 {
    color: var(--gray-600);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

/* GETEX Gallery Section */
.getex-gallery-section {
    background: var(--white);
}

.getex-gallery-section .section-heading h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.gallery-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    background: var(--secondary-color);
    padding: var(--spacing-md) var(--spacing-lg);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.gallery-caption p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* GETEX Responsive */
@media (max-width: 991px) {
    .getex-section .section-heading h3,
    .getex-gallery-section .section-heading h3 {
        font-size: 1.5rem;
    }

    .gallery-box img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .gallery-box img {
        height: 180px;
    }

    .gallery-caption {
        min-height: 70px;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .gallery-caption p {
        font-size: 0.85rem;
    }
}

/* ============================================
   INTERNATIONAL EVENTS PAGE STYLES
   ============================================ */

/* International Events Section */
.intl-events-section {
    background: var(--gray-50);
}

.intl-events-section .section-heading h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.intl-events-section .section-heading h6 {
    color: var(--gray-600);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Engagement Box */
.engagement-box {
    background-size: cover;
    background-position: center;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    position: relative;
}

.engagement-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.7));
    border-radius: var(--radius-lg);
}

.engagement-box > * {
    position: relative;
    z-index: 1;
}

.engagement-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-right: var(--spacing-md);
}

.engagement-box h5 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.engagement-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Webinars Section */
.webinars-section {
    background: var(--white);
}

.webinars-section .section-heading h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.webinar-box {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
}

.webinar-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.webinar-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.webinar-caption {
    padding: var(--spacing-lg);
    min-height: 120px;
}

.webinar-caption h6 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.webinar-caption p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* About International Students Section */
.about-intl-section {
    background: var(--gray-50);
}

.about-intl-section .section-heading h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.about-intl-box {
    background-size: cover;
    background-position: center;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    position: relative;
}

.about-intl-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.7));
    border-radius: var(--radius-lg);
}

.about-intl-box > * {
    position: relative;
    z-index: 1;
}

.about-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-points-list li {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.about-points-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
}

/* International CTA Box */
.intl-cta-box {
    background-size: cover;
    background-position: center;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    position: relative;
}

.intl-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7));
    border-radius: var(--radius-lg);
}

.intl-cta-box > * {
    position: relative;
    z-index: 1;
}

.intl-cta-box h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
}

.intl-cta-box .cta-logo {
    max-width: 150px;
    opacity: 0.9;
}

/* International Events Responsive */
@media (max-width: 991px) {
    .intl-events-section .section-heading h3,
    .webinars-section .section-heading h3,
    .about-intl-section .section-heading h3 {
        font-size: 1.5rem;
    }

    .engagement-box {
        padding: var(--spacing-xl);
    }

    .engagement-icon {
        font-size: 2rem;
    }

    .engagement-box h5 {
        font-size: 1.25rem;
    }

    .webinar-box img {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .engagement-box {
        padding: var(--spacing-lg);
    }

    .engagement-box h5 {
        font-size: 1.1rem;
    }

    .webinar-caption {
        min-height: 100px;
        padding: var(--spacing-md);
    }

    .about-intl-box {
        padding: var(--spacing-lg);
    }

    .intl-cta-box {
        padding: var(--spacing-lg);
    }

    .intl-cta-box .cta-logo {
        margin-top: var(--spacing-lg);
    }
}

/* ============================================
   Student Referral Program Page Styles
   ============================================ */
.srp-section {
    background: var(--gray-50);
}

.srp-text-box {
    padding: var(--spacing-lg);
}

.srp-text-box h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.srp-text-box p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0;
}

.srp-image-box img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Feedback Section */
.srp-feedback-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-3xl) 0;
}

.srp-feedback-section .section-heading h3 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.srp-feedback-section .section-heading p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Participate Sections */
.srp-participate-section,
.srp-benefits-section {
    overflow: hidden;
}

.srp-participate-image,
.srp-benefits-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.srp-participate-content,
.srp-benefits-content {
    padding: var(--spacing-3xl);
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.srp-participate-content h5,
.srp-benefits-content h5 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.srp-participate-content p,
.srp-benefits-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.srp-participate-content p:last-child,
.srp-benefits-content p:last-child {
    margin-bottom: 0;
}

/* How to Participate Section */
.srp-how-section {
    background: var(--white);
}

.srp-how-section .section-heading h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.srp-how-section .para1 {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Enhancing Section */
.srp-enhancing-section {
    background: var(--gray-50);
}

.srp-enhancing-box {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    color: var(--white);
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.srp-enhancing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.7));
    border-radius: var(--radius-lg);
}

.srp-enhancing-box h5,
.srp-enhancing-box p,
.srp-enhancing-box a {
    position: relative;
    z-index: 1;
}

.srp-enhancing-box h5 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.srp-enhancing-box .para1 {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* CTA Box */
.srp-cta-box {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    padding: var(--spacing-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.srp-cta-inner {
    text-align: center;
}

.srp-cta-inner h6 {
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.srp-cta-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.srp-cta-logo img {
    max-width: 150px;
    height: auto;
}

/* Program Cards Section */
.srp-programs-section {
    background: var(--white);
}

.srp-program-card {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    color: var(--white);
    min-height: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.srp-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.75));
    border-radius: var(--radius-lg);
}

.srp-program-card h5,
.srp-program-card p {
    position: relative;
    z-index: 1;
}

.srp-program-card h5 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.srp-program-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Student Referral Program Responsive Styles */
@media (max-width: 991px) {
    .srp-section .section-heading h3 {
        font-size: 1.5rem;
    }

    .srp-text-box h4 {
        font-size: 1.3rem;
    }

    .srp-participate-content,
    .srp-benefits-content {
        padding: var(--spacing-xl);
        min-height: auto;
    }

    .srp-participate-image,
    .srp-benefits-image {
        min-height: 300px;
    }

    .srp-enhancing-box,
    .srp-cta-box {
        min-height: 300px;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .srp-text-box {
        padding: var(--spacing-md);
    }

    .srp-feedback-section {
        padding: var(--spacing-xl) 0;
    }

    .srp-participate-content,
    .srp-benefits-content {
        padding: var(--spacing-lg);
    }

    .srp-participate-content h5,
    .srp-benefits-content h5 {
        font-size: 1.4rem;
    }

    .srp-enhancing-box {
        padding: var(--spacing-lg);
        min-height: 280px;
    }

    .srp-cta-box {
        padding: var(--spacing-lg);
        min-height: 250px;
    }

    .srp-cta-inner h6 {
        font-size: 1.1rem;
    }

    .srp-program-card {
        padding: var(--spacing-lg);
        min-height: 250px;
    }

    .srp-program-card h5 {
        font-size: 1.1rem;
    }
}

/* ============================================
   CNN iReport Page Styles
   ============================================ */
.cnn-section {
    background: var(--gray-50);
}

/* Rankings Table */
.cnn-rankings-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.cnn-table {
    margin-bottom: 0;
}

.cnn-table thead {
    background: var(--primary-color);
}

.cnn-table thead th {
    color: var(--white);
    font-weight: 600;
    padding: var(--spacing-md);
    border: none;
    font-size: 0.9rem;
}

.cnn-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
}

.cnn-table tbody tr:last-child {
    border-bottom: none;
}

.cnn-table tbody td {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.85rem;
    color: var(--gray-700);
    vertical-align: middle;
}

.cnn-table tbody tr.highlighted {
    background: rgba(0, 102, 204, 0.1);
}

.cnn-table tbody tr.highlighted td {
    color: var(--primary-color);
    font-weight: 600;
}

/* Info Boxes */
.cnn-info-box {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
}

.cnn-info-header {
    background: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-md);
}

.cnn-info-header h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.cnn-info-body {
    padding: var(--spacing-md);
}

.cnn-info-image {
    margin-bottom: var(--spacing-md);
}

.cnn-info-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.cnn-info-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.schedule-time {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--spacing-xs) !important;
}

.cnn-social-link {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.cnn-social-link:hover {
    color: var(--primary-color);
}

/* Articles Section */
.cnn-articles-section {
    background: var(--white);
}

.cnn-article-box {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cnn-article-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cnn-article-header {
    background: var(--primary-color);
    padding: var(--spacing-md);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.cnn-article-header h5 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 600;
}

.cnn-article-body {
    padding: var(--spacing-md);
}

.cnn-article-image {
    margin-bottom: var(--spacing-md);
}

.cnn-article-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cnn-article-body p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.cnn-read-more {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.cnn-read-more:hover {
    color: var(--primary-color);
}

/* CNN iReport Responsive Styles */
@media (max-width: 991px) {
    .cnn-rankings-table {
        margin-bottom: var(--spacing-xl);
    }

    .cnn-table thead th,
    .cnn-table tbody td {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .cnn-article-header {
        min-height: 70px;
    }

    .cnn-article-header h5 {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .cnn-info-box {
        margin-bottom: var(--spacing-md);
    }

    .cnn-article-image img {
        height: 120px;
    }

    .cnn-article-body p {
        font-size: 0.8rem;
    }
}

/* ===================================================================
   YAHOO NEWS PAGE STYLES
   =================================================================== */

.yahoo-wrapper {
    background-color: #f5f5f5;
}

/* Yahoo Top Bar */
.yahoo-topbar {
    background-color: #6001d2;
    padding: var(--spacing-sm) 0;
}

.yahoo-topbar p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Yahoo Logo Section */
.yahoo-logo-section {
    background-color: var(--white);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid #e0e0e0;
}

.yahoo-logo-img {
    max-height: 50px;
    width: auto;
}

/* Yahoo Featured Section */
.yahoo-featured-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.yahoo-featured-image {
    height: 100%;
    overflow: hidden;
}

.yahoo-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.yahoo-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-xl);
    background-color: #f9f9f9;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.yahoo-featured-content:hover {
    background-color: #f0f0f0;
}

.yahoo-featured-content h4 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.yahoo-featured-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Yahoo Mid Section */
.yahoo-mid-section {
    background-color: var(--white);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid #e0e0e0;
}

.yahoo-mid-post {
    display: block;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.yahoo-mid-post:hover {
    transform: translateY(-3px);
}

.yahoo-mid-image {
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-sm);
}

.yahoo-mid-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.yahoo-mid-post:hover .yahoo-mid-image img {
    transform: scale(1.05);
}

.yahoo-mid-content h5 {
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Yahoo Blog Section */
.yahoo-blog-section {
    background-color: #f5f5f5;
    padding: var(--spacing-xxl) 0;
}

.yahoo-section-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid #6001d2;
    display: inline-block;
}

.yahoo-blog-post {
    display: block;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-fast);
    height: 100%;
}

.yahoo-blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.yahoo-blog-image {
    overflow: hidden;
}

.yahoo-blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.yahoo-blog-post:hover .yahoo-blog-image img {
    transform: scale(1.05);
}

.yahoo-blog-content {
    padding: var(--spacing-md);
}

.yahoo-blog-categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.yahoo-blog-categories .category-left {
    font-size: 0.75rem;
    color: #6001d2;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

.yahoo-blog-categories .category-right {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.yahoo-blog-content h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yahoo-blog-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yahoo-read-time {
    font-size: 0.8rem;
    color: #999;
}

/* Yahoo News Responsive Styles */
@media (max-width: 991px) {
    .yahoo-featured-content {
        padding: var(--spacing-lg);
    }

    .yahoo-featured-content h4 {
        font-size: 1.25rem;
    }

    .yahoo-mid-image img {
        height: 100px;
    }

    .yahoo-mid-content h5 {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .yahoo-featured-image img {
        min-height: 200px;
    }

    .yahoo-featured-content {
        padding: var(--spacing-md);
    }

    .yahoo-featured-content h4 {
        font-size: 1.1rem;
    }

    .yahoo-featured-content p {
        font-size: 0.9rem;
    }

    .yahoo-blog-image img {
        height: 160px;
    }

    .yahoo-section-title {
        font-size: 1.25rem;
    }
}

/* ===================================================================
   CORONAVIRUS PAGE STYLES
   =================================================================== */

/* Coronavirus Main Section */
.coronavirus-section {
    background-color: var(--light-color);
}

.coronavirus-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
}

.coronavirus-content {
    padding-left: var(--spacing-lg);
}

.coronavirus-content p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.coronavirus-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coronavirus-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 0.95rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.coronavirus-tips-list li:last-child {
    border-bottom: none;
}

.coronavirus-tips-list li i {
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

/* COVID Financial Aid Section */
.covid-financial-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.covid-financial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9), rgba(var(--secondary-rgb), 0.85));
}

.covid-financial-content {
    position: relative;
    z-index: 1;
}

.covid-financial-content h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.covid-financial-content p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Shape Future Section */
.shape-future-section {
    background-color: var(--light-color);
}

.shape-future-box {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    height: 100%;
}

.shape-future-logo {
    max-width: 180px;
    margin-bottom: var(--spacing-lg);
}

.shape-future-box h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    line-height: 1.4;
}

/* Explore Programs Content */
.explore-programs-content {
    padding-left: var(--spacing-lg);
}

.explore-programs-content h4 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.explore-programs-content > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.financial-programs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.financial-programs-list li {
    width: calc(33.333% - var(--spacing-sm));
    padding: var(--spacing-sm) 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.financial-programs-list li i {
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
}

/* Corona Education Box */
.corona-education-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.corona-education-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.95), rgba(var(--primary-rgb), 0.7));
}

.corona-education-box .row {
    position: relative;
    z-index: 1;
}

.corona-edu-logo img {
    max-width: 150px;
}

.corona-edu-content h6 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.corona-edu-content h6 span {
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
}

/* Coronavirus Responsive Styles */
@media (max-width: 991px) {
    .coronavirus-content {
        padding-left: 0;
        margin-top: var(--spacing-lg);
    }

    .explore-programs-content {
        padding-left: 0;
        margin-top: var(--spacing-lg);
    }

    .financial-programs-list li {
        width: calc(50% - var(--spacing-sm));
    }

    .covid-financial-content h3 {
        font-size: 1.75rem;
    }

    .shape-future-box {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .financial-programs-list li {
        width: 100%;
    }

    .covid-financial-content h3 {
        font-size: 1.5rem;
    }

    .covid-financial-content p {
        font-size: 1rem;
    }

    .corona-education-box {
        padding: var(--spacing-lg);
    }

    .corona-edu-content h6 {
        font-size: 1rem;
        margin-top: var(--spacing-md);
    }
}

/* ===================================================================
   SOCIAL SERVICES PAGE STYLES
   =================================================================== */

/* School About Section */
.school-about-section {
    background-color: var(--white);
}

.school-about-section .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.school-content-box {
    padding: var(--spacing-lg);
}

.school-content-box h4 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.school-content-box p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.school-image-box {
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.school-image-box img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
}

/* Campaign Section */
.campaign-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .campaign-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 39, 68, 0.95) 100%);
    }

.campaign-section .container {
    position: relative;
    z-index: 1;
}

.campaign-title-box h3 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.campaign-title-box h6 {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.campaign-logo {
    max-width: 150px;
}

.campaign-content p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
}

/* School Feature Section */
.school-feature-section {
    background-color: var(--white);
}

.school-feature-section.bg-light {
    background-color: var(--light-color);
}

.school-content-box.ml-lg-5 {
    margin-left: var(--spacing-xl);
}

.school-content-box.mr-lg-5 {
    margin-right: var(--spacing-xl);
}

/* Mission Section */
.mission-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.95) 0%, rgba(var(--primary-rgb), 0.7) 60%, transparent 100%);
}

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-content h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.mission-content > p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.mission-subtitle {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.mission-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-values-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    font-size: 1rem;
    color: var(--white);
}

.mission-values-list li i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

/* Social Services Responsive Styles */
@media (max-width: 991px) {
    .school-content-box {
        padding: var(--spacing-md);
    }

    .school-content-box.ml-lg-5,
    .school-content-box.mr-lg-5 {
        margin-left: 0;
        margin-right: 0;
        margin-top: var(--spacing-lg);
    }

    .campaign-title-box h3 {
        font-size: 2rem;
    }

    .mission-content h3 {
        font-size: 1.75rem;
    }

    .school-image-box {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .campaign-title-box h3 {
        font-size: 1.75rem;
    }

    .campaign-title-box h6 {
        font-size: 0.9rem;
    }

    .campaign-content p {
        font-size: 1rem;
        margin-top: var(--spacing-lg);
    }

    .mission-content h3 {
        font-size: 1.5rem;
    }

    .school-feature-section .order-lg-1 {
        margin-top: var(--spacing-lg);
    }
}

/* ============================================
   School Pages - Stripe Sections
   ============================================ */
.stripe {
    padding: var(--spacing-xl) 0;
}

.stripe .top-title {
    margin-bottom: var(--spacing-xl);
}

.stripe .top-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.stripe .top-title p {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.school-box {
    padding: var(--spacing-lg);
}

.school-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.school-box p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.school-box.sty1 {
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
}

.school-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.school-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    border-radius: var(--border-radius-lg);
}

.ml-100 {
    margin-left: 50px;
}

.mr-100 {
    margin-right: 50px;
}

.mtb-50 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Campaign Section
   ============================================ */
.our-campaign {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.our-campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(49, 151, 149, 0.85));
}

.our-campaign .container {
    position: relative;
    z-index: 2;
}

.campaign-title h3,
.campaign-title h6 {
    margin-bottom: var(--spacing-md);
}

.campaign-title img {
    max-width: 200px;
    margin-top: var(--spacing-md);
}

.campaign-area h6 {
    line-height: 1.8;
    font-weight: 400;
}

.spacing {
    /*padding: var(--spacing-xxl) 0;*/
}

.bg__detail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.white {
    color: var(--white) !important;
}

/* ============================================
   Full Width Section with Background Image
   ============================================ */
.full-width-sec {
    position: relative;
    overflow: hidden;
}

.full-width-sec .bg-sec {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 0;
}

.full-width-sec .bg-sec .width-50 {
    width: 50%;
    height: 100%;
}

.full-width-sec .bg-sec .width-50:first-child {
    background: var(--gray-100);
}

.full-width-sec .bg-sec .width-50 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-width-sec .container {
    position: relative;
    z-index: 2;
}

.full-width-sec .full-content {
    padding: var(--spacing-xl) 0;
}

.full-width-sec .full-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.full-width-sec .full-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.full-width-sec .full-content h5.heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
}

.full-width-sec .hexagonal-shape {
    position: absolute;
    z-index: 1;
}

.full-width-sec .hexagonal-shape.left {
    left: 48%;
    top: 50%;
    transform: translateY(-50%);
}

.full-width-sec .hexagonal-shape i {
    display: block;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Diamond List Style */
.daimond-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daimond-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

.daimond-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    transform: rotate(45deg);
}

/* Responsive adjustments for school pages */
@media (max-width: 992px) {
    .ml-100,
    .mr-100 {
        margin-left: 0;
        margin-right: 0;
    }

    .school-box.sty1 {
        margin-top: var(--spacing-lg);
    }

    .full-width-sec .bg-sec {
        display: none;
    }

    .full-width-sec {
        background: var(--gray-100);
    }
}

@media (max-width: 768px) {
    .stripe {
        padding: var(--spacing-lg) 0;
    }

    .stripe .top-title h3 {
        font-size: 1.5rem;
    }

    .school-img img {
        min-height: 250px;
    }

    .our-campaign {
        background-attachment: scroll;
    }

    .spacing {
        padding: var(--spacing-xl) 0;
    }
}

/* ============================================
   School Academics Page Styles
   ============================================ */

/* Stripe Variants */
.stripe-2 {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.stripe-7 {
    position: relative;
    padding: var(--spacing-sm) 0;
}

.stripe-7.ofh {
    overflow: hidden;
}

.stripe-7 .shape {
    position: absolute;
    right: 0;
    top: 0;
}

.stripe-7 .shape.right-border img {
    width: 100px;
    height: auto;
}

.pb-0 {
    padding-bottom: 0 !important;
}

/* Tabs Section */
.tabs-sec {
    padding: var(--spacing-xl) 0;
}

.heading-center {
    text-align: center;
}

.heading-center h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
}

.heading-center h4 span {
    color: var(--primary-color);
}

.tabs-wrap {
    margin-top: var(--spacing-lg);
}

/* Tabbing List */
.tabbing-list-gen {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.tabbing-list-gen.sty1 li {
    border-bottom: 1px solid var(--gray-200);
}

.tabbing-list-gen.sty1 li:last-child {
    border-bottom: none;
}

.tabbing-list-gen.sty1 li a {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tabbing-list-gen.sty1 li:hover a,
.tabbing-list-gen.sty1 li.is--active a {
    background: var(--primary-color);
    color: var(--white);
}

/* Tabbing Content */
.tabbing-content {
    display: none;
}

.tabbing-content.is--active {
    display: block;
}

/* Feature Box */
.feature-box {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-box.sty1 .feature-top h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    margin: 0;
}

.feature-box.sty1:hover .feature-top h4 {
    color: var(--primary-color);
}

/* Aid Programs Section */
.aid-programs {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--gray-50);
}

.aid-programs .program-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.aid-programs .program-list ul li {
    position: relative;
    margin-bottom: -20px;
    z-index: 1;
}

.aid-programs .program-list ul li:nth-child(1) {
    z-index: 3;
}

.aid-programs .program-list ul li:nth-child(2) {
    z-index: 2;
    margin-left: 60px;
}

.aid-programs .program-list ul li:nth-child(3) {
    z-index: 1;
}

.aid-programs .program-list ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 120px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    padding: var(--spacing-md);
    line-height: 1.4;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.aid-programs .program-list ul li.active a,
.aid-programs .program-list ul li.m-right a {
    background: var(--secondary-color);
}

.aid-programs .program-list ul li:hover a {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.aid-programs .program-detail {
    padding-left: var(--spacing-lg);
}

.aid-programs .shape-12 {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 150px;
    height: 150px;
    background: url('/assets/img/icons/university-seal.png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
}

/* Heading Styles */
.headingstyle1 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.headingstyle1 h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-md);
}

.headingstyle1 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.headingstyle2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
}

.para1 {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Tab It Functionality */
.tabit-1,
.tabit-2,
.tabit-3 {
    display: none;
}

.tabit-1.showfirst,
.tabit-2.showfirst,
.tabit-3.showfirst {
    display: block;
}

/* Research By Numbers Image */
.spacing img {
    max-width: 100%;
    height: auto;
}

/* Responsive for Academics Page */
@media (max-width: 992px) {
    .tabbing-list-gen.sty1 {
        margin-bottom: var(--spacing-lg);
    }

    .aid-programs .program-list ul li:nth-child(2) {
        margin-left: 30px;
    }

    .aid-programs .program-list ul li a {
        width: 140px;
        height: 100px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .aid-programs .program-list {
        margin-bottom: var(--spacing-xl);
    }

    .aid-programs .program-list ul {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .aid-programs .program-list ul li {
        margin-bottom: 0;
        margin-left: 0 !important;
    }

    .aid-programs .program-list ul li a {
        width: 120px;
        height: 90px;
        font-size: 0.8rem;
    }

    .aid-programs .program-detail {
        padding-left: 0;
    }

    .heading-center h4 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Detailed Degree Program Page Styles
   ============================================ */

/* Top Heading Styles */
.top-heading {
    margin-bottom: var(--spacing-lg);
}

.top-heading h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
}

.top-heading h3 span.fw-3 {
    font-weight: 300;
}

.top-heading p {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Section Text Styles */
.section-text.sty1 {
    margin-bottom: var(--spacing-lg);
}

/* Wrap Box - Eligibility Criteria Grid */
.wrap-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.wrap-box:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wrap-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
}

.wrap-box p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
}

/* Programs Wrap */
.programs-wrap {
    margin-top: var(--spacing-xl);
}

/* Tabs Wrap Style 2 */
.tabs-wrap.sty2 {
    margin-bottom: var(--spacing-lg);
}

/* Button List for Module Tabs */
.btn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-list li {
    cursor: pointer;
}

.btn-list li .tab-btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gray-100);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-list li:hover .tab-btn,
.btn-list li.is--active .tab-btn {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Tabs Content */
.tabs-content {
    display: none;
}

.tabs-content.is--active {
    display: block;
}

/* Accordion Styles */
.accor-row {
    margin-bottom: var(--spacing-sm);
}

.accor-head {
    cursor: pointer;
}

.accor-head a {
    text-decoration: none;
}

.accor-head h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: color 0.3s ease;
}

.accor-head:hover h4,
.accor-head.is--active h4 {
    color: var(--primary-color);
}

.accor-content {
    padding: var(--spacing-md) 0;
}

.accor-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Table Style 1 */
.table-1 {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-lg);
}

.table-1 thead th {
    background: var(--gray-100);
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 2px solid var(--gray-200);
}

.table-1 tbody td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.table-1 tbody tr:hover {
    background: var(--gray-50);
}

/* Wrap Text */
.wrap-text {
    padding: var(--spacing-lg) 0;
}

.wrap-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.wrap-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
}

.wrap-text p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Section Image */
.section-img {
    text-align: right;
}

.section-img img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

/* What We Do Section */
.what-we-do {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92), rgba(49, 151, 149, 0.88));
}

.what-we-do .container {
    position: relative;
    z-index: 2;
}

.what-we-do .wrap-text h6 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.what-we-do .wrap-text h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.what-we-do .wrap-text p.para1 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.what-we-do .feature-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}

.what-we-do .feature-box p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* Utility Classes */
.fw-3 {
    font-weight: 300 !important;
}

.cl-iPrimary {
    color: var(--primary-color) !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

/* Button Styles */
.btn-style {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-style-1 {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-style-1:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-style-2 {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-style-2:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Shape Right Border */
.tabs-sec .shape.right-border {
    position: absolute;
    right: 0;
    top: 50px;
}

.tabs-sec .shape.right-border img {
    width: 80px;
    height: auto;
}

/* Responsive for Degree Program Page */
@media (max-width: 992px) {
    .wrap-box {
        margin-bottom: var(--spacing-md);
    }

    .btn-list {
        justify-content: center;
    }

    .section-img {
        text-align: center;
        margin-top: var(--spacing-lg);
    }

    .what-we-do .feature-box {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .top-heading h3 {
        font-size: 1.5rem;
    }

    .btn-list li .tab-btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }

    .what-we-do .wrap-text h3 {
        font-size: 1.5rem;
    }

    .table-1 thead th,
    .table-1 tbody td {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

/* ============================================
   Research By Numbers Section
   ============================================ */
.research-numbers-section {
    background: var(--white);
}

.research-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    padding: var(--spacing-xl) 0;
}

.stat-circle {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.stat-circle.stat-left::before,
.stat-circle.stat-right::before {
    border-style: dotted;
}

.stat-circle.stat-center::before {
    border-style: solid;
}

.stat-circle.stat-left {
    margin-right: -40px;
    z-index: 1;
}

.stat-circle.stat-center {
    z-index: 2;
}

.stat-circle.stat-right {
    margin-left: -40px;
    z-index: 1;
}

.stat-content {
    position: relative;
    z-index: 3;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: var(--spacing-sm);
    line-height: 1.4;
}

.stat-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.stat-arrow i {
    color: var(--white);
    font-size: 1rem;
}

.stat-circle.stat-right .stat-arrow {
    display: none;
}

/* Responsive for Research Stats */
@media (max-width: 992px) {
    .stat-circle {
        width: 220px;
        height: 220px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-circle.stat-left,
    .stat-circle.stat-right {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .research-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .stat-circle {
        width: 200px;
        height: 200px;
        margin: 0 !important;
    }

    .stat-arrow {
        display: none !important;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* ============================================
   INSPIRING ACHIEVEMENT PAGE STYLES
   ============================================ */

/* Inspiring Achievement Color Variables */
.bg__2,
.top__from,
.goals-counter,
.staff-section,
.what-we-offered,
.financial-support,
.financial-aid.bg__1.bg__detail {
    --ia-primary: #8B2332;
    --ia-primary-dark: #6d1a27;
    --ia-primary-light: #a52a3a;
}

/* Top Form Section */
.top__from {
    padding: 30px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5ebe0;
}

.top__from .heading h4 {
    color: var(--ia-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.top__from .heading .para1 {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Note: .custom-form-control and .custom-form-submit base styles are in Top Form Section */
/* Inspiring Achievement page color overrides */
.top__from .custom-form-control:focus {
    border-color: var(--ia-primary);
}

.top__from .custom-form-submit {
    background: var(--ia-primary);
}

.top__from .custom-form-submit:hover {
    background: var(--ia-primary-dark);
}

/* Background Sections */
.bg__1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.bg__2 {
    position: relative;
}

/* Breadcrumb Section */
.financial-aid.bg__1.bg__detail {
    background-color: #f8f5f0;
    padding-bottom: 60px;
}

.financial-aid.bg__1.bg__detail .breadcrumb {
    padding: 15px 0;
    background: linear-gradient(135deg, var(--ia-primary) 0%, var(--ia-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.financial-aid.bg__1.bg__detail .breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.financial-aid.bg__1.bg__detail .breadcrumb ul li {
    display: flex;
    align-items: center;
}

.financial-aid.bg__1.bg__detail .breadcrumb ul li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.financial-aid.bg__1.bg__detail .breadcrumb ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.financial-aid.bg__1.bg__detail .breadcrumb ul li a:hover {
    opacity: 0.8;
}

.financial-aid.bg__1.bg__detail .breadcrumb ul li:last-child a {
    opacity: 0.8;
}

.financial-aid.bg__1.bg__detail .breadcrumb .shapes-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
}

.financial-aid.bg__1.bg__detail .breadcrumb .shapes-img img {
    max-height: 80px;
    width: auto;
}

.financial-aid.bg__1.bg__detail > .container {
    padding-top: 50px;
}

.financial-aid.bg__1.bg__detail .headingstyle1 h6 {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 15px;
}

/* What We Offered / Life-Defining Experiences */
.what-we-offered {
    padding: 80px 0;
    background-size: cover;
    background-position: center left;
    position: relative;
}

.what-we-offered.bg-4 {
    background-image: url('/images/backgrounds/life-defining-bg.jpg');
}

.what-we-offered.bg-5 {
    background-image: url('/images/backgrounds/faculty-support-bg.jpg');
}

.what-we-offered.wwo-style-2 .offered-box {
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--ia-primary);
}

.offered-box h5 {
    color: var(--ia-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offered-box p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* Scholarships & Financial Support Sections */
.financial-support {
    padding: 60px 0;
    background-image: url('/images/backgrounds/campaign-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.financial-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 244, 240, 0.92) 0%, rgba(245, 235, 224, 0.92) 100%);
    z-index: 1;
}

.financial-support > * {
    position: relative;
    z-index: 2;
}

.financial-support.scholarships1 {
    background: var(--white);
}

.financial-support.scholarships1 .headingstyle2 h3 {
    color: var(--ia-primary);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.financial-support .btn-style-2 {
    background: var(--ia-primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.financial-support .btn-style-2:hover {
    background: var(--ia-primary-dark);
}

.financial-support.financial-support1 {
    background: var(--white);
}

.financial-support.financial-support1 .headingstyle2 h3 {
    color: var(--ia-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
}

/* Goals Counter Section */
.goals-counter {
    padding: 60px 0;
}

.goals-counter .program-type {
    padding: 50px 40px;
    border-radius: 0;
    background-size: cover;
    background-position: center;
}

.goals-counter .program-type.style-2 {
    background-color: var(--ia-primary);
    position: relative;
}

.goals-counter .program-type.style-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 35, 50, 0.85) 0%, rgba(109, 26, 39, 0.9) 100%);
    z-index: 1;
}

.goals-counter .program-type ul {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.goals-counter .program-type ul li {
    flex: 1 1 calc(16.666% - 10px);
    min-width: 140px;
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.goals-counter .program-type ul li:last-child {
    border-right: none;
}

.goals-counter .program-type ul li h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.goals-counter .program-type ul li p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* Staff Section */
.staff-section {
    padding: 40px 0 60px;
    background: var(--white);
}

.staff-section .headingstyle1 h3 {
    color: var(--gray-900);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-section .img-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--ia-primary);
}

.staff-section .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-section h6 {
    color: var(--ia-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.staff-section .para1 {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.staff-section a {
    color: var(--ia-primary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.staff-section a:hover {
    color: var(--ia-primary-dark);
    text-decoration: underline;
}

/* Shape Decorations */
.shape-2 img {
    max-width: 100%;
    height: auto;
}

/* Spacing Classes - Note: .spacing-05 is defined in main spacing section */
.spacing-20 {
    padding: 40px 0;
}

/* Chart/Image Box */
.img-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Faculty Support Specific */
.faculty-spport {
    margin-top: 40px;
}

/* Experience at SDUC Section */
.experience-sduc-section .headingstyle2 h3 {
    color: var(--ia-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
}

/* Responsive Styles for Inspiring Achievement */
@media (max-width: 991px) {
    .what-we-offered {
        padding: 60px 0;
    }

    .what-we-offered.wwo-style-2 .offered-box {
        padding: 30px;
    }

    .goals-counter .program-type ul li {
        flex: 1 1 calc(33.333% - 20px);
    }

    .goals-counter .program-type ul li h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .top__from .heading {
        margin-bottom: 20px;
        text-align: center;
    }

    .what-we-offered.wwo-style-2 .offered-box {
        padding: 25px;
    }

    .offered-box h5 {
        font-size: 1.25rem;
    }

    .goals-counter .program-type {
        padding: 30px 20px;
    }

    .goals-counter .program-type ul li {
        flex: 1 1 calc(50% - 20px);
    }

    .goals-counter .program-type ul li h3 {
        font-size: 1.75rem;
    }

    .staff-section .img-box {
        width: 120px;
        height: 120px;
    }
}

/* Campaign Diagram (Experience at SDUC) */
.experience-sduc-section {
    background: var(--white);
    --ia-primary: #8B2332;
    --ia-primary-dark: #6d1a27;
}

.campaign-diagram {
    padding: 40px;
}

.diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    margin: 0 auto;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-circle {
    width: 160px;
    height: 160px;
    background: var(--ia-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(139, 35, 50, 0.3);
}

.goal-amount {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.goal-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagram-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: var(--white);
    border: 2px solid var(--ia-primary);
    border-radius: 8px;
    min-width: 130px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.diagram-item.diagram-top-left {
    top: 20px;
    left: 20px;
}

.diagram-item.diagram-top-right {
    top: 20px;
    right: 20px;
}

.diagram-item.diagram-bottom-left {
    bottom: 20px;
    left: 20px;
}

.diagram-item.diagram-bottom-right {
    bottom: 20px;
    right: 20px;
}

.diagram-label {
    color: var(--gray-800);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.diagram-icon {
    width: 40px;
    height: 40px;
    background: var(--ia-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

/* Connecting lines using pseudo-elements */
.diagram-wrapper::before,
.diagram-wrapper::after {
    content: '';
    position: absolute;
    background: var(--ia-primary);
    opacity: 0.3;
}

.diagram-wrapper::before {
    width: 2px;
    height: 60%;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.diagram-wrapper::after {
    width: 60%;
    height: 2px;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .diagram-wrapper {
        height: 350px;
        max-width: 350px;
    }

    .center-circle {
        width: 120px;
        height: 120px;
    }

    .goal-amount {
        font-size: 1.25rem;
    }

    .goal-label {
        font-size: 0.8rem;
    }

    .diagram-item {
        min-width: 100px;
        padding: 10px;
    }

    .diagram-label {
        font-size: 0.7rem;
    }

    .diagram-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* ========================================
   Bachelor's Degree Page Styles
   ======================================== */

/* Program Type Style 2 */
.program-type.style-2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    position: relative;
    min-height: 280px;
}

.program-type.style-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(139, 0, 0, 0.7) 100%);
    border-radius: var(--radius-md);
}

.program-type.style-2.active::before {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.75) 100%);
}

.program-type.style-2 h5,
.program-type.style-2 p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.program-type.style-2 h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.program-type.style-2 p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* List Box Style 1 - Stats Box */
.list-box-style-1 {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.list-box-style-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-box-style-1 ul li {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.list-box-style-1 ul li.bb {
    border-bottom: 1px solid var(--gray-200);
}

.list-box-style-1 ul li i {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-box-style-1 ul li i::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--white);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.list-box-style-1 ul li i.ic2::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 3L1 9l11 6 9-4.91V17h2V9M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82z'/%3E%3C/svg%3E");
}

.list-box-style-1 ul li i.ic3::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
}

.list-box-style-1 ul li i.ic4::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.list-box-style-1 ul li h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.list-box-style-1 ul li span {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Content Box - Support System Cards */
.content-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.content-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.content-box.active {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.05) 0%, transparent 100%);
}

.content-box h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.content-box p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Plan Request Section */
.plan-request {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.plan-request::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.plan-request .container {
    position: relative;
    z-index: 1;
}

.plan-request .headingstyle1 h3 {
    color: var(--primary-color);
}

.your-preference {
    margin-top: var(--spacing-lg);
}

.your-preference .form-group p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.your-preference select {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.your-preference select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

/* Apply Now CTA Section */
.applynow-section1 {
    padding: var(--spacing-xl) 0;
}

.applynow-bg {
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: var(--secondary-color);
    padding: var(--spacing-xxl) var(--spacing-xxl);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    min-height: 180px;
}

.applynow-content {
    flex: 1;
    min-width: 300px;
}

.applynow-bg h4 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.applynow-bg p {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.applynow-bg p.black {
    color: var(--gray-800);
}

.applynow-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-shrink: 0;
}

    .applynow-action img {
        width: 220px;
    }

.applynow-logo {
    max-width: 180px;
    height: auto;
}

.applynow-bg .img-box {
    text-align: right;
}

.applynow-bg .img-box img {
    max-width: 200px;
    height: auto;
}

/* Headingstyle2 */
.headingstyle2 {
    margin-bottom: var(--spacing-md);
}

.headingstyle2 h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.headingstyle2 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

/* Intro Image */
.intro-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shape 2 Decorator */
.shape-2 {
    display: inline-block;
}

.shape-2 img {
    max-width: 100%;
    height: auto;
}

/* Responsive Styles for Bachelor's Degree Page */
@media (max-width: 991px) {
    .program-type.style-2 {
        min-height: 220px;
    }

    .applynow-bg {
        text-align: center;
        justify-content: center;
    }

    .applynow-bg .img-box {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .list-box-style-1 ul li {
        flex-direction: row;
        text-align: left;
        gap: var(--spacing-md);
    }

    .list-box-style-1 ul li i {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .content-box {
        margin-bottom: var(--spacing-md);
    }

    .applynow-bg h4 {
        font-size: 1.5rem;
    }

    .applynow-bg .img-box img {
        max-width: 150px;
    }
    
    /* Request Info Section */
.request-info-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.request-info-card {
    text-align: center;
}

.request-info-section .section-header h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.request-info-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.request-info-section .form-group {
    margin-top: var(--spacing-xl);
}

.request-info-section label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.request-info-section .form-select {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.request-info-section .form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.request-info-section .form-select option {
    background: var(--primary-color);
    color: var(--white);
}
}

/* ========================================
   Online Study Page Styles
   ======================================== */

.welcome_bsu .headingstyle1 h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.welcome_bsu .headingstyle1 h6 {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.welcome_bsu .headingstyle2 h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.welcome_bsu .text__area {
    margin-bottom: var(--spacing-lg);
}

.welcome_bsu .text__area .para1 {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Program Type Box - Online Study Page */
.welcome_bsu .program-type {
    position: relative;
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.welcome_bsu .program-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(26, 54, 93, 0.85) 100%);
    border-radius: var(--radius-md);
    z-index: 1;
}

.welcome_bsu .program-type.active::before {
    background: linear-gradient(135deg, rgba(139, 35, 50, 0.92) 0%, rgba(109, 26, 39, 0.88) 100%);
}

.welcome_bsu .program-type > div {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md) 0;
}

.welcome_bsu .program-type > div:first-child {
    padding-top: 0;
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome_bsu .program-type > div:last-child {
    padding-bottom: 0;
}

.welcome_bsu .program-type h5 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.welcome_bsu .program-type h5 i {
    color: var(--secondary-color);
}

.welcome_bsu .program-type p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Discover Power Box - Online Study Page */
.welcome_bsu .discover-power {
    position: relative;
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .welcome_bsu .discover-power::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(15, 39, 68, 0.9) 100%);
        border-radius: var(--radius-md);
        z-index: 1;
    }

.welcome_bsu .discover-power > * {
    position: relative;
    z-index: 2;
}

.welcome_bsu .discover-power i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    display: block;
}

.welcome_bsu .discover-power h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.welcome_bsu .discover-power p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.welcome_bsu .discover-power .btn-style {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.welcome_bsu .discover-power .btn-style:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* About International Students Box */
.welcome_bsu .program-type .change-head h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.welcome_bsu .program-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.welcome_bsu .program-type ul li {
    color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.welcome_bsu .program-type ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* BSU Stand Section */
.bsu_stand {
    position: relative;
}

    .bsu_stand .content-box {
        background: var(--white);
        padding: var(--spacing-xl);
        border-radius: var(--radius-md);
        height: 100%;
        transition: all var(--transition-normal);
        border: 2px solid transparent;
        box-shadow: 19px 60px 74px rgba(0, 0, 0, 0.15);
    }

.bsu_stand .content-box:hover,
.bsu_stand .content-box.active {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bsu_stand .content-box h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.bsu_stand .content-box .para2 {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.bsu_stand .content-box .sprite-img {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

/* Corona Education CTA */
.bsu_stand .corona-education {
    margin-top: var(--spacing-xl);
}

.bsu_stand .corona-education .bg__detail {
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
}

.bsu_stand .corona-education h6 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Responsive Styles for Online Study Page */
@media (max-width: 991px) {
    .welcome_bsu .headingstyle1 h3 {
        font-size: 1.75rem;
    }

    .welcome_bsu .program-type {
        margin-bottom: var(--spacing-lg);
    }

    .welcome_bsu .discover-power {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .welcome_bsu .headingstyle1 h3 {
        font-size: 1.5rem;
    }

    .welcome_bsu .headingstyle2 h3 {
        font-size: 1.5rem;
    }

    .welcome_bsu .program-type {
        padding: var(--spacing-lg);
    }

    .welcome_bsu .discover-power {
        padding: var(--spacing-lg);
        min-height: auto;
    }

    .bsu_stand .content-box {
        padding: var(--spacing-lg);
    }
}

/* ========================================
   Inspiring Achievement Page Styles
   ======================================== */

/* Intro Section */
.inspiring-intro {
    background-color: #f8f5f0;
}

/* Campaign Goal Box */
.campaign-goal-box {
    background: var(--white);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.campaign-goal-box .goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.campaign-goal-box .goal-icon i {
    font-size: 2rem;
    color: var(--white);
}

.campaign-goal-box h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.campaign-goal-box .para1 {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Campaign Pillars Section */
.campaign-pillars {
    background-color: var(--white);
}

.pillar-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.pillar-card.active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a52a3a 100%);
    border-color: var(--secondary-color);
}

.pillar-card.active .pillar-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pillar-card.active .pillar-icon i {
    color: var(--white);
}

.pillar-card.active h5,
.pillar-card.active .para2 {
    color: var(--white);
}

.pillar-card.active .para2 {
    color: rgba(255, 255, 255, 0.9);
}

.pillar-card.active .btn-style-2 {
    background: var(--white);
    color: var(--secondary-color);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 35, 50, 0.1) 0%, rgba(139, 35, 50, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.pillar-icon i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.pillar-card h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.pillar-card .para2 {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: var(--spacing-lg);
}

.pillar-card .btn-style-2 {
    align-self: flex-start;
}

/* Campaign Diagram Section */
.campaign-diagram-section {
    background-color: #f8f5f0;
}

.campaign-diagram {
    position: relative;
    padding: var(--spacing-xxl);
}

.diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    margin: 0 auto;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a52a3a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(139, 35, 50, 0.3);
}

.center-circle .goal-amount {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.center-circle .goal-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.diagram-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

.diagram-item .diagram-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--primary-color);
}

.diagram-item .diagram-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.diagram-item .diagram-label {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.diagram-top-left {
    top: 20px;
    left: 30px;
}

.diagram-top-right {
    top: 20px;
    right: 30px;
}

.diagram-bottom-left {
    bottom: 20px;
    left: 30px;
}

.diagram-bottom-right {
    bottom: 20px;
    right: 30px;
}

/* Connecting lines */
.diagram-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(26, 54, 93, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.campaign-info h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.campaign-info .para1 {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* Campaign Stats Section */
.campaign-stats-section .section-heading h3 {
    color: var(--white);
}

.campaign-stats-section .text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.campaign-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
}

.campaign-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.campaign-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.campaign-stats .stat-item h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.campaign-stats .stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Staff Section Themed */
.staff-section-themed {
    background-color: #f8f5f0;
}

.staff-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.staff-card .staff-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.staff-card .staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.staff-card:hover .staff-image img {
    transform: scale(1.05);
}

.staff-card .staff-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.staff-card .staff-info h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.staff-card .staff-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.staff-card .staff-email {
    color: var(--gray-600);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.staff-card .staff-email:hover {
    color: var(--primary-color);
}

.staff-card .staff-email i {
    color: var(--secondary-color);
}

/* Campaign CTA Section */
.campaign-cta-section {
    padding: var(--spacing-xl) 0;
}

.campaign-cta-section .cta-content h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.campaign-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.btn-style-white {
    display: inline-block;
    background: var(--white);
    color: var(--secondary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 2px solid var(--white);
}

.btn-style-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-style-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 2px solid var(--white);
}

.btn-style-outline-white:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Responsive Styles for Inspiring Achievement Page */
@media (max-width: 1199px) {
    .campaign-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .diagram-wrapper {
        height: 350px;
        max-width: 380px;
    }

    .center-circle {
        width: 120px;
        height: 120px;
    }

    .center-circle .goal-amount {
        font-size: 1.5rem;
    }

    .diagram-item .diagram-icon {
        width: 50px;
        height: 50px;
    }

    .diagram-item .diagram-icon i {
        font-size: 1.25rem;
    }

    .diagram-item .diagram-label {
        font-size: 0.75rem;
    }

    .diagram-wrapper::before {
        width: 240px;
        height: 240px;
    }

    .campaign-info {
        margin-top: var(--spacing-xl);
        text-align: center;
    }

    .campaign-cta-section .cta-content {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .campaign-goal-box {
        padding: var(--spacing-xl);
    }

    .campaign-goal-box h4 {
        font-size: 1.5rem;
    }

    .pillar-card {
        padding: var(--spacing-lg);
    }

    .diagram-wrapper {
        height: 300px;
        max-width: 320px;
    }

    .center-circle {
        width: 100px;
        height: 100px;
    }

    .center-circle .goal-amount {
        font-size: 1.25rem;
    }

    .diagram-item {
        width: 80px;
    }

    .diagram-item .diagram-icon {
        width: 40px;
        height: 40px;
    }

    .diagram-item .diagram-icon i {
        font-size: 1rem;
    }

    .diagram-wrapper::before {
        width: 200px;
        height: 200px;
    }

    .campaign-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-stats .stat-item h4 {
        font-size: 1.5rem;
    }

    .staff-card .staff-image {
        height: 200px;
    }

    .campaign-cta-section .btn-style-white,
    .campaign-cta-section .btn-style-outline-white {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }

    .campaign-cta-section .btn-style-outline-white {
        margin-left: 0 !important;
    }
}

/* ========================================
   Alumni Page Styles
   ======================================== */

/* Alumni Intro Section */
.alumni-intro-section {
    background-color: #f8f5f0;
}

/* Alumni Network Cards */
.alumni-network-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.alumni-network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.alumni-network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.alumni-network-card:hover::before {
    width: 6px;
}

.alumni-network-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.alumni-network-card.highlight::before {
    background: var(--secondary-color);
}

.alumni-network-card.highlight .network-icon {
    background: rgba(255, 255, 255, 0.15);
}

.alumni-network-card.highlight .network-icon i {
    color: var(--white);
}

.alumni-network-card.highlight h4,
.alumni-network-card.highlight .para1 {
    color: var(--white);
}

.alumni-network-card.highlight .para1 {
    color: rgba(255, 255, 255, 0.9);
}

.network-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(26, 54, 93, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.network-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.alumni-network-card h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.alumni-network-card .para1 {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Alumni Stats Section */
.alumni-stats-section {
    padding: var(--spacing-xl) 0;
}

.alumni-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.alumni-stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.alumni-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.alumni-stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.alumni-stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.alumni-stat-item h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.alumni-stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Alumni Stories Section New */
.alumni-stories-section-new {
    background-color: var(--white);
}

.alumni-story-card-new {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all var(--transition-normal);
}

.alumni-story-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.alumni-story-card-new .story-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-normal);
}

.alumni-story-card-new:hover .story-image {
    transform: scale(1.1);
}

.story-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 35, 50, 0.8) 0%, rgba(26, 54, 93, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.alumni-story-card-new:hover .story-overlay-new {
    opacity: 1;
}

.story-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
    transform: scale(0.8);
}

.alumni-story-card-new:hover .story-link {
    transform: scale(1);
}

.story-link:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.story-content {
    padding: var(--spacing-lg);
}

.story-content h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.story-content .para2 {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.read-more-link:hover {
    color: var(--primary-color);
    gap: var(--spacing-sm);
}

.read-more-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Alumni Feature Sections (Learning Hub & Research) */
.alumni-feature-section,
.alumni-research-section {
    min-height: 500px;
}

.feature-image-side {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.3) 0%, rgba(26, 54, 93, 0.1) 100%);
}

.feature-content-side {
    padding: var(--spacing-xxl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
}

.feature-content-side.research-side {
    background: #f8f5f0;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    width: fit-content;
}

.feature-badge i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.feature-badge span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-badge.research-badge {
    background: var(--primary-color);
}

.feature-badge.research-badge i {
    color: var(--white);
}

.feature-content-side h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.feature-content-side.research-side h3 {
    color: var(--primary-color);
}

.feature-content-side .para1 {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.feature-content-side.research-side .para1 {
    color: var(--gray-600);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xs) 0;
    font-size: 0.95rem;
}

.feature-content-side.research-side .feature-list li {
    color: var(--gray-600);
}

.feature-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Alumni Support Section */
.alumni-support-section {
    background-color: var(--white);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a52a3a 100%);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.support-content h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.support-content .para1 {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.support-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.support-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 35, 50, 0.1) 0%, rgba(139, 35, 50, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-feature-item .feature-icon i {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.support-feature-item .feature-text h6 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.support-feature-item .feature-text p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin: 0;
}

.support-image-wrapper {
    position: relative;
}

.support-image-wrapper .rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.support-image-wrapper .image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a52a3a 100%);
    border-radius: var(--radius-md);
    z-index: -1;
}

/* Alumni CTA Section */
.alumni-cta-section {
    padding: var(--spacing-xl) 0;
}

.alumni-cta-section .cta-content h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.alumni-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Styles for Alumni Page */
@media (max-width: 1199px) {
    .alumni-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .feature-image-side {
        min-height: 350px;
    }

    .feature-content-side {
        padding: var(--spacing-xl);
    }

    .feature-content-side h3 {
        font-size: 1.75rem;
    }

    .support-image-wrapper .image-accent {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }

    .alumni-cta-section .cta-content {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .alumni-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .alumni-stat-item {
        padding: var(--spacing-md);
    }

    .alumni-stat-item h4 {
        font-size: 1.5rem;
    }

    .alumni-stat-item .stat-icon {
        width: 50px;
        height: 50px;
    }

    .story-image-wrapper {
        height: 180px;
    }

    .feature-image-side {
        min-height: 250px;
    }

    .feature-content-side {
        padding: var(--spacing-lg);
    }

    .feature-content-side h3 {
        font-size: 1.5rem;
    }

    .support-content h3 {
        font-size: 1.5rem;
    }

    .support-image-wrapper .image-accent {
        display: none;
    }

    .alumni-cta-section .btn-style-white {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Criminal Justice Major Page Styles
   ======================================== */

/* Major Intro Section */
.major-intro-section {
    background-color: #f8f5f0;
}

/* Major Overview Card */
.major-overview-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.major-logo-wrapper {
    padding: var(--spacing-lg);
}

.major-logo-wrapper .major-logo-img {
    max-width: 150px;
    margin-bottom: var(--spacing-md);
}

.major-logo-wrapper h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.major-description {
    padding: var(--spacing-lg);
    border-left: 3px solid var(--secondary-color);
}

.major-description .para1 {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* Major Programs Section */
.major-programs-section {
    background-color: var(--white);
}

/* Program Tabs */
.program-tabs-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.program-tab-buttons {
    display: flex;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.program-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.program-tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.program-tab-btn.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.program-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
}

.program-tab-btn i {
    font-size: 1.25rem;
}

/* Program Tab Content */
.program-tab-content {
    padding: var(--spacing-lg);
}

.program-tab-pane {
    display: none;
}

.program-tab-pane.showfirst,
.program-tab-pane.active {
    display: block;
}

/* Program List */
.program-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.program-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: #f8f5f0;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.program-item:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.program-item:hover .program-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.program-icon i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.program-item:hover .program-icon i {
    color: var(--white);
}

.program-info {
    flex-grow: 1;
}

.program-info h6 {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.program-arrow {
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.program-item:hover .program-arrow {
    background: var(--secondary-color);
}

.program-arrow i {
    font-size: 0.85rem;
    color: var(--gray-500);
    transition: all var(--transition-fast);
}

.program-item:hover .program-arrow i {
    color: var(--white);
    transform: translateX(2px);
}

/* Major Support Section */
.major-support-section {
    padding: var(--spacing-xxl) 0;
}

.major-support-section .section-heading h3 {
    color: var(--white);
}

.major-support-section .text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.decorative-dots-light span {
    background: rgba(255, 255, 255, 0.3);
}

.support-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.support-card.highlight {
    background: var(--secondary-color);
}

.support-card.highlight::before {
    background: var(--white);
}

.support-card.highlight .support-icon {
    background: rgba(255, 255, 255, 0.2);
}

.support-card.highlight .support-icon i {
    color: var(--white);
}

.support-card.highlight h5,
.support-card.highlight p {
    color: var(--white);
}

.support-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.support-card.highlight .support-link {
    color: var(--white);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 35, 50, 0.1) 0%, rgba(139, 35, 50, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.support-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.support-card h5 {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.support-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.support-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.support-link:hover {
    gap: var(--spacing-sm);
}

.support-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.support-link:hover i {
    transform: translateX(3px);
}

/* Major CTA Section */
.major-cta-section {
    padding: var(--spacing-xl) 0;
}

.major-cta-section .cta-content h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.major-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Styles for Major Page */
@media (max-width: 991px) {
    .major-logo-wrapper {
        margin-bottom: var(--spacing-lg);
    }

    .major-description {
        border-left: none;
        border-top: 3px solid var(--secondary-color);
        padding: var(--spacing-lg) 0;
        padding-top: var(--spacing-lg);
    }

    .program-tab-btn {
        padding: var(--spacing-md);
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .program-tab-btn span {
        font-size: 0.85rem;
    }

    .major-cta-section .cta-content {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .major-overview-card {
        padding: var(--spacing-lg);
    }

    .major-logo-wrapper .major-logo-img {
        max-width: 120px;
    }

    .major-logo-wrapper h4 {
        font-size: 1.25rem;
    }

    .program-tab-buttons {
        flex-direction: column;
    }

    .program-tab-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .program-tab-btn.active::after {
        display: none;
    }

    .program-tab-btn.active {
        border-left: 3px solid var(--secondary-color);
    }

    .program-tab-content {
        padding: var(--spacing-md);
    }

    .program-item {
        padding: var(--spacing-md);
    }

    .program-icon {
        width: 40px;
        height: 40px;
    }

    .program-info h6 {
        font-size: 0.85rem;
    }

    .support-card {
        padding: var(--spacing-lg);
    }

    .major-cta-section .btn-style-white,
    .major-cta-section .btn-style-outline-white {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }

    .major-cta-section .btn-style-outline-white {
        margin-left: 0 !important;
    }
}

/* ========================================
   Criminal Justice Bachelor's Degree Page Styles
   ======================================== */

/* Degree Intro Section */
.degree-intro-section {
    background-color: #f8f5f0;
}

/* Degree Overview Card */
.degree-overview-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.1);
    height: 100%;
}

.degree-card-content h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.degree-card-content .para1 {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* Degree Badges Card */
.degree-badges-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-lg);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.badge-item span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Degree Info Section */
.degree-info-section {
    background-color: var(--white);
}

.degree-info-card {
    background: #f8f5f0;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    height: 100%;
}

.info-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--secondary-color);
}

.info-header i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.info-header h5 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.degree-info-card .para1 {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

/* Info Stats Grid */
.info-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.info-stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.info-stat-item .stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-stat-item .stat-icon i {
    font-size: 1rem;
    color: var(--white);
}

.info-stat-item .stat-content h6 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.info-stat-item .stat-content p {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin: 0;
}

/* Degree CTA Card */
.degree-cta-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a52a3a 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.degree-cta-card .cta-logo {
    max-width: 230px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.degree-cta-card h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.degree-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* Degree Courses Section */
.degree-courses-section {
    
}

.degree-courses-section .section-heading h3 {
    color: var(--white);
}

/* Course Tabs Wrapper */
.course-tabs-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.course-tab-buttons {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-sm);
    gap: var(--spacing-sm);
}

.course-tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.course-tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.course-tab-btn.active {
    color: var(--primary-color);
    background: var(--white);
}

.course-tab-btn i {
    font-size: 1.5rem;
}

.course-tab-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

.course-tab-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.course-tab-btn.active small {
    color: var(--secondary-color);
}

/* Course Tab Content */
.course-tab-content {
    padding: var(--spacing-lg);
}

.course-tab-pane {
    display: none;
}

.course-tab-pane.showfirst {
    display: block;
}

/* Course Table */
.course-table {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.course-table-header {
    display: flex;
    background: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-lg);
}

.course-table-header .course-name-col {
    flex: 1;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-table-header .course-credit-col {
    width: 120px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-table-row {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    transition: background var(--transition-fast);
}

.course-table-row:last-child {
    border-bottom: none;
}

.course-table-row:hover {
    background: #f8f5f0;
}

.course-table-row .course-name-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-700);
    font-size: 0.95rem;
}

.course-table-row .course-name-col i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.course-table-row .course-credit-col {
    width: 120px;
    text-align: center;
}

.credit-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Degree CTA Section */
.degree-cta-section {
    padding: var(--spacing-xl) 0;
}

.degree-cta-section .cta-content h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.degree-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Styles for Degree Page */
@media (max-width: 991px) {
    .degree-overview-card,
    .degree-badges-card {
        margin-bottom: var(--spacing-lg);
    }

    .degree-info-card {
        margin-bottom: var(--spacing-lg);
    }

    .info-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-tab-buttons {
        flex-wrap: wrap;
    }

    .course-tab-btn {
        flex: 1 1 calc(33.333% - var(--spacing-sm));
        min-width: 120px;
    }

    .degree-cta-section .cta-content {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .degree-overview-card,
    .degree-info-card {
        padding: var(--spacing-lg);
    }

    .degree-card-content h4 {
        font-size: 1.25rem;
    }

    .info-stats-grid {
        grid-template-columns: 1fr;
    }

    .course-tab-btn {
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .course-tab-btn i {
        font-size: 1.25rem;
    }

    .course-tab-btn small {
        display: none;
    }

    .course-table-header,
    .course-table-row {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .course-table-header .course-credit-col,
    .course-table-row .course-credit-col {
        width: 80px;
    }

    .course-table-row .course-name-col {
        font-size: 0.85rem;
    }

    .credit-badge {
        padding: 3px 8px;
        font-size: 0.75rem;
    }

    .degree-cta-section .btn-style-white,
    .degree-cta-section .btn-style-outline-white {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }

    .degree-cta-section .btn-style-outline-white {
        margin-left: 0 !important;
    }
}
