/* ============================================
   ULTRA PREMIUM UNIVERSITY WEBSITE STYLES - OPTIMIZED
   ============================================ */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Scheme */
    --primary: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --secondary: #00bcd4;
    --secondary-light: #62efff;
    --secondary-dark: #008ba3;
    --accent: #ff4081;
    --accent-light: #ff79b0;
    --accent-dark: #c60055;
    --light: #f8fdff;
    --dark: #0a0f2b;
    --gray: #78909c;
    --gray-light: #eceff1;
    --success: #00e676;
    --warning: #ff9100;
    --white: #ffffff;
    --black: #000000;
    
    /* Premium Heading Color */
    --heading-color: #1E3A8A;
    --subheading-color: #4B5563;
    
    /* Effects */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(26, 35, 126, 0.3);
}

/* ============================================
   COMMON FLIP ANIMATION SYSTEM
   ============================================ */

/* Flip Card Base */
.flip-card {
    perspective: 1000px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

.flip-back {
    transform: rotateY(180deg);
}

/* ============================================
   HEADING COLOR SYSTEM
   ============================================ */

/* Main Section Titles */
.section-title .title-text {
    color: var(--heading-color) !important;
    background: none !important;
    -webkit-text-fill-color: var(--heading-color) !important;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
}

.title-icon {
    color: var(--heading-color) !important;
    background: none !important;
    -webkit-text-fill-color: var(--heading-color) !important;
}

/* Sub Titles */
.section-subtitle {
    color: var(--subheading-color) !important;
    border: 1px solid rgba(30, 58, 138, 0.15) !important;
    background: rgba(30, 58, 138, 0.04) !important;
    font-weight: 500;
}

/* Card Headings */
.support-card h3,
.course-content h3,
.faculty-info h3,
.gallery-info h3,
.notice-content h3,
.detail-content h3,
.card-front h3,
.card-back h3 {
    color: var(--heading-color) !important;
    font-weight: 700;
}

/* Support Card Headings */
.support-card h3 {
    color: var(--heading-color) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 35, 126, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 64, 129, 0.04) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Animated Background Elements */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.circle, .square, .triangle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.square {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    border-radius: 16px;
}

.triangle {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86.6px solid var(--accent);
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 70%;
    animation-delay: 10s;
}

.square-1 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 15%;
    animation-delay: 7s;
    animation-duration: 30s;
}

.square-2 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    left: 15%;
    animation-delay: 12s;
}

.triangle-1 {
    top: 60%;
    left: 10%;
    animation-delay: 3s;
    animation-duration: 35s;
}

.triangle-2 {
    top: 15%;
    right: 25%;
    animation-delay: 15s;
}

/* Particles */
.particles-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 6s; }
.particle:nth-child(5) { top: 40%; left: 10%; animation-delay: 8s; }
.particle:nth-child(6) { top: 20%; left: 90%; animation-delay: 10s; }
.particle:nth-child(7) { top: 70%; left: 30%; animation-delay: 12s; }
.particle:nth-child(8) { top: 90%; left: 70%; animation-delay: 14s; }
.particle:nth-child(9) { top: 50%; left: 50%; animation-delay: 1s; }
.particle:nth-child(10) { top: 25%; left: 75%; animation-delay: 3s; }

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #134e5e 0%, #0b3d2e 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact i {
    font-size: 0.9rem;
}

.top-actions {
    display: flex;
    gap: 15px;
}

.top-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.top-social a:hover {
    color: var(--secondary-light);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.logo-container {
    padding: 15px 30px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 16px;
    border: 3px solid var(--primary);
    padding: 5px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.logo:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.logo-text h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    font-style: italic;
}

/* Navigation */
.navbar {
    padding: 0 30px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    position: relative;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex: 1;
    position: relative;
}

.nav-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(to bottom, transparent 90%, rgba(102, 126, 234, 0.1) 100%);
}

.nav-icon {
    font-size: 1.1rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-text {
    transition: all 0.3s ease;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.05) 90%, rgba(102, 126, 234, 0.15) 100%);
}

.nav-menu li a:hover .nav-icon,
.nav-menu li a.active .nav-icon {
    color: var(--accent);
    transform: translateY(-3px);
}

.nav-menu li a:hover .nav-underline,
.nav-menu li a.active .nav-underline {
    width: 80%;
}

/* Apply Now Menu Item Special Style */
.apply-now-menu a {
    background: linear-gradient(to bottom, rgba(255, 64, 129, 0.05) 90%, rgba(255, 64, 129, 0.15) 100%) !important;
}

.apply-now-menu a .nav-icon {
    color: var(--accent);
}

.apply-now-menu a:hover {
    background: linear-gradient(to bottom, rgba(255, 64, 129, 0.1) 90%, rgba(255, 64, 129, 0.2) 100%) !important;
}

/* Navigation Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.5s ease;
    z-index: 1000;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent !important;
}

.dropdown-menu a:hover {
    background: var(--gray-light) !important;
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-menu i {
    width: 20px;
    color: var(--secondary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.5s ease;
}

.hamburger.active .line-1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .line-2 {
    opacity: 0;
}

.hamburger.active .line-3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: all;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transform: scale(1.1);
    transition: transform 10s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
    filter: brightness(0.7);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 43, 0.75) 0%, rgba(26, 35, 126, 0.5) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.content-wrapper {
    animation: slideUp 1s ease-out 0.3s both;
}

.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff4081 0%, #ff79b0 100%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.slide-title {
    font-family: 'Roboto Slab', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #66eabe 0%, #4ba29e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: textGlow 3s infinite; */
}

.slide-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.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: 0.5s;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4861b4 0%, #764ba2 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    gap: 20px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-5px);
    gap: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    transform: translateY(-5px);
    border-color: transparent;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite linear;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.stat:nth-child(1) { animation-delay: 0.5s; }
.stat:nth-child(2) { animation-delay: 0.7s; }
.stat:nth-child(3) { animation-delay: 0.9s; }
.stat:nth-child(4) { animation-delay: 1.1s; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 3;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.dot:hover::after {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow {
    color: var(--white);
    font-size: 1.2rem;
    animation: arrowBounce 2s infinite;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--primary-dark);
    animation: titleGlow 4s infinite;
}

.text-center {
    text-align: center;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f7ff 100%);
    position: relative;
    overflow: hidden;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.welcome-box {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 500px;
}

.welcome-message-box {
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.welcome-message-container {
    padding: 40px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

.welcome-message {
    position: relative;
    z-index: 2;
}

.welcome-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #2c3e50;
    opacity: 0.95;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid transparent;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.welcome-message p:nth-child(1) {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.05) 0%, transparent 100%);
    animation: textGlow 3s infinite alternate;
}

.welcome-message p:nth-child(2) {
    border-left-color: var(--secondary);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, transparent 100%);
    animation: textGlow 3s infinite alternate 0.5s;
}

.welcome-message p:nth-child(3) {
    border-left-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, transparent 100%);
    animation: textGlow 3s infinite alternate 1s;
}

.welcome-message p:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.welcome-message p:last-child {
    margin-bottom: 0;
}

.gallery-slider-box {
    position: relative;
    padding: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    filter: brightness(0.9);
}

.image-slider img.active {
    opacity: 1;
    animation: kenBurns 20s infinite;
}

.image-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 3;
    padding: 0 20px;
}

.img-prev, .img-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.img-prev:hover, .img-next:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--shadow-md);
}

.img-dots {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.img-dot {
    width: 12px;
    height: 12px;
    background: rgba(26, 35, 126, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.img-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(26, 35, 126, 0.9));
    color: var(--white);
    z-index: 2;
}

.image-overlay-text h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.image-overlay-text p {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

/* Support Systems Section */
.support-systems {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    position: relative;
    height: 420px;
    perspective: 1000px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.support-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;  
}

.support-card:hover .support-card-inner {
    transform: rotateY(8deg) rotateX(4deg) translateY(-15px);
}

.support-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon i {
    font-size: 3rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.support-card:hover .support-icon i {
    transform: scale(1.15) rotate(10deg);
}

.quality-education .support-icon i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.student-support .support-icon i {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.placement-assistance .support-icon i {
    background: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
}

.quality-education .icon-particle {
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation: floatParticle 4s infinite ease-in-out;
}

.student-support .icon-particle {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    animation: floatParticle 4s infinite ease-in-out 0.5s;
}

.placement-assistance .icon-particle {
    background: linear-gradient(135deg, #f46b45, #eea849);
    animation: floatParticle 4s infinite ease-in-out 1s;
}

.icon-particle:nth-child(2) { top: 10px; left: 10px; }
.icon-particle:nth-child(3) { top: 10px; right: 10px; }
.icon-particle:nth-child(4) { bottom: 10px; left: 10px; }

.support-card:hover .icon-particle {
    opacity: 0.7;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.support-card:hover h3 {
    transform: translateY(-3px);
}

.support-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.support-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.support-card:hover .support-wave {
    transform: scaleX(1);
}

.support-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    opacity: 0;
    transform: rotateY(180deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    z-index: 3;
}

.support-card:hover .support-details {
    opacity: 1;
    transform: rotateY(0);
}

.support-details h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.support-details ul {
    list-style: none;
    padding: 0;
}

.support-details li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.support-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.support-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.support-card:hover .support-animation {
    opacity: 0.3;
}

.book-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.book-page {
    position: absolute;
    width: 20px;
    height: 30px;
    background: var(--primary);
    border-radius: 3px;
    animation: pageFlip 3s infinite ease-in-out;
}

.book-page:nth-child(1) { top: 10px; left: 10px; animation-delay: 0s; }
.book-page:nth-child(2) { top: 25px; left: 30px; animation-delay: 0.5s; }
.book-page:nth-child(3) { top: 40px; left: 50px; animation-delay: 1s; }

.chat-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.chat-bubble {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--secondary);
    border-radius: 50%;
    animation: chatBubble 3s infinite ease-in-out;
}

.chat-bubble:nth-child(1) { top: 10px; left: 10px; animation-delay: 0s; }
.chat-bubble:nth-child(2) { top: 40px; left: 40px; animation-delay: 0.3s; }
.chat-bubble:nth-child(3) { top: 20px; left: 60px; animation-delay: 0.6s; }

.job-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.job-offer {
    position: absolute;
    width: 30px;
    height: 20px;
    background: var(--accent);
    border-radius: 5px;
    animation: jobFloat 4s infinite ease-in-out;
}

.job-offer:nth-child(1) { top: 15px; left: 15px; animation-delay: 0s; }
.job-offer:nth-child(2) { top: 35px; left: 35px; animation-delay: 0.7s; }
.job-offer:nth-child(3) { top: 55px; left: 55px; animation-delay: 1.4s; }

.support-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(30px);
}

.quality-education .support-glow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.student-support .support-glow {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

.placement-assistance .support-glow {
    background: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
}

.support-card:hover .support-glow {
    opacity: 0.4;
}

.support-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: bgFloat 20s infinite linear;
}

.element-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    bottom: 20%;
    left: 10%;
    animation-delay: 7s;
}

.element-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff4081 0%, #ff79b0 100%);
    top: 60%;
    right: 15%;
    animation-delay: 14s;
}

/* ============================================
   QUICK LINKS CARDS
   ============================================ */

.quick-links {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.link-card {
    position: relative;
    height: 320px;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.link-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Card Colors */
.link-card:nth-child(1) .card-front { 
    background: linear-gradient(135deg, #0f3460 0%, #1e3c72 100%); 
    border: 2px solid rgba(30, 58, 138, 0.3);
}
.link-card:nth-child(1) .card-back { 
    background: linear-gradient(135deg, #1e3c72 0%, #0f3460 100%); 
}
.link-card:nth-child(1) .icon-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.link-card:nth-child(2) .card-front { 
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: 2px solid rgba(17, 153, 142, 0.3);
}
.link-card:nth-child(2) .card-back { 
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%); 
}
.link-card:nth-child(2) .icon-circle {
    background: linear-gradient(135deg, #00bcd4 0%, #00838f 100%);
}

.link-card:nth-child(3) .card-front { 
    background: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
    border: 2px solid rgba(138, 43, 226, 0.3);
}
.link-card:nth-child(3) .card-back { 
    background: linear-gradient(135deg, #4B0082 0%, #8A2BE2 100%); 
}
.link-card:nth-child(3) .icon-circle {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

/* Card Content */
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.card-back h3,
.card-back p {
    color: var(--white) !important;
}

.card-front h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.card-front p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.card-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}

.icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.icon-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.link-card:hover .icon-ring {
    animation: rotate 5s linear infinite;
    border-color: var(--white);
}

/* Download Animation */
.download-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
}

.download-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 2;
    animation: downloadPulse 2s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-progress {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid transparent;
    border-top-color: var(--white);
    border-right-color: var(--white);
    border-radius: 50%;
    animation: downloadSpin 1.5s linear infinite;
}

.link-card:hover .download-progress {
    animation: downloadSpin 0.8s linear infinite;
    border-width: 4px;
}

/* Card Action Button */
.card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    color: var(--white);
}

.link-card:hover .card-action {
    background: rgba(255, 255, 255, 0.3);
    gap: 15px;
    padding: 12px 35px;
    transform: translateY(-5px);
}

/* Card Effects */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
}

.link-card:hover .card-glow {
    opacity: 0.5;
}

.link-card:nth-child(1) .card-glow {
    background: linear-gradient(135deg, #0f3460 0%, #1e3c72 100%);
}

.link-card:nth-child(2) .card-glow {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.link-card:nth-child(3) .card-glow {
    background: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
}

/* ============================================
   COURSES SECTION
   ============================================ */

.courses-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fdff 0%, #f0f7ff 100%);
}

.courses-grid {
    display: flex;
    justify-content: center;
}

.course-card-landscape {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(102, 126, 234, 0.2);
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    height: 420px;
    align-items: center;
    min-height: 420px;
}

.course-card-landscape:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.3);
}

.course-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.course-icon {
    position: relative;
    width: 70px;
    height: 70px;
}

.icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.course-icon i {
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    animation: iconPulse 3s infinite ease-in-out;
}

.course-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    animation: badgeGlow 2s infinite;
}

.course-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-content p {
    color: #5d6d7e;
    line-height: 1.6;
    font-size: 1.05rem;
}

.course-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: space-between;
}

.course-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.course-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #5d6d7e;
    padding: 8px 15px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.course-details i {
    color: #667eea;
}

.course-specializations {
    background: rgba(102, 126, 234, 0.05);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.course-specializations h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.course-specializations ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.course-specializations li {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.course-specializations li:hover {
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.course-footer {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.course-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex: 1;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 160px;
}

.course-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: 0.5s;
}

.course-btn:hover::before {
    left: 100%;
}

.course-btn.outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.course-btn:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.course-btn.outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-color: transparent;
}

.course-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    filter: blur(30px);
}

.course-card-landscape:hover .course-glow {
    opacity: 0.2;
}

.course-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.course-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: particleSparkle 3s infinite;
}

.course-particles .particle:nth-child(1) { top: 30%; left: 10%; animation-delay: 0s; }
.course-particles .particle:nth-child(2) { top: 60%; left: 90%; animation-delay: 1s; }
.course-particles .particle:nth-child(3) { top: 80%; left: 50%; animation-delay: 2s; }

.course-card-landscape:hover .course-particles .particle {
    animation: particleSparkle 1s infinite;
}

/* ============================================
   PROGRAM DETAILS BOXES
   ============================================ */

.program-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.detail-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 25px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    height: 200px;
}

.detail-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Flip Structure for Detail Boxes */
.detail-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.detail-box:hover .detail-box-inner {
    transform: rotateY(180deg);
}

.detail-box-front, .detail-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-box-back {
    transform: rotateY(180deg);
    flex-direction: column;
    justify-content: center;
}

/* Detail Box Content */
.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--heading-color) 0%, #667eea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: iconPulse 2s infinite ease-in-out;
}

.detail-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.detail-content p {
    color: #5d6d7e;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Back Side Content */
.detail-more-info {
    padding: 10px;
}

.detail-more-info h4 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.detail-more-info ul {
    list-style: none;
    padding: 0;
}

.detail-more-info li {
    padding: 8px 0;
    color: #5d6d7e;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.detail-more-info li:last-child {
    border-bottom: none;
}

/* Detail Box Animations */
.detail-animation {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.detail-box:hover .detail-animation {
    opacity: 0.3;
}

.check-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.check-mark {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--success);
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
    animation: checkMark 2s infinite;
}

.process-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.process-step {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: processFlow 2s infinite;
}

.process-step:nth-child(1) { top: 10px; left: 10px; animation-delay: 0s; }
.process-step:nth-child(2) { top: 20px; left: 20px; animation-delay: 0.5s; }
.process-step:nth-child(3) { top: 30px; left: 10px; animation-delay: 1s; }

.career-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.career-icon {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    animation: careerBounce 2s infinite;
}

.career-icon:nth-child(1) { top: 10px; left: 10px; animation-delay: 0s; }
.career-icon:nth-child(2) { top: 20px; left: 25px; animation-delay: 0.3s; }
.career-icon:nth-child(3) { top: 30px; left: 15px; animation-delay: 0.6s; }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
    animation: floatElement 15s infinite linear;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 15%;
    animation-delay: 5s;
}

.element-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}
/*







/* Gallery Preview */
.gallery-preview {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8fdff 0%, #f0f7ff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0px;
    margin-bottom: 0px;
}

.gallery-item {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.2);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-image .image-overlay {
    background: rgba(102, 126, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image .image-overlay {
    opacity: 1;
}

.zoom-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.zoom-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.gallery-info {
    padding: 25px;
}

.gallery-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-info p {
    color: #5d6d7e;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gallery-info a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-info a:hover {
    color: var(--accent);
    gap: 15px;
}

/* View Full Gallery Button */
.view-full-gallery {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.view-full-gallery .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.view-full-gallery .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 64, 129, 0.3);
}
*/
/* Notices Section */
.notices-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fdff 0%, #f0f7ff 100%);
}

.notices-container {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.notice-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.notice-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.2);
}

.notice-card.important {
    border-left: 5px solid var(--accent);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.notice-date {
    text-align: center;
    min-width: 70px;
}

.notice-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.notice-date .month {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #5d6d7e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-date .year {
    display: block;
    font-size: 0.9rem;
    color: #5d6d7e;
}

.notice-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.notice-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notice-content h3 a:hover {
    color: #667eea;
}

.notice-content p {
    color: #5d6d7e;
    margin-bottom: 25px;
    line-height: 1.6;
}

.notice-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.action-btn.outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.action-btn:hover {
    transform: translateY(-3px);
    gap: 15px;
}

.action-btn.outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.notice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    font-size: 0.9rem;
    color: #5d6d7e;
}

.notice-footer span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.timeline-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #667eea, transparent);
}

.timeline-dot {
    width: 15px;
    height: 15px;
    background: #667eea;
    border-radius: 50%;
    margin: 20px 0;
    position: relative;
    animation: timelinePulse 2s infinite;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.5s; }
.dot-3 { animation-delay: 1s; }

/* Contact & Map Section */
.contact-map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f7ff 100%);
}

.contact-map-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.map-container {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
    background-size: 1200px 100px;
    background-repeat: repeat-x;
    opacity: 0.05;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.links-column {
    flex: 1;
    min-width: 220px;
}

.links-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #667eea;
    position: relative;
    padding-bottom: 8px;
}

.links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.links-column ul li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-column ul li a:hover {
    color: #667eea;
    padding-left: 5px;
}

.links-column ul li i {
    width: 16px;
    color: #667eea;
    font-size: 0.9rem;
}

.footer-social {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
}

.social-icon:hover {
    background: #667eea;
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: center;
}

.copyright p {
    margin: 0;
    flex-basis: 100%;
    text-align: center;
    order: 1;
}

.legal-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    order: 2;
    margin: 10px 0;
}

.legal-links a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent);
}

.developer {
    order: 3;
    text-align: center;
    flex-basis: 100%;
}

.developer p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.developer i {
    color: #667eea;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: pulse 2s infinite;
    z-index: -1;
}






/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(90deg);
    }
    50% {
        transform: translate(0, 40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(270deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 64, 129, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.8), 0 0 30px rgba(102, 126, 234, 0.4);
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(8px, -8px) scale(1.15);
        opacity: 0.8;
    }
    66% {
        transform: translate(-8px, 8px) scale(0.85);
        opacity: 0.4;
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes downloadPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

@keyframes downloadSpin {
    0% {
        transform: rotate(0deg);
        border-top-color: var(--white);
        border-right-color: var(--white);
    }
    50% {
        border-top-color: rgba(255, 255, 255, 0.7);
        border-right-color: rgba(255, 255, 255, 0.7);
    }
    100% {
        transform: rotate(360deg);
        border-top-color: var(--white);
        border-right-color: var(--white);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.8));
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

@keyframes pageFlip {
    0%, 100% {
        transform: rotateY(0deg);
        opacity: 0.7;
    }
    50% {
        transform: rotateY(180deg);
        opacity: 1;
    }
}

@keyframes chatBubble {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes jobFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(8deg);
        opacity: 1;
    }
}

@keyframes bgFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 30px) rotate(270deg);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes timelinePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(102, 126, 234, 0.3),
                     0 0 20px rgba(102, 126, 234, 0.2),
                     0 0 30px rgba(102, 126, 234, 0.1);
    }
    50% {
        text-shadow: 0 0 15px rgba(102, 126, 234, 0.5),
                     0 0 25px rgba(102, 126, 234, 0.3),
                     0 0 35px rgba(102, 126, 234, 0.2);
    }
}

@keyframes checkMark {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes processFlow {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

@keyframes careerBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes particleSparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .welcome-box {
        height: 400px;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-card-landscape {
        grid-template-columns: 1fr;
        height: auto;
        gap: 30px;
        min-height: auto;
    }
    
    .course-left, .course-right {
        height: auto;
    }
    
    .navbar {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-menu li a {
        padding: 15px 10px;
        font-size: 0.8rem;
    }
    
    .nav-icon {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .program-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .links-column {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-container {
        padding: 10px 15px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    .navbar {
        padding: 0 15px;
        background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 20px 30px;
        transition: all 0.5s ease;
        box-shadow: var(--shadow-xl);
        z-index: 1001;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 15px;
        font-size: 1rem;
        border-radius: 8px;
        margin-bottom: 10px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        background: linear-gradient(to right, transparent 90%, rgba(102, 126, 234, 0.1) 100%);
    }
    
    .nav-icon {
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    
    .nav-underline {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        width: 100%;
        padding: 10px 0 10px 30px;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        color: var(--dark);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 600px;
        height: 80vh;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat {
        flex: 0 0 calc(50% - 20px);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 20px;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .title-icon {
        font-size: 2rem;
    }
    
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-box {
        height: 350px;
    }
    
    .welcome-message-container {
        padding: 25px;
    }
    
    .welcome-message p {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .support-card {
        height: 350px;
    }
    
    .image-controls {
        bottom: 15px;
    }
    
    .img-prev, .img-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .image-overlay-text {
        padding: 20px;
    }
    
    .image-overlay-text h3 {
        font-size: 1.4rem;
    }
    
    .quick-links,
    .courses-section,
    .faculty-section,
    .gallery-preview,
    .notices-section,
    .contact-map-section {
        padding: 60px 0;
    }
    
    .links-grid,
    .courses-grid,
    .faculty-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .link-card {
        height: 280px;
    }
    
    .program-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-specializations ul {
        grid-template-columns: 1fr;
    }
    
    .course-footer {
        flex-direction: column;
    }
    
    .course-btn {
        min-width: 100%;
    }
    
    .map-container {
        height: 350px;
    }
    
    .view-all-faculty,
    .view-full-gallery {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .links-column {
        min-width: 100%;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .developer {
        text-align: center;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-box {
        height: 300px;
    }
    
    .welcome-message-container {
        padding: 20px;
    }
    
    .support-card {
        height: 320px;
        padding: 25px 20px;
    }
    
    .support-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .support-icon i {
        font-size: 2.5rem;
    }
    
    .notice-card {
        padding: 20px;
    }
    
    .notice-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .notice-date {
        align-self: flex-start;
    }
    
    .notice-actions {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .course-card-landscape {
        padding: 25px 20px;
    }
    
    .course-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        gap: 10px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 5px;
    }
}