@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4e94;
    --secondary-color: #e6f0fa;
    --accent-color: #1d12b8;
    --text-color: #333;
    --light-text: #fff;
    --card-bg: #f0f0f0;
    --card-border: #ddd;
    --heading-color: #145ab6;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(359.5deg, rgba(115, 122, 205, 1) 8.8%, rgba(186, 191, 248, 1) 77.4%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    color: white;
}

#icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: iconChange 2s infinite;
}

#loader h2 {
    margin-top: 10px;
    font-size: 1.3rem;
    text-align: center;

}

@keyframes iconChange {
    0% {
        content: '\f0c0';
    }

    25% {
        content: '\f19d';
    }

    50% {
        content: '\f0f2';
    }

    75% {
        content: '\f2b5';
    }

    100% {
        content: '\f0c0';
    }
}

@keyframes fadeIn {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

#content {
    display: none;
    padding: 20px;
    text-align: center;
}

/* Top Bar */
.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #174ec4;
    padding: 7px 3%;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-social-icons {
    display: flex;
    gap: 16px;
}

.top-social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #2563eb;
    background-color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.top-contact-info {
    display: flex;
    gap: 24px;
}

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

.top-contact-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
}

.top-contact-text {
    font-weight: 500;
}

.admin-login {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: #2563eb;
    padding: 5px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.admin-login:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Main Header */
.main-header {
    background-image: url('https://ik.imagekit.io/y8vbhvt7s/college%20data/photos/wavy.png?updatedAt=1746962155530');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 110px;
    width: 90px;
    margin-left: 15%;
}

.logo-right {
    height: 100px;
    margin-right: 15%;
}

.college-info {
    flex: 1;
    padding: 0 20px;
}


.college-info h1 {
    color: var(--heading-color);
    font-size: 29px;
    font-family: "Yatra One", system-ui;
    font-weight: bolder;
    margin-bottom: 5px;
    text-align: center;
}

.college-info h2 {
    color: #333;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.college-info p {
    color: #1d1a1a;
    font-size: 14px;
    text-align: center;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(12, 49, 232, 1) 24%, rgba(4, 42, 235, 1) 63%, rgba(248, 248, 248, 1) 100%);
    width: 100%;
    padding: 0 5%;
    height: 40px;
    list-style: none;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    height: 60px;
    background: rgba(71, 118, 230, 0.95);
    backdrop-filter: blur(10px);
}


.nav-items {
    display: flex;
    gap: 10px;
}

.nav-item {
    position: relative;
    padding: 8px 16px;
    cursor: pointer;
    text-align: center;
}

.nav-item>a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-item>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

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

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 10px;
    background: white;
    min-width: 300px;
    white-space: nowrap;
    /* Prevents text wrapping */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 100;
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    color: #0d2d79;
    border-left: 5px solid #163478;

}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1000;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
}

/* Mobile Bottom Navigation */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    height: 65px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    height: 100%;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.bottom-nav-item.active {
    color: #4776E6;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #4776E6;
    transition: width 0.3s ease;
}

.bottom-nav-item.active::before {
    width: 40%;
}


/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animation for dropdown items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown a {
    animation: fadeIn 0.3s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.dropdown a:nth-child(1) {
    animation-delay: 0.05s;
}

.dropdown a:nth-child(2) {
    animation-delay: 0.1s;
}

.dropdown a:nth-child(3) {
    animation-delay: 0.15s;
}

.dropdown a:nth-child(4) {
    animation-delay: 0.2s;
}

.dropdown a:nth-child(5) {
    animation-delay: 0.25s;
}

.dropdown a:nth-child(6) {
    animation-delay: 0.3s;
}

/* Bottom nav panel */
/* Fix for bottom nav panels */
.bottom-nav-panel {
    position: fixed;
    bottom: 65px;
    left: 0;
    right: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 98;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.bottom-nav-panel.active {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px 0;
}

/* Fix for panel links to make them clickable */
.panel-links {
    position: relative;
    z-index: 100;
}

.panel-links a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
    position: relative;
    z-index: 101;
}

.panel-links a:last-child {
    border-bottom: none;
}

.panel-links a:hover {
    color: #4776E6;
    padding-left: 25px;
    background-color: rgba(71, 118, 230, 0.05);
}

/* Fix for overlay to not block panel links */
.overlay.active {
    z-index: 97;
}

/* Fix for panel header */
.panel-header {
    position: relative;
    z-index: 100;
    color: #145ab6;
    margin-left: 10px;
}

.panel-close {
    margin-left: 90%;

}

/* Pulse animation for active bottom nav */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.bottom-nav-item.active i {
    animation: pulse 1s infinite;
}

/* Video Container */
.vid-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.vid-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-container {
    padding: 50px 5%;
    background-color: #e3f2f9;
}

.about-main-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.about-college-image {
    flex: 1;
    min-width: 300px;
}

.about-college-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-college-info {
    flex: 1;
}

.heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.line {
    width: 80px;
    height: 4px;
    background-color: #82840d;
    margin: 0 15px;
    animation: fadeIn 1.5s ease-in-out;
}

.heading-box {
    color: var(--heading-color);
    padding: 6px 20px;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1s ease-in-out forwards;
    text-align: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 80px;
    }
}

.approval {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-college-description {
    text-align: justify;
    line-height: 1.8;
}

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

.stat-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Notice and News Section */
.noticeboard-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 5%;
    background-color: #f5f5f5;
}

.container-notice-board,
.container-news-section {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;

}

.notice-header {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
}

.notice-header img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.notice-header h2 {
    font-size: 1.2rem;
    margin: 0;
}

.notice-content {
    padding: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.notification,
.news-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.notification img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Principal Desk */
.main-principle-desk-section {
    padding: 30px 5%;
}

.hod-desk-container {
    max-width: 100%;
    margin: 0 auto;
}

.hod-profile {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hod-info {
    display: flex;
    flex-direction: row;
}

.hod-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 20px;
    width: 30%;
}

.hod-photo {
    width: 300px;
    height: 250px;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hod-details {
    text-align: center;
    width: 100%;
}

.hod-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hod-title {
    font-weight: 800;
    margin-bottom: 5px;
}

.hod-qualifications {
    font-size: 1rem;
    margin-bottom: 5px;
}

.hod-experience {
    font-size: 0.9rem;
}

.hod-message {
    flex: 1;
    padding: 20px;
    width: 70%;
}

.message-title {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
}

.message-quote {
    font-style: italic;
    color: var(--primary-color);
    padding: 10px 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 15px;
}

.message-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.contact-info {
    display: block;
    margin-top: 20px;
    border-top: 1px solid var(--card-border);
    padding-top: 15px;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-icon {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Department Section */
.department-section {
    padding: 30px 5%;
    background-color: #f9f9f9;
}

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

.grid-container a {
    text-decoration: none;
    color: inherit;
}

.card {
    background-color: #9cc9e7;
    background-image: linear-gradient(160deg, #9cc9e7 0%, #6373c5 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.card-title a {
    font-weight: bold;
    color: white;
    font-size: 1.1rem;

}

/* Event Section */
.event-container {
    padding: 30px 5%;
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

.event-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.event-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 400px;
}

.event-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.event-caption {
    margin: 0;
    font-size: 1rem;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.slider-button-prev {
    left: 10px;
}

.slider-button-next {
    right: 10px;
}

/* Gallery Section */
.gallery {
    padding: 40px 5%;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.category {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

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

.category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category:hover img {
    transform: scale(1.1);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}



/* ========================Responsive styles ================*/


/* Mobile Styles Navigation */
@media (max-width: 2000px) {
    .contact-info-icons {
        display: none;

    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
        padding-bottom: 65px;
        /* Space for bottom nav */
    }

    .menu-toggle {
        display: flex;
        gap: 15px;
    }

    .contact-info-icons {
        display: flex;
        gap: 10px;
        border: none;
    }

    .contact-info-icons a {
        text-decoration: none;
        color: white;
        font-size: 1.2rem;

    }

    .top-navbar {
        display: none;
    }

    .main-nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 83%;
        height: 100vh;
        background: linear-gradient(135deg, #4776E6, #8E54E9);
        padding: 100px 20px 20px;
        transition: left 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        overflow-y: auto;
        border-radius: 0;
        
        align-items: flex-start;
        justify-content: flex-start;
    }

    .main-nav.active {
        left: 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }



    .nav-items {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: left;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item>a::after {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 10px;
    }

    .nav-item.active .dropdown {
        max-height: 500px;
    }

    .dropdown a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 20px;
        border-left: 3px solid transparent;
    }

    .dropdown a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-left: 3px solid white;
    }

    /* Show bottom navigation on mobile */
    .bottom-nav {
        display: block;
    }

    /* Mobile header bar */
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, #4776E6, #8E54E9);
        padding: 0 20px;
        z-index: 99;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}


@media (max-width: 1200px) {
    .heading-box {
        font-size: 1.8rem;
    }

    .line {
        width: 60px;
    }


    .event-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 992px) {
    .main-header {
        background-image: none;

    }

    .logo {
        margin-left: 2px;
    }

    .hod-info {
        flex-direction: column;
    }

    .hod-left {
        width: 100%;
    }

    .hod-message {
        width: 100%;
    }

    .heading-box {
        font-size: 1.6rem;
    }

    .line {
        width: 50px;
    }

    .about-main-content {
        flex-direction: column;
    }

    .event-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .top-navbar {
        display: none;
    }

    .main-header {
        padding: 10px 5%;
        background-image: none;
    }

    .logo {
        height: 80px;
        width: 70px;
        margin-bottom: 20px;
        margin-left: 1%;
    }

    .logo-right {
        display: none;
    }

    .college-info {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .college-info h1 {
        font-size: 14px;

    }

    .college-info h2 {
        font-size: 12px;
    }

    .college-info p {
        font-size: 10px;
    }


    .vid-container {
        height: 100%;
    }

    .about-college-image {
        display: none;
    }

    .event-card {
        flex: 0 0 calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
        width: 50px;
        margin-top: 8%;
        margin-left: 1%;

    }

    .logo-right {
        display: none;
    }

    .main-header {
        height: 70px;
    }

    .college-info {
        order: 3;
        width: 100%;

    }

    .college-info h1 {
        font-size: 14px;
        margin-right: 4%;

    }

    .college-info h2 {
        font-size: 10px;
        text-align: center;
        margin-right: 6%;

    }

    .college-info p {
        font-size: 8px;
        text-align: center;
        margin-right: 6%;
    }

    .heading-box {
        font-size: 1.3rem;
        padding: 5px 10px;
    }

    .line {
        width: 30px;
        height: 3px;
    }

    .hod-photo {
        width: 150px;
        height: 150px;
    }

    .hod-name {
        font-size: 1.3rem;
    }

    .message-title {
        font-size: 1.2rem;
    }

    .vid-container {
        height: 200px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}