@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* CSS VARIABLES - Premium Theme Design Tokens */
:root {
    --primary: #1e3a8a;          /* Rich School Blue */
    --primary-light: #3b82f6;    /* Vivid Blue */
    --primary-dark: #0f172a;     /* Deep Slate Navy */
    --secondary: #10b981;        /* Emerald Green */
    --accent: #f59e0b;           /* Amber/Gold Accent */
    --text-main: #1e293b;        /* Dark Slate */
    --text-muted: #64748b;       /* Cool Grey */
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;           /* Light Slate */
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 12px 20px -8px rgba(15, 23, 42, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--primary);
}

/* Sticky Glassmorphic Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.brand-logo img {
    height: 40px;
    width: auto;
}

.brand-logo span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--primary-light);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--primary-light);
    background: rgba(59, 130, 246, 0.04);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.06);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* Mobile Menu Toggle button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    z-index: 1010;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Custom Interactive Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    margin-top: 75px; /* Offset for sticky header */
    overflow: hidden;
    background: #000;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) contrast(1.1);
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide-item.active .slide-image-wrapper img {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: 10%;
    padding: 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #60a5fa;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slide-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.slider-arrow.arrow-prev {
    left: 30px;
}

.slider-arrow.arrow-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: #ffffff;
    width: 30px;
    border-radius: 8px;
}

/* Scrolling Announcement Bar */
.news-ticker {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 15;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.ticker-title {
    background: var(--secondary);
    padding: 8px 20px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 20;
    box-shadow: 6px 0 15px rgba(0,0,0,0.2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    padding-left: 50px;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    margin-right: 50px;
    font-size: 14px;
    font-weight: 600;
}

.ticker-item a {
    color: var(--accent);
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 700;
}

/* Sections Global Structure */
.section-padding {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* Cards & Grid Styling */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Notice Board & Events Cards */
.dynamic-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.dynamic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-top {
    margin-bottom: 20px;
}

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
}

.card-tag.academics { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.card-tag.ptm { background: rgba(16, 185, 129, 0.1); color: #059669; }
.card-tag.achievements { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.card-tag.default { background: rgba(148, 163, 184, 0.1); color: #475569; }

.card-date {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-body-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.card-bottom-info {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.priority-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.priority-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.priority-badge.high { color: #ef4444; }
.priority-badge.high::before { background-color: #ef4444; }
.priority-badge.normal { color: #3b82f6; }
.priority-badge.normal::before { background-color: #3b82f6; }

/* Welcome Section - Flex / Grid Layout */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.welcome-info h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.welcome-info h2 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-info p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.welcome-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
    margin-top: 10px;
}

.welcome-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.25);
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #ffffff;
    position: relative;
    aspect-ratio: 16/9;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Director's Desk Section */
.director-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.director-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background-color: var(--primary-dark);
}

/* Decorative visual background for director block */
.director-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.2) 100%);
    z-index: 2;
}

.director-abstract-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 1px, transparent 1px),
                      radial-gradient(circle at 75% 60%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.director-quote-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
    color: #ffffff;
}

.director-quote-text h4 {
    color: #ffffff !important;
    font-size: 22px;
    margin-bottom: 5px;
}

.director-quote-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border-left: 8px solid var(--primary-light);
    position: relative;
}

.quote-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 180px;
    line-height: 1;
    font-family: serif;
    color: rgba(59, 130, 246, 0.08);
}

.quote-card blockquote {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.quote-card .author-info {
    text-align: right;
}

.quote-card .author-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
}

.quote-card .author-role {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Facilities/Services Tab Panel */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.facility-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.facility-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 32px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon-wrap {
    transform: rotateY(180deg);
}

.facility-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.facility-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Dynamic Gallery grid */
.gallery-filter-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

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

.gallery-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 4px solid #ffffff;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img-container img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 80%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #ffffff;
    z-index: 10;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 10px;
}

.gallery-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 5px;
}

.gallery-info-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.gallery-more-btn-wrap {
    text-align: center;
    margin-top: 50px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* Breadcrumbs section */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0 60px 0;
    color: #ffffff;
    text-align: center;
    margin-top: 75px;
}

.page-banner h1 {
    color: #ffffff !important;
    font-size: 42px;
    margin-bottom: 15px;
}

.custom-breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.custom-breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.custom-breadcrumb a:hover {
    color: #ffffff;
}

.custom-breadcrumb li::after {
    content: '/';
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
}

.custom-breadcrumb li:last-child::after {
    content: '';
}

.custom-breadcrumb li.active {
    color: var(--accent);
}

/* Subpage Main Grid Styles */
.subpage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.subpage-content {
    font-size: 16px;
    color: var(--text-main);
}

.subpage-content p {
    margin-bottom: 20px;
}

/* Contact & Info Grid */
.contact-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Stylized Form styling */
.feedback-form {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.feedback-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

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

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

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
    background: #ffffff;
}

.form-control-custom:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
    transition: var(--transition-smooth);
}

.form-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Map frame */
.map-wrap {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid #ffffff;
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Careers Accordion / Listing Layout */
.career-hero {
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.career-hero h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.career-hero p {
    color: var(--text-muted);
    font-size: 15px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.job-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.job-title-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.job-subject {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 14px;
}

.job-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: none;
}

.job-card.active .job-details {
    display: block;
}

.job-desc-block {
    margin-bottom: 20px;
}

.job-desc-block h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.job-desc-block ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer redesign */
.footer-wrap {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--primary-light);
    transition: transform 0.2s ease;
}

.footer-links a:hover::before {
    transform: translateX(4px);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--primary-light);
    margin-top: 4px;
}

.social-links-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--primary-light);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* Animations */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .navbar-container {
        padding: 15px;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: #ffffff;
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
    .nav-link::after {
        display: none;
    }
    .hero-slider {
        height: 500px;
    }
    .slide-title {
        font-size: 38px;
    }
    .slide-desc {
        font-size: 16px;
    }
    .welcome-grid, .director-grid, .contact-row, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .director-img-container {
        aspect-ratio: 16/9;
    }
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 30px;
    }
    .hero-slider {
        height: 450px;
    }
    .slide-title {
        font-size: 30px;
    }
    .slider-arrow {
        display: none;
    }
    .quote-card {
        padding: 30px 20px;
    }
    .feedback-form, .contact-card {
        padding: 25px 15px;
    }
}
