/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Color Palette */
    --primary-color: #0a4d68;
    --secondary-color: #088395;
    --accent-color: #05bfdb;
    --light-color: #e8f9fd;
    --dark-color: #1a374d;
    
    /* Neutral Colors */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-bg: #f8f9fa;
    --gray-border: #e0e0e0;
    
    /* Design Tokens */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* Animation Variables */
    --animation-duration: 0.6s;
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Theme Colors */
    --theme-primary: #0a4d68;
    --theme-secondary: #088395;
    --theme-accent: #05bfdb;
    --theme-bg: #ffffff;
    --theme-text: #333333;
    
    /* Advanced Animation Colors */
    --bar-color-1: #FF6B6B;
    --bar-color-2: #4ECDC4;
    --bar-color-3: #FFD166;
    --bar-color-4: #06D6A0;
    --bar-color-5: #118AB2;
    --bar-color-6: #EF476F;
    --bar-color-7: #7209B7;
    --bar-color-8: #3A86FF;
    --bar-color-9: #FB5607;
    --bar-color-10: #8338EC;
}

/* Theme Variables */
[data-theme="dark"] {
    --theme-primary: #1a374d;
    --theme-secondary: #0a4d68;
    --theme-accent: #088395;
    --theme-bg: #121212;
    --theme-text: #ffffff;
    --gray-bg: #1e1e1e;
    --dark-color: #f5f5f5;
}

[data-theme="blue"] {
    --theme-primary: #1e3a8a;
    --theme-secondary: #3b82f6;
    --theme-accent: #60a5fa;
    --theme-bg: #ffffff;
    --theme-text: #1e293b;
}

[data-theme="purple"] {
    --theme-primary: #5b21b6;
    --theme-secondary: #8b5cf6;
    --theme-accent: #a78bfa;
    --theme-bg: #ffffff;
    --theme-text: #1e293b;
}

[data-theme="gold"] {
    --theme-primary: #b45309;
    --theme-secondary: #f59e0b;
    --theme-accent: #fbbf24;
    --theme-bg: #ffffff;
    --theme-text: #1e293b;
}

[data-theme="orange"] {
    --theme-primary: #c2410c;
    --theme-secondary: #f97316;
    --theme-accent: #fb923c;
    --theme-bg: #ffffff;
    --theme-text: #1e293b;
}

[data-theme="red"] {
    --theme-primary: #b91c1c;
    --theme-secondary: #ef4444;
    --theme-accent: #f87171;
    --theme-bg: #ffffff;
    --theme-text: #1e293b;
}

[data-theme="yellow"] {
    --theme-primary: #ca8a04;
    --theme-secondary: #eab308;
    --theme-accent: #facc15;
    --theme-bg: #ffffff;
    --theme-text: #1e293b;
}

[data-theme="green"] {
    --theme-primary: #047857;
    --theme-secondary: #10b981;
    --theme-accent: #34d399;
    --theme-bg: #ffffff;
    --theme-text: #1e293b;
}

[data-theme="logo"] {
    --theme-primary: #0a4d68;
    --theme-secondary: #088395;
    --theme-accent: #05bfdb;
    --theme-bg: #ffffff;
    --theme-text: #333333;
}

/* ===== LOADING ANIMATION SYSTEM ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-transition.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    text-align: center;
    color: var(--white);
}

.logo-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.logo-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 2;
}

.logo-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--bar-color-1);
    animation: logoRotate 2s linear infinite;
}

.logo-border.delay-1 {
    border-top-color: var(--bar-color-4);
    animation-delay: 0.3s;
}

.logo-border.delay-2 {
    border-top-color: var(--bar-color-7);
    animation-delay: 0.6s;
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.loading-text span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.8;
}

/* ===== ADVANCED ANIMATION BARS SYSTEM ===== */
.bars-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    left: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.1;
    mix-blend-mode: screen;
}

.bars-animation .bar {
    flex: 1;
    height: 100%;
    background: linear-gradient(45deg, var(--bar-color-1), var(--bar-color-2));
    border: 1px solid rgba(var(--theme-primary-rgb), 0.9);
    transform-origin: bottom;
    animation: waveAnimation 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
    filter: blur(1px);
}

@keyframes waveAnimation {
    0%, 100% {
        transform: scaleY(1) translateY(0);
        opacity: 0.6;
    }
    25% {
        transform: scaleY(0.7) translateY(-20px);
        opacity: 0.8;
    }
    50% {
        transform: scaleY(1.2) translateY(10px);
        opacity: 0.4;
    }
    75% {
        transform: scaleY(0.9) translateY(-10px);
        opacity: 0.7;
    }
}

/* Border Animation */
.border-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.border-line {
    position: absolute;
    background: linear-gradient(90deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5),
        var(--bar-color-6),
        var(--bar-color-7),
        var(--bar-color-8),
        var(--bar-color-9),
        var(--bar-color-10)
    );
    animation: borderFlow 20s linear infinite;
}

.border-line.top {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-size: 1000% 100%;
}

.border-line.right {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background-size: 100% 1000%;
}

.border-line.bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-size: 1000% 100%;
}

.border-line.left {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-size: 100% 1000%;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 1000% 0%;
    }
}

/* Particles */
.particles-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--theme-accent);
    animation: particleFloat 20s linear infinite;
    opacity: 0.3;
    filter: blur(1px);
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translate(calc(100vw * var(--tx)), calc(100vh * var(--ty))) rotate(360deg);
        opacity: 0;
    }
}

/* Grid Background */
.grid-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(var(--theme-primary-rgb), 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--theme-primary-rgb), 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    opacity: 0.3;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Logo Background */
.logo-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}

.logo-text {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--theme-primary);
    font-size: 8vw;
    white-space: nowrap;
    animation: logoFloat 40s linear infinite;
    opacity: 0.1;
}

@keyframes logoFloat {
    0% {
        transform: translateX(-100%) rotate(-5deg);
    }
    100% {
        transform: translateX(100vw) rotate(5deg);
    }
}

/* Slider Bars */
.slider-bars {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.slider-bar {
    position: absolute;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--theme-accent),
        transparent
    );
    animation: sliderMove 15s linear infinite;
    filter: blur(1px);
    opacity: 0.2;
}

@keyframes sliderMove {
    0% {
        transform: translateX(-100%) rotate(var(--rotate));
    }
    100% {
        transform: translateX(100vw) rotate(var(--rotate));
    }
}

/* Moving Elements */
.moving-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.moving-element {
    position: absolute;
    transition: transform 6.1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.moving-image {
    opacity: 0.1;
    filter: blur(2px);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.moving-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moving-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--theme-accent);
    opacity: 0.1;
    font-size: clamp(1rem, 2vw, 2rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.moving-icon {
    color: var(--theme-accent);
    opacity: 0.1;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

/* ===== GLOBAL STYLES ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--theme-text);
    background-color: var(--theme-bg);
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.6s ease;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(var(--theme-primary-rgb), 0.05) 0%,
        rgba(var(--theme-secondary-rgb), 0.05) 25%,
        rgba(var(--theme-accent-rgb), 0.05) 50%,
        rgba(var(--theme-secondary-rgb), 0.05) 75%,
        rgba(var(--theme-primary-rgb), 0.05) 100%
    );
    z-index: -3;
    animation: gradientShift 20s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: color 0.6s ease;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-accent));
    border-radius: 2px;
    transition: background 0.6s ease;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.6s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    transition: all 0.6s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: clamp(60px, 8vw, 100px) 0;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ===== ANIMATIONS ===== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

.animate-fade-in.delay-1 {
    animation-delay: 0.3s;
}

.animate-fade-in.delay-2 {
    animation-delay: 0.5s;
}

.animate-fade-in.delay-3 {
    animation-delay: 0.7s;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--theme-primary);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.6s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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: left 0.7s;
    z-index: -1;
}

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

.btn:hover {
    background-color: var(--theme-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--theme-accent);
}

.btn-accent:hover {
    background-color: var(--theme-secondary);
}

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

.btn-outline:hover {
    background-color: var(--theme-primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(0);
}

[data-theme="dark"] header {
    background-color: rgba(18, 18, 18, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    color: var(--theme-primary);
    font-size: 2.5rem;
    transition: all 0.6s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(10deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-color);
    line-height: 1.2;
    transition: color 0.6s ease;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--theme-accent);
    font-weight: 500;
    margin-top: 2px;
    transition: color 0.6s ease;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    color: var(--text-color);
    transition: color 0.6s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-accent);
    transition: width 0.6s ease;
}

.nav-links a:hover {
    color: var(--theme-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--theme-primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* ===== THEME SELECTOR ===== */
.theme-selector {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    max-width: 200px;
    transform: translateX(120%);
    transition: transform 0.6s ease;
}

[data-theme="dark"] .theme-selector {
    background: var(--gray-bg);
    color: var(--theme-text);
}

.theme-selector.active {
    transform: translateX(0);
}

.theme-selector h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--theme-primary);
}

.theme-colors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.theme-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.6s ease;
}

.theme-color.default {
    background: #0a4d68;
}

.theme-color.dark {
    background: #121212;
}

.theme-color.blue {
    background: #1e3a8a;
}

.theme-color.purple {
    background: #5b21b6;
}

.theme-color.gold {
    background: #b45309;
}

.theme-color.orange {
    background: #c2410c;
}

.theme-color.red {
    background: #b91c1c;
}

.theme-color.yellow {
    background: #ca8a04;
}

.theme-color.green {
    background: #047857;
}

.theme-color.logo {
    background: linear-gradient(135deg, #0a4d68, #088395);
}

.theme-color:hover {
    transform: scale(1.1);
}

.theme-color.active {
    border-color: var(--theme-text);
    transform: scale(1.1);
}

.theme-toggle-btn {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--theme-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    box-shadow: var(--shadow);
    transition: all 0.6s ease;
    border: none;
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--theme-secondary);
}

/* ===== PAGE CONTENT ===== */
.page-content {
    min-height: 100vh;
    padding-top: 100px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* ===== HERO SECTIONS ===== */
.hero {
    padding-top: 140px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(var(--theme-accent-rgb), 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(var(--theme-primary-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero .btn {
    background-color: var(--theme-accent);
    border: none;
}

.hero .btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.hero .btn-outline:hover {
    background-color: var(--white);
    color: var(--theme-primary);
}

/* ===== ABOUT PAGE STYLES ===== */
.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-image {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.history-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.history-image:hover img {
    transform: scale(1.05);
}

.milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.milestone {
    text-align: center;
    padding: 20px;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    transition: all 0.6s ease;
}

.milestone:hover {
    transform: translateY(-5px);
    background: var(--theme-primary);
    color: var(--white);
}

.milestone .year {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-primary);
}

.milestone:hover .year {
    color: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.6s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.mv-icon {
    font-size: 3rem;
    color: var(--theme-primary);
    margin-bottom: 20px;
}

.mv-card.mission .mv-icon {
    color: var(--theme-primary);
}

.mv-card.vision .mv-icon {
    color: var(--theme-accent);
}

.mv-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.mv-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card ul li i {
    color: var(--theme-accent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--theme-accent);
    margin-bottom: 20px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.achievement {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
}

.achievement:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* ===== CAMPUS PAGE STYLES ===== */
.map-container {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    margin-bottom: 60px;
}

#campusMap {
    width: 100%;
    height: 100%;
}

.map-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 250px;
}

.map-legend h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.academic {
    background: #3A86FF;
}

.legend-color.residential {
    background: #FF6B6B;
}

.legend-color.recreational {
    background: #4ECDC4;
}

.legend-color.administrative {
    background: #FFD166;
}

.legend-color.library {
    background: #8338EC;
}

.legend-color.sports {
    background: #FB5607;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.facility-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.facility-icon {
    font-size: 2rem;
}

.facility-content {
    padding: 20px;
}

.facility-features {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.facility-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-features li i {
    color: var(--theme-accent);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.tour-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.tour-viewer {
    height: 400px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-placeholder {
    text-align: center;
    color: var(--white);
}

.tour-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.tour-controls {
    display: flex;
    background: var(--gray-bg);
    padding: 20px;
    overflow-x: auto;
    gap: 10px;
}

.tour-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.6s ease;
    white-space: nowrap;
}

.tour-point:hover {
    background: var(--theme-primary);
    color: var(--white);
}

.tour-point.active {
    background: var(--theme-primary);
    color: var(--white);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.direction-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
}

.direction-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.direction-icon {
    font-size: 2.5rem;
    color: var(--theme-accent);
    margin-bottom: 20px;
}

.direction-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.direction-card ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-border);
}

.direction-card ul li:last-child {
    border-bottom: none;
}

.planning-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.planning-content {
    padding: 40px;
}

.planning-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature i {
    font-size: 2rem;
    color: var(--theme-accent);
}

.planning-image {
    height: 400px;
}

.planning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PROGRAMS PAGE STYLES ===== */
.programs-hero {
    background: linear-gradient(135deg, 
        rgba(10, 77, 104, 0.9) 0%, 
        rgba(8, 131, 149, 0.85) 100%), 
        url('images/programs-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.programs-container {
    padding: 60px 0;
}

.program-detail {
    margin-bottom: 80px;
}

.program-header {
    text-align: center;
    margin-bottom: 40px;
}

.program-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.program-image {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.program-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.program-image:hover img {
    transform: scale(1.05);
}

.program-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.program-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    ) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.program-details {
    position: relative;
    z-index: 1;
}

.program-details h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.program-details p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.program-features {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.program-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--theme-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.apply-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border: none;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5),
        var(--bar-color-6),
        var(--bar-color-7),
        var(--bar-color-8),
        var(--bar-color-9),
        var(--bar-color-10)
    );
    border-radius: 50px;
    z-index: -1;
    animation: rotate 3s linear infinite;
    background-size: 400% 400%;
}

.apply-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 50px;
    z-index: 1;
}

.apply-btn span {
    position: relative;
    z-index: 2;
}

.apply-btn i {
    position: relative;
    z-index: 2;
}

.apply-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--theme-primary-rgb), 0.3);
}

@keyframes rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    transition: all 0.6s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: var(--theme-primary);
    color: var(--white);
}

.stat-box .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin-bottom: 5px;
}

.stat-box:hover .number {
    color: var(--white);
}

.stat-box .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stat-box:hover .label {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FACULTY PAGE STYLES ===== */
.faculty-hero {
    background: linear-gradient(135deg, 
        rgba(10, 77, 104, 0.9) 0%, 
        rgba(8, 131, 149, 0.85) 100%), 
        url('images/faculty-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.faculty-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
    border: 2px solid transparent;
    position: relative;
}

.faculty-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.faculty-image {
    height: 300px;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.faculty-info {
    padding: 30px;
    position: relative;
    background: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.faculty-info h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faculty-role {
    color: var(--theme-primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faculty-qualification {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.faculty-info p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.faculty-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.faculty-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.faculty-social a::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: 50%;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.faculty-social a::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--gray-bg);
    border-radius: 50%;
    z-index: 1;
    transition: background 0.6s ease;
}

.faculty-social a i {
    position: relative;
    z-index: 2;
    transition: color 0.6s ease;
}

.faculty-social a:hover::after {
    background: var(--theme-primary);
}

.faculty-social a:hover i {
    color: var(--white);
}

/* ===== ADMISSIONS PAGE STYLES ===== */
.admissions-hero {
    background: linear-gradient(135deg, 
        rgba(10, 77, 104, 0.9) 0%, 
        rgba(8, 131, 149, 0.85) 100%), 
        url('images/admissions-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.step {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--theme-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.6s ease;
}

.step:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    background: var(--theme-accent);
}

.step h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    padding-right: 60px;
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
}

.admission-requirements {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin: 60px 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement {
    text-align: center;
    padding: 30px;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    transition: all 0.6s ease;
}

.requirement:hover {
    transform: translateY(-10px);
    background: var(--theme-primary);
    color: var(--white);
}

.requirement i {
    font-size: 2.5rem;
    color: var(--theme-accent);
    margin-bottom: 20px;
    transition: color 0.6s ease;
}

.requirement:hover i {
    color: var(--white);
}

.requirement h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.requirement p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.apply-now-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: var(--white);
    border-radius: var(--border-radius-xl);
    position: relative;
    overflow: hidden;
}

.apply-now-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5),
        var(--bar-color-6),
        var(--bar-color-7),
        var(--bar-color-8),
        var(--bar-color-9),
        var(--bar-color-10)
    );
    border-radius: var(--border-radius-xl);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.apply-now-content {
    position: relative;
    z-index: 1;
}

.apply-now-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.apply-now-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.apply-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--white);
    color: var(--theme-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.6s ease;
    overflow: hidden;
}

.apply-now-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5),
        var(--bar-color-6),
        var(--bar-color-7),
        var(--bar-color-8),
        var(--bar-color-9),
        var(--bar-color-10)
    );
    border-radius: 50px;
    z-index: -1;
    animation: rotate 3s linear infinite;
    background-size: 400% 400%;
}

.apply-now-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--white);
    border-radius: 50px;
    z-index: 1;
}

.apply-now-btn span {
    position: relative;
    z-index: 2;
}

.apply-now-btn i {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
}

.apply-now-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, 
        rgba(10, 77, 104, 0.9) 0%, 
        rgba(8, 131, 149, 0.85) 100%), 
        url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.6s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.contact-form h3 {
    color: var(--dark-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-border);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.6s ease;
    background: var(--gray-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--theme-accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(var(--theme-accent-rgb), 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border: none;
    color: var(--white);
    padding: 18px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5),
        var(--bar-color-6),
        var(--bar-color-7),
        var(--bar-color-8),
        var(--bar-color-9),
        var(--bar-color-10)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: rotate 3s linear infinite;
    background-size: 400% 400%;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: var(--border-radius);
    z-index: 1;
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.submit-btn i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--theme-primary-rgb), 0.3);
}

.contact-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 60px;
}

#contactMap {
    width: 100%;
    height: 100%;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 3;
}

[data-theme="dark"] footer {
    background-color: #1a1a1a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-logo span {
    color: var(--theme-accent);
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
    transition: color 0.6s ease;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: 50%;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    transition: background 0.6s ease;
}

.social-icon i {
    position: relative;
    z-index: 2;
    color: var(--white);
    transition: color 0.6s ease;
}

.social-icon:hover::after {
    background-color: var(--theme-accent);
}

.social-icon:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--theme-accent);
    transition: background 0.6s ease;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.6s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--theme-accent);
    transform: translateX(10px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--theme-accent);
    margin-top: 5px;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: color 0.6s ease;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.6s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.newsletter-form input::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.newsletter-form button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border: none;
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5),
        var(--bar-color-6),
        var(--bar-color-7),
        var(--bar-color-8),
        var(--bar-color-9),
        var(--bar-color-10)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: rotate 3s linear infinite;
    background-size: 400% 400%;
}

.newsletter-form button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: var(--border-radius);
    z-index: 1;
}

.newsletter-form button span {
    position: relative;
    z-index: 2;
}

.newsletter-form button i {
    position: relative;
    z-index: 2;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--theme-primary-rgb), 0.2);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright i.fa-heart {
    color: #e25555;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--theme-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    z-index: 999;
    box-shadow: var(--shadow);
    border: none;
    position: relative;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5),
        var(--bar-color-6),
        var(--bar-color-7),
        var(--bar-color-8),
        var(--bar-color-9),
        var(--bar-color-10)
    );
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
    background-size: 400% 400%;
}

.back-to-top::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--theme-primary);
    border-radius: 50%;
    z-index: 1;
}

.back-to-top i {
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 5px;
    border-radius: var(--border-radius);
    transition: all 0.6s ease;
    z-index: 1001;
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--bar-color-1),
        var(--bar-color-2),
        var(--bar-color-3),
        var(--bar-color-4),
        var(--bar-color-5)
    );
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    background-size: 400% 400%;
}

.mobile-menu-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--white);
    border-radius: var(--border-radius);
    z-index: 1;
}

.mobile-menu-btn i {
    position: relative;
    z-index: 2;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .history-content,
    .program-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-image {
        order: 2;
    }
    
    .history-text {
        order: 1;
    }
    
    .planning-card {
        grid-template-columns: 1fr;
    }
    
    .theme-selector {
        top: 80px;
        right: 10px;
    }

    .theme-toggle-btn {
        top: 80px;
        right: 10px;
    }
    
    .bars-animation .bar {
        animation-duration: 6s;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.6s ease;
        z-index: 999;
        gap: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--white);
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .mv-grid,
    .values-grid,
    .achievements-grid,
    .facilities-grid,
    .directions-grid,
    .faculty-grid,
    .admission-steps {
        grid-template-columns: 1fr;
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bars-animation {
        flex-direction: column;
    }
    
    .bars-animation .bar {
        width: 100%;
        height: auto;
        flex: none;
        animation: waveAnimationMobile 4s ease-in-out infinite;
    }
    
    @keyframes waveAnimationMobile {
        0%, 100% {
            transform: scaleX(1) translateX(0);
            opacity: 0.6;
        }
        25% {
            transform: scaleX(0.7) translateX(-20px);
            opacity: 0.8;
        }
        50% {
            transform: scaleX(1.2) translateX(10px);
            opacity: 0.4;
        }
        75% {
            transform: scaleX(0.9) translateX(-10px);
            opacity: 0.7;
        }
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-form,
    .mv-card,
    .step,
    .facility-card,
    .direction-card,
    .requirement,
    .program-info {
        padding: 20px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .theme-selector {
        max-width: 150px;
    }

    .theme-colors {
        grid-template-columns: repeat(3, 1fr);
    }

    .theme-color {
        width: 30px;
        height: 30px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .back-to-top,
    .mobile-menu-btn,
    .theme-selector,
    .theme-toggle-btn,
    .bars-animation,
    .border-animation,
    .particles-container,
    .grid-background,
    .logo-background,
    .slider-bars,
    .moving-container,
    .page-transition {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }
    
    .section-padding {
        padding: 20px 0 !important;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .hero {
        background: #fff !important;
        color: #000 !important;
        padding-top: 20px;
        min-height: auto;
    }
    
    .hero h1,
    .hero p {
        color: #000 !important;
    }
    
    footer {
        background: #fff !important;
        color: #000 !important;
        padding: 20px 0;
    }
    
    .footer-logo,
    .footer-links h3,
    .footer-contact h3 {
        color: #000 !important;
    }
    
    .copyright {
        border-top: 1px solid #ddd;
        color: #666 !important;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--theme-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-secondary);
}

/* ===== SELECTION STYLES ===== */
::selection {
    background-color: var(--theme-accent);
    color: var(--white);
}

/* ===== SCROLL EFFECTS ===== */
.scroll-move {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}







/* Faculty Page Specific Styles */
.faculty-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.faculty-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.faculty-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.faculty-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    color: var(--text-color);
    font-weight: 500;
}

/* Faculty Grid */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faculty-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.faculty-info {
    padding: 30px;
}

.faculty-info h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.faculty-role {
    color: var(--theme-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.faculty-qualification {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.faculty-info p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.faculty-social {
    display: flex;
    gap: 15px;
}

.faculty-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faculty-social a:hover {
    background: var(--theme-primary);
    color: white;
    transform: translateY(-3px);
}

/* Leadership Team */
.leadership-team {
    margin-top: 80px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leadership-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
}

.leadership-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--theme-primary);
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.leadership-role {
    color: var(--theme-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.leadership-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Departments Section */
.departments-section {
    margin-top: 80px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.department-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.department-icon {
    width: 80px;
    height: 80px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.department-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.department-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.department-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--theme-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.department-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Animations for Faculty Page */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 0.5s ease forwards;
}

/* Responsive Styles for Faculty Page */
@media (max-width: 768px) {
    .faculty-hero {
        padding: 80px 0;
    }
    
    .faculty-hero h1 {
        font-size: 2.5rem;
    }
    
    .faculty-hero p {
        font-size: 1rem;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .faculty-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faculty-stats {
        grid-template-columns: 1fr;
    }
    
    .faculty-card {
        margin: 0 10px;
    }
    
    .faculty-info {
        padding: 20px;
    }
    
    .leadership-card {
        padding: 30px 20px;
    }
    
    .department-card {
        padding: 20px;
    }
}






/* Admissions Page Specific Styles */
.admissions-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.admissions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.admissions-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Info Banner */
.info-banner {
    background: var(--theme-primary);
    color: white;
    padding: 30px 0;
}

.info-banner-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.info-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.info-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Steps */
.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-primary);
    font-family: 'Montserrat', sans-serif;
    min-width: 60px;
}

.step-content h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Admission Programs */
.admission-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.program-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.program-card ul li {
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.program-card ul li:last-child {
    border-bottom: none;
}

.program-card .btn {
    width: 100%;
}

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.requirement-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.requirement-header i {
    font-size: 2rem;
    color: var(--theme-primary);
}

.requirement-header h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card ul li {
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.requirement-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--theme-primary);
    font-weight: bold;
}

.requirement-card ul li:last-child {
    border-bottom: none;
}

/* Fee Table */
.fee-table-container {
    overflow-x: auto;
    margin: 50px 0;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.fee-table th {
    background: var(--theme-primary);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.fee-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:hover {
    background: var(--light-bg);
}

.fee-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

/* Scholarship Info */
.scholarship-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.scholarship-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.scholarship-info h3 i {
    color: var(--theme-primary);
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.scholarship-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--theme-primary);
}

.scholarship-item h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.scholarship-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Application Form */
.application-form-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.application-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-note {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.form-note i {
    color: var(--theme-primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.form-note p {
    color: var(--text-color);
    margin: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    color: var(--theme-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive Styles for Admissions Page */
@media (max-width: 768px) {
    .admissions-hero {
        padding: 80px 0;
    }
    
    .admissions-hero h1 {
        font-size: 2.5rem;
    }
    
    .admissions-hero p {
        font-size: 1rem;
    }
    
    .info-banner-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .info-item {
        justify-content: flex-start;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 25px;
    }
    
    .admission-programs {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .fee-table {
        font-size: 0.9rem;
    }
    
    .scholarship-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .process-step {
        margin: 0 10px 30px;
    }
    
    .program-card,
    .requirement-card {
        padding: 20px;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .form-note {
        padding: 15px;
    }
}








/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Quick Contact Info */
.quick-contact {
    padding: 60px 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-info-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.contact-info-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--theme-primary);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.contact-link:hover {
    gap: 10px;
}

/* Contact Form & Info */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.inquiry-form {
    margin-top: 30px;
}

/* Contact Details */
.contact-details {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.method-content p {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.phone-numbers,
.email-addresses {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-numbers a,
.email-addresses a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
}

.phone-numbers a:hover,
.email-addresses a:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
    color: var(--text-color);
    line-height: 1.6;
}

.timings {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.timing-item span:first-child {
    font-weight: 500;
}

/* Social Contact */
.social-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.social-contact h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.social-contact p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.twitter:hover {
    background: #1DA1F2;
}

.social-link.instagram:hover {
    background: #E4405F;
}

.social-link.linkedin:hover {
    background: #0A66C2;
}

.social-link.youtube:hover {
    background: #FF0000;
}

.social-link i {
    font-size: 1.2rem;
}

/* Location Map */
.location-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.map-placeholder {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 400px;
}

.map-overlay h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.map-overlay h3 i {
    color: var(--theme-primary);
}

.map-overlay p {
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Directions Info */
.directions-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.direction-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.direction-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.direction-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.direction-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Departments Contact */
.departments-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dept-contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.dept-contact-card:hover {
    transform: translateY(-5px);
}

.dept-contact-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.dept-contact-card h3 i {
    color: var(--theme-primary);
}

.dept-head {
    color: var(--theme-primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.dept-contact-info {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.dept-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.dept-contact-info p i {
    color: var(--theme-primary);
    width: 20px;
}

.dept-contact-info a {
    color: var(--theme-primary);
    text-decoration: none;
}

.dept-contact-info a:hover {
    text-decoration: underline;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, var(--theme-primary), #ff4444);
    color: white;
    padding: 60px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.emergency-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.emergency-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.emergency-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.emergency-number i {
    font-size: 1.5rem;
}

.emergency-number a {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.emergency-number a:hover {
    text-decoration: underline;
}

.emergency-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-details {
        padding: 25px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        max-width: none;
    }
    
    .directions-info {
        grid-template-columns: 1fr;
    }
    
    .direction-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .departments-contact {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-number {
        flex-direction: column;
        gap: 10px;
    }
    
    .emergency-number a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 20px;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .dept-contact-card {
        padding: 20px;
    }
    
    .dept-contact-card h3 {
        font-size: 1.1rem;
    }
}







/* Programs Page Specific Styles */
.programs-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.programs-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.programs-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Program Stats */
.program-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--theme-primary);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-content p {
    color: var(--text-color);
    font-weight: 500;
}

/* Program Detail Cards */
.program-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.program-detail-card:hover {
    transform: translateY(-5px);
}

.program-header {
    background: var(--theme-primary);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.program-title h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: white;
}

.program-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--theme-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.program-content {
    padding: 40px;
}

.program-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--theme-primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-color);
    margin: 0;
}

.program-description h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.program-description > p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.career-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.career-list li {
    padding: 10px 15px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    color: var(--text-color);
    position: relative;
    padding-left: 35px;
}

.career-list li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: var(--theme-primary);
    font-weight: bold;
}

.program-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.program-features h4 {
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--theme-primary);
    margin-bottom: 10px;
}

.feature span {
    color: var(--text-color);
    font-weight: 500;
}

.program-footer {
    padding: 30px 40px;
    background: var(--light-bg);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Curriculum Tabs */
.curriculum-tabs {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    background: var(--light-bg);
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.tab-button.active {
    background: var(--theme-primary);
    color: white;
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: var(--dark-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.semester-plan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.semester h4 {
    color: var(--theme-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    font-size: 1.4rem;
}

.semester-courses {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.course:hover {
    transform: translateX(5px);
}

.course strong {
    color: var(--dark-color);
}

.course span {
    color: var(--theme-primary);
    font-weight: 600;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.facility-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.facility-card > p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.facility-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--theme-primary);
    font-size: 1.5rem;
}

.facility-list li:last-child {
    border-bottom: none;
}

/* Career Support */
.career-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.support-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.support-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin-top: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: var(--theme-primary);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--light-bg);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
    width: 200px;
}

/* Responsive Styles for Programs Page */
@media (max-width: 768px) {
    .programs-hero {
        padding: 80px 0;
    }
    
    .programs-hero h1 {
        font-size: 2.5rem;
    }
    
    .programs-hero p {
        font-size: 1rem;
    }
    
    .program-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .program-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .program-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 15px;
        align-self: center;
    }
    
    .program-content {
        padding: 25px;
    }
    
    .program-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .career-list {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .semester-plan {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .career-support {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-footer {
        padding: 25px;
        flex-direction: column;
    }
    
    .program-footer .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .program-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .career-support {
        grid-template-columns: 1fr;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .course {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}








/* Revolution Slider Styles */
/*
.revolution-slider-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.rs-module {
    position: relative;
    width: 100%;
    height: 100%;
}

.rs-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.rs-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-slide.active {
    opacity: 1;
    z-index: 1;
}

.rs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

/* Slider Navigation */
/*
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 100;
    padding: 0 20px;
}

.slider-arrow {
    background: rgba(180, 8, 8, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(180, 8, 8, 1);
    transform: scale(1.1);
}
*/


/* Slider Pagination */
/*
.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #b40808;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(180, 8, 8, 0.8);
}
*

/* Slide Content */
/*
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dfad3e;
    font-weight: 700;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #b40808;
    font-weight: 600;
}
*/

/* Responsive adjustments */
/*
@media (max-width: 768px) {
    .revolution-slider-container {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
}

*/









/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px;
    padding-top: 100px;
}

.slide-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.slide-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    padding: 20px;
}

.center-content {
    text-align: center;
}

.red-text {
    color: #b40808 !important;
    font-size: 24px;
    margin-bottom: 5px;
}

.gold-text {
    color: #dfad3e !important;
    font-size: 48px;
    margin-bottom: 5px;
    font-weight: 700;
}

.slide-description {
    color: white;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}

.apply-now-main-btn {
    background: #b40808 !important;
    color: white !important;
    border: none;
    padding: 15px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(180, 8, 8, 0.3);
}

.apply-now-main-btn:hover {
    background: #8a0606 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(180, 8, 8, 0.4);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 20;
    padding: 0 20px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.slider-arrow:hover {
    background: var(--theme-primary);
    color: white;
    transform: scale(1.1);
}

.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--theme-primary);
    transform: scale(1.3);
}

/* Form Stepper */
.form-stepper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.step.active .step-number {
    background: var(--theme-primary);
    color: white;
    border-color: var(--theme-primary);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
}

.step.active .step-text {
    color: var(--theme-primary);
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--theme-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-overlay {
        padding: 20px;
        padding-top: 80px;
    }
    
    .slide-overlay h2 {
        font-size: 1.8rem;
    }
    
    .gold-text {
        font-size: 36px;
    }
    
    .red-text {
        font-size: 20px;
    }
    
    .apply-now-main-btn {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
    
    .slider-nav {
        padding: 0 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .form-stepper {
        padding: 20px;
    }
    
    .step-indicator {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .step {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 300px;
    }
    
    .slide-overlay h2 {
        font-size: 1.5rem;
    }
    
    .gold-text {
        font-size: 28px;
    }
    
    .apply-now-main-btn {
        padding: 10px 25px !important;
    }
    
    .step {
        flex: 0 0 calc(50% - 10px);
    }
    
    .step-text {
        font-size: 0.8rem;
    }
}







/* Search Bar Styles */
.search-container {
    position: relative;
    margin-right: 20px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
}

.search-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.search-input {
    width: 300px;
    padding: 12px 20px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(180, 8, 8, 0.1);
    width: 350px;
}

.search-input::placeholder {
    color: #999;
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results.active {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s ease;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background: var(--light-bg);
}

.result-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 15px;
}

.result-desc {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.4;
}

.result-type {
    display: inline-block;
    padding: 3px 8px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 11px;
    border-radius: 3px;
    margin-top: 5px;
    font-weight: 500;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-color);
    font-style: italic;
}

/* Mobile Search */
.search-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
}

.search-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
}

.search-mobile.active {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-mobile .search-input {
    flex: 1;
    width: 100%;
    padding: 12px 20px 12px 45px;
}

.search-mobile .search-icon {
    left: 20px;
}

.close-search {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Search */
@media (max-width: 992px) {
    .search-container {
        display: none;
    }
    
    .search-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .search-input:focus {
        width: 100%;
    }
}

























/* ===== 30-SECOND WEBSITE LIMITER OVERLAY ===== */
.website-limiter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(180, 8, 8, 0.98) 0%,
        rgba(223, 173, 62, 0.95) 50%,
        rgba(5, 191, 219, 0.92) 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.website-limiter-overlay.active {
    opacity: 1;
    visibility: visible;
    animation: limiterEntry 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes limiterEntry {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.limiter-content {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 25px;
    padding: 40px;
    max-width: 700px;
    width: 95%;
    text-align: center;
    border: 4px solid #FF6B6B;
    box-shadow: 0 0 80px rgba(255, 107, 107, 0.6),
                0 25px 60px rgba(0, 0, 0, 0.4),
                inset 0 0 60px rgba(255, 255, 255, 0.1);
    animation: urgentPulse 1s infinite alternate;
}

@keyframes urgentPulse {
    0% {
        box-shadow: 0 0 50px rgba(255, 107, 107, 0.4),
                    0 15px 40px rgba(0, 0, 0, 0.3),
                    inset 0 0 40px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 107, 107, 0.8);
    }
    100% {
        box-shadow: 0 0 100px rgba(255, 107, 107, 0.8),
                    0 35px 80px rgba(0, 0, 0, 0.5),
                    inset 0 0 80px rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 107, 107, 1);
    }
}

/* Urgent Alert */
.urgent-alert {
    background: linear-gradient(135deg, #FF6B6B, #EF476F);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: alertFlash 0.5s infinite alternate;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.4);
}

@keyframes alertFlash {
    0% {
        opacity: 0.7;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.urgent-alert i {
    font-size: 1.8rem;
}

.urgent-alert #countdownText {
    font-size: 1.5rem;
    color: #FFD166;
    animation: countdownBlink 1s infinite;
}

@keyframes countdownBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Timer Circle */
.timer-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
}

.timer-svg {
    transform: rotate(-90deg);
}

.timer-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 12;
}

.timer-circle-progress {
    fill: none;
    stroke: #FF6B6B;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 0.5s linear;
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.7));
    animation: progressGlow 1s infinite alternate;
}

@keyframes progressGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.9));
    }
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.time-remaining {
    font-size: 3.2rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    color: #FFD166;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 25px rgba(255, 209, 102, 0.8);
    animation: timeTremble 0.1s infinite;
}

@keyframes timeTremble {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1px); }
    75% { transform: translateX(1px); }
}

.time-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Message */
.limiter-message {
    margin-bottom: 30px;
}

.limiter-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.limiter-title .word {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    padding: 10px 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    animation: wordFloat 2s ease-in-out infinite;
}

.limiter-title .word.blink {
    background: linear-gradient(45deg, #FF6B6B, #EF476F);
    color: white;
    animation: numberBlink 0.5s infinite alternate;
}

@keyframes numberBlink {
    0% {
        background: linear-gradient(45deg, #FF6B6B, #EF476F);
        transform: scale(1);
    }
    100% {
        background: linear-gradient(45deg, #EF476F, #FF6B6B);
        transform: scale(1.1);
    }
}

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

.limiter-title .word:nth-child(1) { animation-delay: 0s; }
.limiter-title .word:nth-child(2) { animation-delay: 0.2s; }
.limiter-title .word:nth-child(3) { animation-delay: 0.4s; }

.limiter-subtitle {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.3rem;
    color: white;
}

.limiter-subtitle i {
    color: #06D6A0;
    font-size: 1.8rem;
}

.limiter-subtitle strong {
    color: #06D6A0;
    font-weight: 700;
}

/* Time Info */
.time-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.time-stat {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.time-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.time-stat i {
    font-size: 2.5rem;
    color: #4ECDC4;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Controls */
.quick-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-quick {
    padding: 18px 30px;
    border-radius: 15px;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    min-width: 140px;
    justify-content: center;
}

.btn-quick:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn-extend-5 {
    background: linear-gradient(135deg, #06D6A0, #4ECDC4);
    color: white;
}

.btn-extend-5:hover {
    background: linear-gradient(135deg, #4ECDC4, #06D6A0);
    box-shadow: 0 10px 25px rgba(6, 214, 160, 0.4);
}

.btn-extend-10 {
    background: linear-gradient(135deg, #118AB2, #3A86FF);
    color: white;
}

.btn-extend-10:hover {
    background: linear-gradient(135deg, #3A86FF, #118AB2);
    box-shadow: 0 10px 25px rgba(17, 138, 178, 0.4);
}

.btn-restart {
    background: linear-gradient(135deg, #FFD166, #FB5607);
    color: white;
}

.btn-restart:hover {
    background: linear-gradient(135deg, #FB5607, #FFD166);
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.4);
}

/* Session Info */
.session-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.session-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.session-badge i {
    color: #8338EC;
    font-size: 1.8rem;
}

.session-badge #sessionNumber {
    color: #FFD166;
    font-size: 1.8rem;
    font-weight: 900;
}

.timer-speed {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
}

.timer-speed select {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 2px solid #4ECDC4;
    border-radius: 10px;
    padding: 8px 15px;
    font-size: 1rem;
    cursor: pointer;
    min-width: 120px;
}

/* Final Warning */
.final-warning {
    background: linear-gradient(135deg, #FF6B6B, #EF476F);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    display: none;
    animation: warningEnter 0.3s ease;
}

@keyframes warningEnter {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.final-warning.active {
    display: block;
    animation: warningShake 0.5s infinite alternate;
}

@keyframes warningShake {
    0% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(5px);
    }
}

.warning-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: white;
}

.warning-content i {
    font-size: 3rem;
    animation: skullRotate 2s infinite;
}

@keyframes skullRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

.warning-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.warning-content p {
    font-size: 1.2rem;
    margin: 0;
}

.warning-content #finalCountdown {
    color: #FFD166;
    font-weight: 900;
    font-size: 1.5rem;
    animation: finalBlink 0.3s infinite;
}

@keyframes finalBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.btn-panic {
    background: white;
    color: #FF6B6B;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: panicPulse 0.3s infinite alternate;
}

@keyframes panicPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.btn-panic:hover {
    background: #FFD166;
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

/* Close Section */
.close-section {
    margin-top: 30px;
}

.btn-close-immediate {
    background: linear-gradient(135deg, #FF0000, #FF6B6B);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-close-immediate:hover {
    background: linear-gradient(135deg, #FF6B6B, #FF0000);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.close-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.close-note i {
    color: #4ECDC4;
}

/* Responsive */
@media (max-width: 768px) {
    .limiter-content {
        padding: 25px 20px;
        border-radius: 20px;
        margin: 15px;
    }
    
    .timer-circle {
        width: 160px;
        height: 160px;
    }
    
    .timer-svg {
        width: 160px;
        height: 160px;
    }
    
    .time-remaining {
        font-size: 2.5rem;
    }
    
    .limiter-title .word {
        font-size: 1.8rem;
        padding: 8px 15px;
    }
    
    .time-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-quick {
        width: 100%;
        max-width: 250px;
    }
    
    .session-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn-close-immediate {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .limiter-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .timer-circle {
        width: 140px;
        height: 140px;
    }
    
    .timer-svg {
        width: 140px;
        height: 140px;
    }
    
    .time-remaining {
        font-size: 2rem;
    }
    
    .urgent-alert {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px;
    }
}









/* ===== CYCLE TIMER SYSTEM ===== */
.cycle-timer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--theme-accent);
}

.cycle-timer .current-cycle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.cycle-timer .cycle-number {
    color: var(--theme-accent);
    font-weight: 900;
    font-size: 1.5rem;
}

.cycle-timer .time-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.cycle-timer .time-left {
    color: #FFD166;
    font-weight: 600;
}

/* Iframe Warning */
.iframe-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FF6B6B, #FFD166);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9998;
    font-weight: 600;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}








