/* ============================================

   CSS VARIABLES & RESET

   ============================================ */

:root {

    --primary-brown: #002472;

    --secondary-brown: #020c56;

    --accent-gold: #d4a574;

    --text-dark: #333333;

    --text-light: #666666;

    --bg-light: #f8f9fa;

    --bg-lighter: #fafafa;

    --white: #ffffff;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* EEE Department Layout Heights & Colors */
    --topbar-h: 40px;
    --header-h: 120px;
    --nav-h: 52px;
    --fixed-top: calc(var(--topbar-h) + var(--header-h) + var(--nav-h));
    --primary: #002472;
    --secondary: #020c56;
    --blue: #002472;
    --gold: #d4a574;
}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Poppins', sans-serif;

    line-height: 1.6;

    color: var(--text-dark);

    overflow-x: hidden;

    padding-top: var(--fixed-top) !important; /* Offset for fixed header on desktop */

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



.container-fluid {

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 20px;

}



/* ============================================

   TOP BAR, HEADER, NAVBAR (Same as other pages)

   ============================================ */

.top-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--topbar-h) !important;
    background: #002472 !important;
    color: #ffffff !important;
    padding: 9px 0 !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    z-index: 10000 !important;
    box-sizing: border-box;
}

.top-bar-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
}

.top-bar-left {
    display: flex !important;
    gap: 28px !important;
    align-items: center !important;
}

.top-bar-info {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
}

.top-bar-info i {
    font-size: 11px !important;
    color: var(--gold) !important;
}

.top-bar-info span {
    color: #ffffff !important;
}

.header {
    position: fixed !important;
    top: var(--topbar-h) !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--header-h) !important;
    background: #ffffff !important;
    padding: 10px 0 !important;
    border-bottom: 3px solid #002472 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
    box-sizing: border-box;
}

.header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    height: 100% !important;
}

.header-logo {
    flex-shrink: 0 !important;
}

.header-logo img {
    width: 100px !important;
    height: auto !important;
    filter: drop-shadow(0 4px 8px rgba(0, 36, 114, 0.15)) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header-logo img:hover {
    transform: scale(1.03) !important;
}

.header-text {
    flex-grow: 1 !important;
    padding-left: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.header-text h1 {
    font-family: 'Cooper Black', 'Georgia', serif !important;
    font-size: clamp(16px, 1.8vw, 25px) !important;
    color: #002472 !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.header-subtitle {
    font-size: 14px !important;
    color: #333333 !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
    font-family: 'Poppins', sans-serif !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.header-info {
    font-size: 13px !important;
    color: #666666 !important;
    font-weight: 400 !important;
    margin-bottom: 2px !important;
    font-family: 'Poppins', sans-serif !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.header-accreditation {
    font-size: 13px !important;
    color: #666666 !important;
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.header-accreditation strong {
    color: #333333 !important;
    font-weight: 600 !important;
}

.header-accreditation-logos {
    display: flex !important;
    align-items: center !important;
    gap: 44px !important;
    flex-shrink: 0 !important;
}

.logo-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.logo-card:hover {
    transform: translateY(-2px) !important;
}

.naac-card {
    position: relative !important;
    top: 0px !important;
    left: 0px !important;
}

.naac-card img {
    height: 94px !important;
    width: auto !important;
    object-fit: contain !important;
}

.nba-card {
    position: relative !important;
    top: -3px !important;
}

.nba-card img {
    height: 68px !important;
    width: auto !important;
    object-fit: contain !important;
}

.nba-subtext {
    position: absolute !important;
    top: 95% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #020c56 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
    font-family: 'Poppins', sans-serif !important;
}

.navbar {
    background: #002472 !important;
    position: fixed !important;
    top: calc(var(--topbar-h) + var(--header-h)) !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--nav-h) !important;
    z-index: 1001 !important;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.3) !important;
    overflow: visible !important;
    isolation: isolate !important;
}

.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; /* Centered */
    height: var(--nav-h) !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    overflow: visible !important;
}

.nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 0 !important;
    justify-content: center !important; /* Centered */
    align-items: center !important;
    height: var(--nav-h) !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

.nav-item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    height: var(--nav-h) !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-item a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    height: 100% !important;
    padding: 0 20px !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.nav-item a:hover,
.nav-item a.active {
    background: rgba(255, 255, 255, 0.13) !important;
}

.nav-item a .nav-icon-wrapper {
    font-size: 0.75rem !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.hamburger {
    display: none !important;
    flex-direction: column !important;
    cursor: pointer !important;
    padding: 10px !important;
    z-index: 1002 !important;
}

.hamburger span {
    width: 25px !important;
    height: 3px !important;
    background: var(--white) !important;
    margin: 3px 0 !important;
    transition: var(--transition) !important;
}



/* Breadcrumb */

.breadcrumb {

    background: var(--bg-light);

    padding: 15px 0;

    border-bottom: 1px solid #e0e0e0;

}



.breadcrumb a {

    color: var(--text-light);

    text-decoration: none;

    transition: var(--transition);

}



.breadcrumb a:hover {

    color: var(--primary-brown);

}



.breadcrumb .separator {

    margin: 0 10px;

    color: var(--text-light);

}



.breadcrumb .current {

    color: var(--primary-brown);

    font-weight: 600;

}



/* ============================================

   HERO SECTION

   ============================================ */

.hero-section {

    position: relative;

    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);

    padding: 40px 0;

    text-align: center;

    overflow: hidden;

}



.hero-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background:

        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),

        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);

    animation: pulse 8s ease-in-out infinite;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');

}



.hero-content {

    position: relative;

    z-index: 2;

}



.hero-title {

    font-size: 52px;

    font-weight: 800;

    color: var(--white);

    margin-bottom: 20px;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

}



.hero-subtitle {

    font-size: 20px;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 30px;

    font-weight: 300;

}



.hero-divider {

    width: 80px;

    height: 4px;

    background: var(--accent-gold);

    margin: 0 auto;

    border-radius: 2px;

}



/* ============================================

   DIRECTOR MAIN SECTION

   ============================================ */

.director-section {

    padding: 100px 0;

    background: var(--white);

}



.director-grid {

    display: grid;

    grid-template-columns: 350px 1fr;

    gap: 60px;

    align-items: start;

}



/* Left Sidebar */

.director-sidebar {

    position: sticky;

    top: 100px;

}



.director-image-container {

    position: relative;

    margin-bottom: 30px;

}



.director-img-placeholder {

    width: 100%;

    height: 420px;

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: var(--shadow-lg);

    transition: var(--transition);

    overflow: hidden;

    position: relative;

}



.director-img-placeholder:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 50px rgba(124, 40, 9, 0.2);

}



/* For placeholder icon */

.director-img-placeholder i {

    font-size: 100px;

    color: rgba(255, 255, 255, 0.2);

    position: absolute;

    transition: var(--transition);

}



/* For actual image */

.director-img-placeholder img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;

}



/* Hide icon when image is present */

.director-img-placeholder:has(img) i {

    display: none;

}



.director-img-placeholder:hover img {

    transform: scale(1.05);

}



/* Image loading states */

.director-img-placeholder img[src=""],

.director-img-placeholder img:not([src]) {

    display: none;

}



/* Show icon when image fails to load */

.director-img-placeholder img[src=""]:not([alt])~i,

.director-img-placeholder:not(:has(img[src])) i {

    display: flex;

}



/* Image aspect ratio preservation */

.director-img-placeholder img {

    aspect-ratio: 3 / 4;

    object-position: center top;

}



.director-name-badge {

    margin-top: 20px;

    background: var(--white);

    padding: 25px;

    border-radius: 12px;

    text-align: center;

    box-shadow: var(--shadow);

    border-top: 4px solid var(--primary-brown);

}



.director-name-badge h3 {

    font-size: 22px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 8px;

    line-height: 1.3;

}



.director-name-badge p {

    font-size: 14px;

    color: var(--text-light);

    font-weight: 600;

}



/* Quick Stats */

.quick-stats {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 30px;

}



.stat-item {

    background: var(--bg-light);

    padding: 20px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    gap: 15px;

    transition: var(--transition);

    border-left: 4px solid transparent;

}



.stat-item:hover {

    background: var(--white);

    border-left-color: var(--primary-brown);

    transform: translateX(5px);

    box-shadow: var(--shadow);

}



.stat-icon {

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.stat-icon i {

    font-size: 22px;

    color: var(--white);

}



.stat-content h4 {

    font-size: 13px;

    color: var(--text-light);

    font-weight: 600;

    margin-bottom: 3px;

}



.stat-content p {

    font-size: 16px;

    color: var(--primary-brown);

    font-weight: 700;

}



/* Right Content */

.director-content {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



/* Content Cards */

.content-card {

    background: var(--white);

    padding: 35px;

    border-radius: 16px;

    box-shadow: var(--shadow);

    transition: var(--transition);

    border: 2px solid var(--bg-light);

}



.content-card:hover {

    border-color: var(--primary-brown);

    box-shadow: var(--shadow-lg);

    transform: translateY(-3px);

}



.card-header {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    padding-bottom: 20px;

    border-bottom: 2px solid var(--bg-light);

}



.card-icon {

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.card-icon i {

    font-size: 22px;

    color: var(--white);

}



.card-title {

    font-size: 24px;

    font-weight: 700;

    color: var(--primary-brown);

}



.card-body p {

    font-size: 15px;

    line-height: 1.8;

    color: var(--text-light);

    margin-bottom: 15px;

    text-align: justify;

}



.card-body p:last-child {

    margin-bottom: 0;

}



/* Education Timeline */

.education-timeline {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.education-item {

    display: flex;

    gap: 20px;

    padding: 20px;

    background: var(--bg-light);

    border-radius: 12px;

    transition: var(--transition);

    border-left: 4px solid var(--primary-brown);

}



.education-item:hover {

    background: var(--white);

    transform: translateX(5px);

    box-shadow: var(--shadow);

}



.education-item.featured {

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

}



.education-item.featured .edu-badge {

    background: rgba(255, 255, 255, 0.2);

    color: var(--white);

    border-color: var(--white);

}



.education-item.featured .edu-details h4,

.education-item.featured .edu-details p {

    color: var(--white);

}



.edu-badge {

    width: 70px;

    height: 70px;

    background: var(--white);

    border: 3px solid var(--primary-brown);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 700;

    color: var(--primary-brown);

    flex-shrink: 0;

}



.edu-details h4 {

    font-size: 18px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 5px;

}



.edu-details p {

    font-size: 14px;

    color: var(--text-light);

    line-height: 1.6;

}



.edu-institution {

    font-size: 13px !important;

    font-style: italic;

    margin-top: 5px;

}



/* Focus Areas */

.focus-areas {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 15px;

}



.focus-item {

    background: var(--bg-light);

    padding: 15px 20px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    font-weight: 500;

    color: var(--text-dark);

    transition: var(--transition);

    border: 2px solid transparent;

}



.focus-item:hover {

    background: var(--white);

    border-color: var(--primary-brown);

    transform: translateY(-3px);

    box-shadow: var(--shadow);

}



.focus-item i {

    font-size: 20px;

    color: var(--primary-brown);

}



/* ============================================

   MESSAGE SECTION

   ============================================ */

.message-section {

    padding: 80px 0;

    background: var(--bg-light);

}



.message-card {

    max-width: 900px;

    margin: 0 auto;

    background: var(--white);

    padding: 50px;

    border-radius: 16px;

    box-shadow: var(--shadow-lg);

    position: relative;

    border-left: 6px solid var(--primary-brown);

}



.message-icon {

    position: absolute;

    top: 40px;

    right: 40px;

    font-size: 60px;

    color: rgba(124, 40, 9, 0.1);

}



.message-content {

    position: relative;

    z-index: 2;

}



.message-title {

    font-size: 32px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 25px;

}



.message-text {

    font-size: 16px;

    line-height: 1.9;

    color: var(--text-light);

    font-style: italic;

    margin-bottom: 30px;

}



.message-signature {

    padding-top: 20px;

    border-top: 2px solid var(--bg-light);

}



.signature-name {

    font-size: 18px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 5px;

}



.signature-title {

    font-size: 14px;

    color: var(--text-light);

    font-weight: 500;

}



/* ============================================

   CTA, FOOTER (Same as other pages)

   ============================================ */

.cta-section {

    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);

    color: var(--white);

    text-align: center;

    padding: 80px 0;

    position: relative;

    overflow: hidden;

}



.cta-section::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

    animation: rotate 30s linear infinite;

}



.cta-content {

    position: relative;

    z-index: 2;

}



.cta-title {

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 15px;

}



.cta-description {

    font-size: 18px;

    margin-bottom: 35px;

    opacity: 0.9;

}



.cta-buttons {

    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;

}



.btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 32px;

    border-radius: 8px;

    font-weight: 600;

    font-size: 15px;

    transition: var(--transition);

    cursor: pointer;

    text-decoration: none;

    border: 2px solid transparent;

}



.btn-primary {

    background: var(--white);

    color: var(--primary-brown);

}



.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}



.btn-outline {

    background: transparent;

    color: var(--white);

    border-color: var(--white);

}



.btn-outline:hover {

    background: var(--white);

    color: var(--primary-brown);

}



.footer {
    background: #020c56 !important;
    color: var(--white) !important;
    padding: 18px 0 !important;
}



.footer-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;

    margin-bottom: 40px;

}



.footer-title {

    font-size: 20px;

    font-weight: 700;

    color: var(--accent-gold);

    margin-bottom: 25px;

}



.footer-contact {

    list-style: none;

}



.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

}



.footer-contact i {

    color: var(--accent-gold);

    font-size: 16px;

    margin-top: 3px;

}



.footer-links {

    list-style: none;

}



.footer-links li {

    margin-bottom: 12px;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.8);

    transition: var(--transition);

    text-decoration: none;

}



.footer-links a:hover {

    color: var(--accent-gold);

    padding-left: 5px;

}



.footer-bottom {
    text-align: center !important;
    padding: 0 !important;
    border-top: none !important;
    margin-top: 0 !important;
    font-size: 14px !important;
}



.footer-bottom p {

    margin-bottom: 5px;

}



.footer-bottom a {

    color: var(--accent-gold);

    transition: var(--transition);

    text-decoration: none;

}



.footer-bottom a:hover {

    text-decoration: underline;

}



.scroll-top {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 50px;

    height: 50px;

    background: var(--primary-brown);

    color: var(--white);

    border: none;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 999;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-lg);

}



.scroll-top.show {

    opacity: 1;

    visibility: visible;

}



.scroll-top:hover {

    background: var(--secondary-brown);

    transform: translateY(-5px);

}



/* ============================================

   ANIMATIONS

   ============================================ */

@keyframes pulse {

    0%,
    100% {

        opacity: 1;

    }

    50% {

        opacity: 0.8;

    }

}



@keyframes rotate {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}



/* ============================================

   RESPONSIVE DESIGN

   ============================================ */



/* Tablets and Small Desktops */

@media (max-width: 1024px) {

    .director-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }



    .director-sidebar {

        position: relative;

        top: auto;

        max-width: 400px;

        margin: 0 auto;

    }



    .director-section {

        padding: 80px 0;

    }



    .message-section,

    .cta-section {

        padding: 60px 0;

    }

}



/* Menu Overlay for Mobile Menu Drawer */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.menu-overlay.active {
    display: block;
}

/* Tablets */

@media (max-width: 768px) {
    :root {
        --topbar-h: 0px !important;
        --header-h: auto !important;
    }

    .top-bar {
        display: none !important;
    }

    .header {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        padding: 15px 0 !important;
        border-bottom: 3px solid #002472 !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
    }

    .header-content {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .header-logo {
        margin: 0 auto !important;
    }

    .header-logo img {
        width: 70px !important;
        height: auto !important;
    }

    .header-text {
        padding-left: 0 !important;
        text-align: center !important;
    }

    .header-text h1 {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }

    .header-subtitle {
        font-size: 13.5px !important;
    }

    .header-info {
        display: block !important;
        font-size: 12px !important;
        margin-bottom: 2px !important;
    }

    .header-accreditation {
        font-size: 12px !important;
        margin-bottom: 2px !important;
    }

    .header-accreditation-logos {
        justify-content: center !important;
        gap: 32px !important;
        margin-top: 4px !important;
    }

    .naac-card {
        top: 0 !important;
        left: 0 !important;
    }

    .naac-card img {
        height: 80px !important;
    }

    .nba-card img {
        height: 50px !important;
    }

    .nba-subtext {
        font-size: 9px !important;
    }

    .navbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 1001 !important;
    }

    .nav-container {
        justify-content: space-between !important;
        padding: 0 15px !important;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #002472 !important;
        flex-direction: column !important;
        padding: 80px 20px 20px !important;
        transition: var(--transition) !important;
        overflow-y: auto !important;
        box-shadow: var(--shadow-lg) !important;
        z-index: 999 !important;
        justify-content: flex-start !important;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-item {
        width: 100% !important;
        height: auto !important;
    }

    .nav-item a {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .hamburger {
        display: flex !important;
    }

    body {
        padding-top: 0 !important;
    }
}



    .hero-section {

        padding: 30px 0 !important;

    }



    .hero-title {

        font-size: 36px;

    }



    .director-section {

        padding: 60px 0;

    }



    .director-sidebar {

        max-width: 100%;

    }



    .director-img-placeholder {

        height: 400px;

    }



    .director-img-placeholder img {

        object-fit: cover;

        object-position: center top;

    }



    .content-card {

        padding: 30px 25px;

    }



    .card-title {

        font-size: 20px;

    }



    .focus-areas {

        grid-template-columns: 1fr;

    }



    .message-card {

        padding: 40px 30px;

    }



    .message-title {

        font-size: 26px;

    }



    .message-icon {

        top: 30px;

        right: 30px;

        font-size: 50px;

    }



    .cta-title {

        font-size: 28px;

    }



    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



/* Mobile Phones */

@media (max-width: 480px) {

    .hero-title {

        font-size: 28px;

    }



    .hero-subtitle {

        font-size: 16px;

    }



    .director-img-placeholder {

        height: 350px;

    }



    .director-img-placeholder i {

        font-size: 80px;

    }



    .director-img-placeholder img {

        object-fit: cover;

        object-position: center;

    }



    .director-name-badge {

        padding: 20px;

    }



    .director-name-badge h3 {

        font-size: 18px;

    }



    .quick-stats {

        gap: 12px;

    }



    .stat-item {

        padding: 15px;

    }



    .stat-icon {

        width: 45px;

        height: 45px;

    }



    .stat-icon i {

        font-size: 18px;

    }



    .content-card {

        padding: 25px 20px;

    }



    .card-header {

        flex-direction: row;

        gap: 12px;

    }



    .card-icon {

        width: 45px;

        height: 45px;

    }



    .card-icon i {

        font-size: 18px;

    }



    .card-title {

        font-size: 18px;

    }



    .card-body p {

        font-size: 14px;

        text-align: left;

    }



    .education-item {

        flex-direction: column;

        align-items: center;

        text-align: center;

        padding: 20px 15px;

    }



    .edu-badge {

        width: 60px;

        height: 60px;

        font-size: 12px;

    }



    .edu-details h4 {

        font-size: 16px;

    }



    .message-card {

        padding: 30px 20px;

    }



    .message-title {

        font-size: 22px;

    }



    .message-text {

        font-size: 15px;

    }



    .message-icon {

        font-size: 40px;

        top: 20px;

        right: 20px;

    }



    .cta-title {

        font-size: 24px;

    }



    .cta-buttons {

        flex-direction: column;

        align-items: center;

    }



    .btn {

        width: 100%;

        max-width: 280px;

        justify-content: center;

    }



    .footer-grid {

        grid-template-columns: 1fr;

    }

}



/* Very Small Screens - Image Optimization */

@media (max-width: 360px) {

    .director-img-placeholder {

        height: 300px;

    }



    .director-img-placeholder i {

        font-size: 60px;

    }



    .director-img-placeholder img {

        object-fit: cover;

        object-position: center;

    }

}