/* CSS Variables for Premium Theme */
:root {
    /* Colors */
    --primary-blue: #0b2239;
    --secondary-blue: #1c4575;
    --accent-gold: #c69c6d;
    --accent-gold-dark: #a37d53;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --border-color: #e5e7eb;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

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

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-outline {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

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

.btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--primary-blue);
}

.logo-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-link:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:not(.btn-primary-outline):hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.mobile-toggle {
    display: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    /* Slight scale for potential animation */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 34, 57, 0.9), rgba(11, 34, 57, 0.6) 50%, rgba(11, 34, 57, 0.2));
}

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

.hero-text-wrapper {
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

/* Quick Stats */
.quick-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: var(--border-color);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.stat-info h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sections Global */
.section {
    padding: 7rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header .sub-title {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header .title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.mt-4 {
    margin-top: 2rem;
}

/* About Section */
.about-section {
    padding-top: 10rem;
    /* Space for the overlaying stats */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-wrapper img {
    transition: transform 0.7s ease;
}

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

.floating-img {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    border: 10px solid var(--white);
    border-radius: 12px;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    top: -5%;
    left: -5%;
    background: var(--primary-blue);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.experience-badge .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 2px;
}

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

/* Feature Cards Grid (Academics) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-bottom-color: var(--accent-gold);
}

.feature-card .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .card-image {
    transform: scale(1.05);
}

.feature-card .card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.feature-card p {
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.card-link i {
    transition: transform 0.3s;
}

.card-link:hover {
    color: var(--accent-gold);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Gallery / Campus Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 34, 57, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(11, 34, 57, 0.9), rgba(11, 34, 57, 0.9)), url('https://images.unsplash.com/photo-1577896851231-70ef18881754?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    padding: 6rem 0;
}

.cta-content {
    max-width: 800px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo i,
.footer-logo .logo-text h3 {
    color: var(--white);
}

.footer-logo .logo-text span {
    color: var(--accent-gold);
}

.brand-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-top: 2px;
}

.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.visible-mobile {
    display: none;
}

.hidden-mobile {
    display: inline-flex;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .stat-card:nth-child(1)::after,
    .stat-card:nth-child(2)::after {
        border-bottom: 1px solid var(--border-color);
        width: 60%;
        height: 1px;
        right: auto;
        bottom: 0;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-grid {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .gallery-item.large {
        grid-column: span 3;
        grid-row: span 1;
    }

    .gallery-item {
        grid-column: span 1.5;
    }
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        font-size: 1.15rem;
    }

    .mobile-toggle {
        display: block;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 3rem;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .quick-stats {
        position: static !important;
        transform: none !important;
        margin-top: 2rem !important;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }

    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge {
        margin: 0 auto 1.5rem auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding-top: 14rem;
    }

    .about-images {
        margin-bottom: 3rem;
        padding-right: 0;
    }

    .floating-img {
        width: 50%;
        bottom: -5%;
        right: 0;
        border-width: 5px;
    }

    .experience-badge {
        width: 90px;
        height: 90px;
        border-width: 4px;
        top: -10%;
        left: -5%;
    }

    .experience-badge .num {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.65rem;
    }

    .space-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .visible-mobile {
        display: block;
    }

    .hidden-mobile {
        display: none;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-card::after {
        display: none !important;
    }

    .stat-card {
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem;
        justify-content: center;
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header .title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .feature-card .card-content {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .contact-info li {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Faculty Section */
.faculty-section {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faculty-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
}

.faculty-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

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

.faculty-card:hover::after {
    opacity: 1;
}

.faculty-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: transform 0.6s ease;
}

.faculty-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 34, 57, 0.8), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.faculty-card:hover .faculty-photo img {
    transform: scale(1.08);
}

.faculty-card:hover .faculty-photo::before {
    opacity: 1;
}

.faculty-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.faculty-card:hover .faculty-social {
    transform: translateY(0);
    opacity: 1;
}

.faculty-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

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

.faculty-info {
    padding: 1.5rem 1rem;
    text-align: center;
    background: var(--white);
    flex-grow: 1;
}

.faculty-name {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.faculty-designation {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Executive Card Styles */
.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.executive-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.executive-card .faculty-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.executive-card .faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    transition: none;
}

/* Specific border for principal to match mockup */
.executive-card.principal-card .faculty-photo img {
    border: 1px solid #777;
}

/* Override standard faculty hover effects to keep it clean */
.executive-card .faculty-photo::before {
    display: none;
}

.executive-card:hover .faculty-photo img {
    transform: none;
}

.executive-card .faculty-social {
    display: none;
}

.executive-card .faculty-info {
    padding: 1.25rem 1rem 0 1rem;
    background: transparent;
    flex-grow: 1;
}

.executive-card .faculty-name {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.executive-card .faculty-designation {
    font-size: 0.8rem;
    color: #1e293b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}