/* =======================
   CSS Reset & Force Override
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force override any existing navbar styles */
.navbar,
.navbar.navbar-expand-lg,
.navbar.navbar-expand-lg.sticky-top,
.navbar.navbar-expand-lg.navbar-light,
.navbar.navbar-expand-lg.navbar-dark {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    color: #2c3e50 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Force override any existing body styles */
body,
html {
    background: #ffffff !important;
    color: #2c3e50 !important;
}

/* =======================
   Global Variables & Theme - Modern E-Learning Green Theme
======================= */
:root {
    /* Primary Brand Colors - Modern E-Learning Green Theme */
    --primary: #22c55e;
    --primary-light: #4ade80;
    --primary-dark: #16a34a;
    --primary-darker: #15803d;
    
    /* Secondary Colors */
    --secondary: #64748b;
    --secondary-light: #94a3b8;
    --secondary-dark: #475569;
    
    /* Accent Colors */
    --accent-gold: #f59e0b;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-bright: #00d4ff;
    
    /* Modern Color Palette */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #e2e8f0;
    --dark-gray: #64748b;
    --dark: #1e293b;
    --darker: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    
    /* Typography */
    --font-primary: 'Inter', 'Roboto', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =======================
   Global Styles
======================= */
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Scrollbar for Modern Look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
}

html {
    scroll-behavior: smooth;
}

/* =======================
   Typography - Modern E-Learning
======================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
}
h2 { 
    font-size: 2.5rem; 
    font-weight: 700;
}
h3 { 
    font-size: 2rem; 
    font-weight: 700;
}
h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
}
h5 { 
    font-size: 1.25rem; 
    font-weight: 600;
}
h6 { 
    font-size: 1rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.text-accent {
    font-family: var(--font-accent);
    font-weight: 700;
}

.text-muted {
    color: var(--text-light) !important;
    font-weight: 500;
}

.lead {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Enhanced Text Visibility Classes */
.text-bright {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.text-highlight {
    color: var(--primary) !important;
    font-weight: 600;
}

.text-emphasis {
    color: var(--text-primary) !important;
    font-weight: 700;
}

/* =======================
   Buttons - Modern E-Learning
======================= */
.btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-gold), #d97706);
    color: var(--white);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Square Buttons */
.btn-square, .btn-sm-square, .btn-lg-square {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    border-radius: 50%;
}

.btn-square { width: 40px; height: 40px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 56px; height: 56px; }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* =======================
   Navbar - Modern E-Learning
======================= */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    text-decoration: none !important;
}

.navbar-brand h1 {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand h1 i {
    color: var(--primary) !important;
    font-size: 2rem;
}

.navbar-brand h1 small {
    font-size: 0.75rem;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-primary) !important;
    margin: 0 8px;
    padding: 12px 16px !important;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-bright));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(37, 99, 235, 0.05);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    background: var(--white) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 41, 59, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.dropdown-menu {
    background: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: var(--shadow-lg) !important;
    border-radius: var(--radius-lg) !important;
}

.dropdown-item {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.05) !important;
    color: var(--primary) !important;
    font-weight: 600;
}

.dropdown-divider {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Force override any conflicting styles */
.navbar.navbar-expand-lg {
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar.navbar-expand-lg.sticky-top {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* =======================
   Hero Section - Modern E-Learning with Light Green Theme
======================= */
.hero-header {
    background: linear-gradient(135deg, #e8f8e8 0%, #f0f9f0 50%, #e8f8e8 100%);
    position: relative;
    padding: 120px 0 100px;
    color: var(--text-primary);
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

/* Decorative Elements */
.hero-header::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Button Styles for Hero */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
    background: #10b981;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Floating Decorative Elements */
.hero-decorative {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
}

.hero-decorative.shape-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-decorative.shape-2 {
    top: 60%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-decorative.shape-3 {
    top: 30%;
    right: 15%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Quick Stats Section with Light Green Theme */
.quick-stats {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f8e8 100%);
    padding: 60px 0;
    position: relative;
}

.quick-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quick-stats .service-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.quick-stats h3 {
    color: #10b981;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-stats p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* =======================
   Campus Cards - Modern E-Learning
======================= */
.campus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.campus-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.campus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.1);
}

.campus-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    position: relative;
    overflow: hidden;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.campus-card:hover .campus-image img {
    transform: scale(1.1);
}

.campus-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
}

.campus-content {
    padding: 2rem;
}

.campus-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.campus-location {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.campus-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.campus-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.campus-stat {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.campus-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.campus-stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-weight: 500;
}

.campus-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* =======================
   Services Section - Modern E-Learning
======================= */
.service-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-bright));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* =======================
   Team Section - Enhanced Visibility
======================= */
.team-item {
    background: linear-gradient(135deg, var(--dark-blue), var(--navy-blue));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.team-position {
    color: var(--accent-bright);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-bright);
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.team-social a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =======================
   Testimonials - Enhanced Visibility
======================= */
.testimonial-item {
    background: linear-gradient(135deg, var(--dark-blue), var(--navy-blue));
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-bright);
    opacity: 0.3;
    font-family: var(--font-accent);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial-info h5 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.testimonial-info p {
    color: var(--accent-bright);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* =======================
   Carousel Controls - Enhanced Visibility
======================= */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--dark-blue) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-lg);
    color: var(--accent-bright) !important;
    font-size: 1.25rem !important;
    transition: var(--transition);
    pointer-events: all;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.owl-nav button:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    transform: scale(1.1);
}

.owl-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.owl-dot.active {
    background: var(--accent-bright);
    transform: scale(1.2);
}

/* =======================
   Background Sections - Modern E-Learning
======================= */
.bg-light {
    background: var(--light-gray) !important;
    color: var(--text-primary);
}

.bg-dark {
    background: var(--dark) !important;
    color: var(--white);
}

/* =======================
   Text Colors - Modern E-Learning
======================= */
.text-primary {
    color: var(--primary) !important;
    font-weight: 600;
}

.text-secondary {
    color: var(--text-secondary) !important;
    font-weight: 500;
}

.text-light {
    color: var(--text-light) !important;
    font-weight: 500;
}

.text-dark {
    color: var(--text-primary) !important;
    font-weight: 600;
}

/* =======================
   Section Alignment & Spacing
======================= */
section {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12, .col-md-3, .col-md-6, .col-lg-3, .col-lg-4, .col-lg-6 {
    padding: 0 15px;
    margin-bottom: 1rem;
}

/* =======================
   Responsive Design
======================= */
@media (max-width: 991.98px) {
    .hero-title { font-size: 3rem; }
    .navbar-nav .nav-link { margin: 0.25rem 0; }
    .campus-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .navbar-brand h1 { font-size: 1.5rem; }
    .campus-stats { grid-template-columns: repeat(2, 1fr); }
    .service-item { padding: 2rem; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .campus-stats { grid-template-columns: 1fr; }
    .campus-actions { flex-direction: column; }
    .owl-nav { display: none; }
}
