* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;

}

/* Section */
.about-section {
    padding: 50px 5%;
}


/* Card Box */
.about-box {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Heading */
.section-title {
    font-size: 28px;
    color: #d63384;
    /* Same Pink Shade */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Full Width Line */
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #d4af37;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

/* Top Bar */
.top-bar {
    background: #0a1a8f;
    color: #fff;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    Width: 100%;
}

.social span {
    margin-right: 10px;
    cursor: pointer;
}

.top-buttons button {
    margin-left: 10px;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
}

/* Logo Section */
.logo-section {
    background: #fff;
    width: 100%;
    height: auto;
    display: block;
}

.logo {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;

}

/* Navigation */
header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #0a3d62;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar {
    background: #0b1fae;
    padding: 10px 20px;
    position: relative;
}

nav {
    display: flex;
    left: 50px;
    margin-left: 200px;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

nav a span {
    font-size: 10px;
}

nav a:hover {
    color: #ffd700;
}


.menu-toggle {
    display: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    position: center;
    align-items: center;
    justify-content: center;
    position: sticky;
}

/* Parent */
.faculty-dropdown {
    position: relative;
    list-style: none !important;
    padding-left: 0 !important;

}

@media(max-width:768px) {

    .topbar {
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .menu-toggle {
    display: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    position: center;
    align-items: center;
    justify-content: center;
    position: sticky;
}
}





/* Dropdown Menu */
.faculty-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e2db7;
    /* Same navbar blue */
    min-width: 220px;
    display: none;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    list-style: none !important;
    padding-left: 0 !important;
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 6px;
    transition: 0.3s ease;
}

.faculty-dropdown.active .faculty-dropdown-menu {
    display: block;
}

/* Desktop hover rotate */
@media (min-width: 769px) {
    .faculty-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* Mobile click rotate */
.faculty-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Links */
.faculty-dropdown-menu li {
    list-style: none !important;
    padding-left: 0 !important;
}

.faculty-dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Hover Effect */
.faculty-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 22px;
}

/* Desktop Hover */
@media (min-width: 769px) {
  .faculty-dropdown:hover .faculty-dropdown-menu {
    display: flex;
    animation: smoothFade 0.3s ease forwards;
  }
}

/* Mobile Style */
@media (max-width: 768px) {
    .faculty-dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
    }

    .faculty-dropdown.active .faculty-dropdown-menu {
        display: flex;
    }
}

/* Smooth Animation */
@keyframes smoothFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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




/* Responsive */
@media(max-width:768px) {

    nav {
        display: none;
        background: #0a1a8f;
        margin-left: 0px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .logo-section {
        justify-content: center;
        margin-bottom: 10px;
    }

    .logo img {
        max-width: 100%;
        margin: auto;
    }

    .menu-toggle {
        display: block;
position: sticky;
    }



}

/* Latest News */
.latest-news {
    background: #eee;
    padding: 10px;
    font-weight: bold;
}

/* 3 Column Section */
.three-col {
    display: flex;
    padding: 40px 5%;
    gap: 20px;
}

.three-col .col {
    flex: 1;
    background: #f5f5f5;
    padding: 20px;
}

.three-col .profile img {
    border-radius: 50%;
    margin: 10px 0;
}

.three-col button {
    margin-top: 10px;
    padding: 6px 10px;
    border: none;
    background: #f5c400;
    cursor: pointer;
}

/* Welcome Campus */
.welcome-campus {
    display: flex;
    padding: 40px 5%;
    gap: 30px;
    background: #fafafa;
}

.wc-left,
.wc-right {
    flex: 1;
}

.wc-left img {
    width: 100%;
    margin: 15px 0;
}

.main-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

/* Slide container */
.slide {
    display: none;
    text-align: center;
}

.slide.active {
    display: block;
}

/* IMAGE FIX PART */
.slide img {
    width: 100%;
    /* Height auto */
    display: block;
    height: 500px;
    /* Desktop height */
    object-fit: cover;
    /* Image cut nahi hogi */
}

/* Mobile ke liye */
@media (max-width:768px) {
    .slide img {
        height: 250px;
        /* Yaha jitni chaho utni height de do */
    }
}

/* Navigation buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 22px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media(max-width:768px) {
    .nav {
        font-size: 16px;
        padding: 6px 10px;
    }
}


/* Responsive */
@media(max-width:768px) {

    .three-col {
        flex-direction: column;
    }

    .welcome-campus {
        flex-direction: column;
    }

    .why-icons {
        flex-direction: column;
        align-items: center;
    }
}

/* Courses */
.courses {
    padding: 50px 5%;
    text-align: center;
}

.course-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.course-card {
    flex: 1;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

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

.course-card button {
    margin-top: 15px;
    padding: 8px 15px;
    border: none;
    background: #0a1a8f;
    color: white;
    cursor: pointer;
}

/* Placements */
.placements {
    background: #fafafa;
    padding: 50px 5%;
    text-align: center;
}

.placement-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.premium-footer {
    background-image: url("image/bgcolor.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 500px;
    background-repeat: repeat;
    background-blend-mode: multiply;

    color: #000;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
    flex: 1 1 220px;
}

.footer-about {
    max-width: 300px;
}

/* LOGO */
.footer-logo {
    width: 90px;
    margin-bottom: 15px;

}

/* HEADINGS */
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    padding-left: 8px;
    color: red;
}

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

/* VISITOR COUNTER */
.visitor {
    margin-top: 20px;
    font-size: 14px;
}

.counter-box {
    display: inline-block;
    background: linear-gradient(#6ea0d8, #1d4f91);
    padding: 5px 8px;
    margin: 0 2px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
}

/* SECTION */
.admission-premium {
    margin: 0;

    display: flex;
    justify-content: center;
}

/* GLASS CARD */
.admission-card {
    width: 100%;
    max-width: 1050px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
}

/* HEADING */
.premium-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    color: #666;
    margin-bottom: 35px;
}

.premium-heading span {
    font-weight: 700;
    color: #1f2d3d;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animated underline */
.premium-underline {
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    margin: 12px auto 0;
    animation: drawLine 1.5s ease forwards;
}

@keyframes drawLine {
    to {
        width: 50px;
    }
}

/* CONTENT */
.premium-content {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

/* NUMBER BADGES */
.premium-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.premium-list li {
    counter-increment: item;
    margin-bottom: 15px;
    padding-left: 50px;
    position: relative;
    transition: 0.3s ease;
}

.premium-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Steps list */
.premium-steps {
    padding-left: 20px;
}

.premium-steps li {
    margin-bottom: 12px;
    position: relative;
    transition: 0.3s ease;
}

/* Hover line */
.premium-content li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    transition: 0.3s ease;
}

.premium-content li:hover::after {
    width: 50%;
}

.premium-content li:hover {
    color: #1f2d3d;
    transform: translateX(6px);
}

/* SCROLL REVEAL */
.admission-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
}

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

/* RESPONSIVE */
@media(max-width:768px) {

    .admission-card {
        padding: 35px 20px;
    }

    .premium-heading {
        font-size: 28px;
    }

    .premium-content {
        font-size: 15px;
    }

    .premium-list li {
        padding-left: 45px;
    }
}

/* BOTTOM GOLD BAR */
.footer-bottom {
    background: #e0b12d;
    color: #000;
    text-align: center;
    padding: 12px;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-about {
        max-width: 100%;
    }
}

.visitor {
    margin-top: 20px;
    font-size: 15px;
    color: #fff;
}

.counter {
    display: inline-flex;
    margin-left: 10px;
}

.counter span {
    display: inline-block;
    min-width: 28px;
    padding: 6px 8px;
    margin: 0 2px;
    background: linear-gradient(#6ea0d8, #1d4f91);
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    animation: pop 0.4s ease;
}

@keyframes pop {
    0% {
        transform: scale(0.8);
    }

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


.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 15px 5%;
    background: #0a1a8f;
    color: white;
}

.notice-board {
    height: 150px;
    overflow: hidden;
    background: #eee;
    padding: 10px;
}

.gallery {
    display: flex;
    gap: 15px;
    padding: 30px;
    justify-content: center;
}

.gallery img {
    width: 300px;
    cursor: pointer;
}

#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 80%;
}

#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background: #f5c400;
    border: none;
    cursor: pointer;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
}

@media (max-width: 992px) {

    nav {
        display: none;
        flex-direction: column;
        background: #0b1fae;
        width: 100%;
        padding: 15px 0;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;

    }
}

/* Image Section Styling */
.image-section {
    flex: 1 1 400px;
    background-color: #eee;
}

.image-section img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

/* Content Section Styling */
.content-section {
    flex: 1 1 500px;
    padding: 40px;
}

.welcome-header {
    font-size: 1.2rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.section-title {
    color: #800000;
    /* Dark Red/Maroon */
    font-size: 1.5rem;
    margin: 25px 0 10px 0;
    font-weight: bold;
}

.main-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.main-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 1rem;
}

.badge {
    background-color: #4e7a3d;
    /* Green button color */
    color: white;
    padding: 2px 8px;
    font-size: 0.85rem;
    border-radius: 3px;
    cursor: pointer;
}

.footer-text {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Responsive Layout for Mobile --- */
@media (max-width: 768px) {
    .main-wrapper {
        padding: 10px;
    }

    .container {
        flex-direction: column;
        /* Image top, Text bottom */
    }

    .image-section {
        height: 250px;
    }

    .content-section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.3rem;
    }
}



/* --- Layout Grid --- */
.dashboard-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Card Styles --- */
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border-top: 6px solid var(--orange-accent);
}

.card-header {
    padding: 18px 25px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #eee;
}

/* --- Scrolling Mechanism --- */
.scroll-container {
    height: 400px;
    overflow: hidden;
    padding: 0 20px;
}

.scrolling-content {
    animation: autoScroll 15s linear infinite;
}

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

@keyframes autoScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* --- Content Items --- */
.item-box {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.date-badge {
    font-size: 11px;
    font-weight: 700;
    background: #f8e5d6;
    color: var(--orange-accent);
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.item-title {
    text-decoration: none;
    color: var(--orange-accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    line-height: 1.5;
}

.item-meta {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

/* --- Profile Section --- */
.profile-scroll-area {
    height: 400px;
    overflow-y: auto;
}

.profile-box {
    text-align: center;
    padding: 30px 20px;
}

.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
    margin-bottom: 15px;
}

.profile-name {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.profile-rank {
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.college-name {
    font-size: 0.8rem;
    color: #777;
    margin: 5px 0 15px;
}

.profile-btn {
    display: inline-block;
    background: var(--orange-accent);
    color: white;
    padding: 8px 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.profile-btn:hover {
    background: var(--primary-red);
}

.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 0 20px;
}

/* --- Footer Action Bar --- */
.card-footer {
    background: var(--primary-red);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pause-icon {
    color: white;
    font-size: 12px;
    opacity: 0.8;
}

/* --- Responsive Layout --- */
@media (max-width: 1100px) {
    .dashboard-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }

    body {
        padding: 20px 10px;
    }
}


.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-height: 500px;
}

/* Titles with Sidebar Line */
.section-title {
    color: var(--primary-magenta);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    right: -100px;
    /* Adjust based on layout */
    top: 50%;
    width: 80px;
    height: 2px;
    background: var(--gold-line);
}

/* Layout for Welcome Section */
.content-body {
    display: block;
    /* Allows text wrap */
}

.image-container {
    float: left;
    margin: 0 20px 10px 0;
    width: 45%;
}

.college-img {
    width: 100%;
    border-radius: 0 0 50px 0;
    /* Unique curve like screenshot */
    border: 1px solid #ddd;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.text-content {
    color: var(--text-color);
    font-size: 0.95rem;
    text-align: justify;
}

/* Campus Section Specifics */
.section-title-pink {
    color: var(--primary-magenta);
}

.full-width {
    width: 100%;
}

/* --- Responsive Media Queries --- */

/* For Tablets (stacked columns but keep wrap) */
@media (max-width: 992px) {
    .main-wrapper {
        flex-direction: column;
    }

    .info-card {
        width: 100%;
        min-height: auto;
    }
}

/* For Mobile Phones */
@media (max-width: 600px) {
    .image-container {
        float: none;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .section-title::after {
        display: none;
        /* Hide line on small screens */
    }

    .text-content {
        font-size: 0.85rem;
        text-align: left;
    }

    body {
        padding: 10px;
    }
}

.premium-section {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-blend-mode: multiply;
    background-color: #fafafa;
}

.premium-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ===== Column Style ===== */
.premium-column {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 450px;
    display: flex;
    flex-direction: column;
}

.premium-title {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.premium-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ff6a00;
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 5px;
}

/* ===== Marquee Up Animation ===== */
.marquee {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    animation: scrollUp 12s linear infinite;
}

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

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* ===== Card Style ===== */
.premium-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.premium-card h3 {
    font-size: 15px;
    color: #ff6a00;
}

.premium-card p {
    font-size: 13px;
    color: #555;
}

/* ===== Button ===== */
.premium-btn {
    margin-top: 15px;
    padding: 8px 20px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    text-align: center;
}

/* ===== Third Column Scroll ===== */
.profile-scroll {
    overflow-y: auto;
    flex: 1;
    padding-right: 5px;
}

.profile-scroll::-webkit-scrollbar {
    width: 6px;
}

.profile-scroll::-webkit-scrollbar-thumb {
    background: #ff6a00;
    border-radius: 10px;
}

.profile-card {
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.profile-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.profile-card h4 {
    color: #002c8f;
}

/* ===== Responsive ===== */
@media(max-width:992px) {
    .premium-container {
        grid-template-columns: 1fr 1fr;
    }

    .profile-column {
        grid-column: span 2;
    }
}

@media(max-width:768px) {
    .premium-container {
        grid-template-columns: 1fr;
    }
}



.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ===== BOX DESIGN ===== */
.about-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.about-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* ===== HEADINGS ===== */
.section-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;

}

.section-heading span {
    color: #ff2e93;
}

.section-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff2e93, #ff9800);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

/* ===== LEFT CONTENT ===== */
.about-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-image img {
    width: 260px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* ===== RIGHT TEXT ===== */
.campus-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

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

    .about-image img {
        width: 100%;
        border-radius: 20px;
    }
}

@media(max-width:576px) {
    .section-heading {
        font-size: 22px;
    }

    .about-box {
        padding: 25px;
    }
}

/* ================= WHY CHOOSE SRC SECTION ================= */

.why-section {
    background: #072b4f;
    padding: 60px 20px;
    text-align: center;
}

.why-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.why-item {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #1e2db7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 500;
}

/*DESKTOP
   1 Row – 5 Columns
====================== */
@media (min-width:769px) {

    .why-grid {
        grid-template-columns: repeat(5, 1fr);
    }

}

.why-section .container {
    width: 90%;
    margin: auto;
}

/* Heading */
.section-header {
    text-align: center;
}

.section-header h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
}

.section-header .underline {
    width: 100px;
    height: 6px;
    background: #c9a227;
    margin: 15px auto 60px;
    border-radius: 4px;
}

/* Wrapper Grid */
.circle-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

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

.title-column h2 {
    color: #fff;
    font-size: 32px;
}



/* Card */
.circle-card {
    text-align: center;
    transition: 0.4s ease;
}

/* Circle */
.circle {
    width: 220px;
    height: 220px;
    background: #e4ad1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: 0.4s ease;
}

.circle img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.circle-card p {
    color: #f4c542;
    font-size: 20px;
    font-weight: 500;
}

/* Hover */
.circle-card:hover .circle {
    transform: translateY(-15px) scale(1.05);
}

.circle-card:hover p {
    color: #ffffff;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:768px) {

    .circle-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .title-column {
        grid-column: 1/-1;
        /* Full width */
    }

    .circle-card p {
        font-size: 15px;
        font-weight: 300;
    }
}

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

}

@media(max-width:576px) {
    .circle-wrapper {
        grid-template-columns: (1fr);
        ;
    }

    .circle {
        width: 80px;
        height: 80px;

    }

    .circle img {
        width: 100px;
        height: 100px;
    }

    .title-column {
        grid-column: 1/-1;
        /* Full width */

    }

    .circle-card p {
        font-size: 15px;
        font-weight: 150;
    }
}

/* FULL SECTION */
.college-banner {
    width: 100%;
    overflow: hidden;

}

/* IMAGE SECTION */
.banner-image {
    width: 100%;
    height: 200px;
    background: url("image/banner1.jpg") center center/cover no-repeat;
}

/* MAROON STRIP */
.banner-title {
    width: 100%;
    background: #0b1fae;
    /* Premium maroon */
    padding: 30px 0;
    text-align: center;

}


/* HEADING STYLE */
.banner-title h1 {
    color: #ffffff;
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: 400;
    font-family: "Times New Roman", serif;
    margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .banner-title {
        padding: 25px 0;
    }

    .banner-title h1 {
        font-size: 20px;
        letter-spacing: 3px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .banner-title {
        padding: 18px 10px;
        font-size: 20px;
    }

    .banner-title h1 {
        font-size: 15px;
        letter-spacing: 1.5px;
        line-height: 1.3;
    }
}

.banner-image {
    animation: zoomEffect 12s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

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

/* FULL SECTION */
.about-wrapper {
    display: flex;
    width: 100%;
    min-height: 650px;
    font-family: 'Georgia', serif;

}

/* LEFT IMAGE */
.about-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
    padding-left: 5%;

}

.about-left img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    position: center;
    margin-top: 15%;


}

@media(max-width:768px) {
    .about-left img {
        width: 350px;
        height: 300px;
        object-fit: cover;
        position: center;
       
    }
    /* LEFT IMAGE */
.about-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
   padding: 18px 0px 0px 0px;
}
}

/* ABOUT TEXT ON IMAGE */
.about-tag {
    position: absolute;
    top: 25px;
    left: 35px;
    font-size: 32px;
    color: #0b1fae;
    letter-spacing: 3px;
}

/* RIGHT CONTENT */
.about-right {
    flex: 1.2;
    padding: 60px 70px;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
}

/* MAIN HEADING */
.main-title {
    font-size: 28px;
    font-weight: 500;
}

/* SECTION HEADINGS */
.about-right h3 {
    color: #0b1fae;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
}

/* BULLET LIST */
.about-list {
    padding-left: 22px;
}

.about-list li {
    margin-bottom: 14px;
    line-height: 1.9;
    font-size: 16px;
}

/* READ MORE HIGHLIGHT */
.highlight {
    background: #8dc63f;
    padding: 3px 10px;
    font-weight: bold;
    margin-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-left {
        height: 400px;
    }

    .about-right {
        padding: 40px 25px;
    }
}


@media (max-width: 600px) {
    .main-title {
        font-size: 22px;
    }

    .about-tag {
        font-size: 24px;
    }
}


/* SECTION BACKGROUND WITH GRADIENT OVERLAY */
.vision-section {
    position: relative;
    overflow: hidden;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
    width: 100%;
}

/* HEADING BOX */
.vision-heading-box {
    width: 95%;
    margin: 0 auto 30px auto;
    background-color: white;
    border: 6px solid red;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
}

.vision-heading-box h2 {
    font-size: 36px;
}

@media (max-width: 992px) {
    .vision-heading-box h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .vision-heading-box h2 {
        font-size: 18px;
        width: 100%;
    }
}

/* HEADING STYLE */
.stroke-heading {
    font-size: 50px;
    color: #6d1f1f;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

/* ANIMATED UNDERLINE */
.underline {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0%;
    height: 4px;
    background: #e17815;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        width: 100%;
    }
}

/* TWO COLUMN */
.vision-container {
    width: 90%;
    /* Desktop 2 column */
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;

}

/* LEFT SIDE */
.vision {
    width: 100%;
}

.vision p {
    font-size: 21px;
    line-height: 1.9;
    color: #6d1f1f;
    width: 100%;
}

/* SIGNATURE FLOAT */
.signature {
    margin-top: 40px;
    font-family: cursive;
    font-size: 35px;
    color: #888;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}




/* FADE IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.5s;
}

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

/* SECTION BACKGROUND */
.director-section {
    padding: 40px 0;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;

}

.director-section::before {
    content: "";

    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* CONTAINER */
.director-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* LEFT IMAGE */
.director-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.director-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.director-image img:hover {
    transform: translateY(-8px);
}

/* BADGE */
.director-badge {
    position: absolute;
    bottom: 110px;
    right: 40px;
    background: #e5e5e5;
    padding: 6px 18px;
    font-weight: 600;
}

/* NAME */
.director-name {
    margin-top: 20px;
    font-size: 26px;
    font-family: 'Georgia', serif;
}

.director-name span {
    color: #c26a1b;
    position: relative;
}

.director-name span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #0b1fae;
}

/* RIGHT CONTENT */
.director-content {
    flex: 1.2;
}

.director-content p {
    font-size: 20px;
    line-height: 2;
    color: #0b1fae;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .director-container {
        flex-direction: column;
        text-align: center;
    }

    .director-badge {
        bottom: 100px;
        right: 50%;
        transform: translateX(50%);
    }

    .director-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .director-content p {
        font-size: 16px;
    }
}

.director-name span {
    color: #c26a1b;
    position: relative;
    display: inline-block;
}

/* Animated Stroke Line */
.director-name span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: #0b1fae;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

/* On Hover Stroke Draw */
.director-name:hover span::after {
    transform: scaleX(1);
}

.director-name span::after {
    animation: drawLine 1s ease forwards;
}

@keyframes drawLine {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.whatsapp-float {

    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 8px 10px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
    z-index: 999;

}

/* Hover Effect */
.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Icon Animation */
.whatsapp-icon {
    font-size: 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

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

/* Mobile Adjustment */
@media (max-width: 600px) {
    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 16px;
        border-radius: 50%;
    }
}

.contact-ultra {
    padding: 20px 20px;
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
    display: flex;
    justify-content: center;

}

.contact-wrapper {
    width: 100%;
    max-width: 650px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Heading */
.contact-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-heading span {
    font-weight: 700;
    color: #00f2ff;
}

/* Animated underline */
.heading-line {
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #00f2ff, #00c6ff);
    margin: 12px auto 0;
    animation: draw 1.5s ease forwards;
}

@keyframes draw {
    to {
        width: 120px;
    }
}

/* Input fields */
.input-box {
    position: relative;
    margin-bottom: 30px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    outline: none;
}

.input-box label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.input-box input:focus+label,
.input-box input:valid+label,
.input-box textarea:focus+label,
.input-box textarea:valid+label {
    top: -10px;
    font-size: 13px;
    color: #00f2ff;
}

/* Button */
.btn-premium {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #00f2ff, #00c6ff);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.btn-premium:hover {
    transform: scale(1.05);
}

#formStatus {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media(max-width:768px) {
    .contact-wrapper {
        padding: 35px 20px;
    }

    .contact-heading {
        font-size: 26px;
    }
}

.ultra-admission-wrapper {
    padding: 20px 20px;

    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
}

.ultra-admission-container {
    max-width: 900px;
    margin: auto;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 40px;
    border-radius: 15px;

}


.ultra-admission-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.ultra-admission-form input,
.ultra-admission-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}

.ultra-row {
    display: flex;
    gap: 20px;
}

.ultra-admission-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #00c6ff, #007bff);
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.ultra-admission-btn:hover {
    transform: scale(1.05);
}

#ultraAdmissionMsg {
    text-align: center;
    color: green;
    margin-top: 15px;
}

@media(max-width:768px) {
    .ultra-row {
        flex-direction: column;
    }
}

.ultra-map-wrapper {
    padding: 20px 20px;

    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: #fafafa;
}

.ultra-map-container {
    max-width: 1000px;
    margin: auto;

}

.ultra-map-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.ultra-map-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ultra-map-box iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.click-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    animation: explode 700ms ease-out forwards;
    z-index: 9999;
}

@keyframes explode {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(0.5);
    }
}

.premium-gallery-section {
    padding: 20px 20px;
    background: #f9fbff;
}

.premium-gallery-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.premium-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* Hover Effect */
.premium-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

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

/* Tablet */
@media (max-width: 992px) {
    .premium-gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-gallery-item img {
        height: 180px;
    }
}

.ultra-credit-wrapper {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.typing-text {
    font-weight: 600;
    font-size: 18px;
    color: red;
    position: relative;
    display: inline-block;
    animation: neonPulse 2s infinite alternate;
}

/* Moving Light Stroke */
.typing-text::after {
    content: "";
    position: absolute;
    left: -100%;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff2e93, transparent);
    animation: moveLight 3s linear infinite;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px #ff2e93,
            0 0 10px #ff2e93,
            0 0 20px #ff2e93,
    }

    to {
        text-shadow:
            0 0 10px #ff2e93,
            0 0 20px #ff2e93,
            0 0 40px #ff2e93,
            0 0 80px #ff2e93,
    }
}

@keyframes moveLight {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive */
@media(max-width:768px) {
    .typing-text {
        font-size: 15px;
    }
}

.teaching-section {
    background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-blend-mode: multiply;
    text-align: center;
}

.section-title {
    font-size: 34px;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #0b1fae;
    display: block;
    margin: 10px auto 0;
}

/* GRID */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* CARD */
.staff-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

/* Image Box */
.img-box {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, #0b1fae, #002147);
}

.img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Name */
.staff-card h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* Detail */
.staff-detail {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .img-box {
        width: 90px;
        height: 90px;
    }

    .staff-card h3 {
        font-size: 15px;
    }

    .staff-detail {
       
        font-size: 12px;
    }

    .staff-card.active .staff-detail {
        display: block;  /* show when clicked */
    }
}
@media (max-width: 576px) {

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 17px;
    }

    .section-title {
        font-size: 15px;
    }

    .img-box {
        width: 90px;
        height: 90px;
    }

    .staff-card h3 {
        font-size: 12px;
    }

    .staff-detail {
       
        font-size: 9px;
    }

    .staff-card.active .staff-detail {
        display: block;  /* show when clicked */
    }
}

.program-section {
  padding: 40px 20px;
  background-image: url("image/background.png");
    /* optional pattern */
    background-repeat: repeat;
    background-size: 580px;
    background-blend-mode: multiply;
    text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.program-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

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

.program-image img {
  width: 120px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.program-image img:hover {
  transform: scale(1.1);
}

.program-title {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Accordion */
.accordion {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.accordion-header {
  background: #0a3d62;
  color: #fff;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: 0.3s;
}

.accordion-header i {
  margin-right: 8px;
}

.accordion-header:hover {
  background: #0a3d62;
}

/* Smooth animation using grid trick */
.accordion-content {
  background: transparent;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.accordion-content ul {
  overflow: hidden;
  padding: 0 25px;
}

.accordion-content li {
  margin: 10px 0;
}

/* Active */
.accordion.active .accordion-content {
  grid-template-rows: 1fr;
  padding: 15px 0;
}

/* Arrow rotate */
.accordion.active .accordion-header span i {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* Desktop Hover */
@media (min-width: 768px) {
  .accordion:hover .accordion-content {
    grid-template-rows: 1fr;
    padding: 15px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .program-container {
    grid-template-columns: 1fr;
  }
}
.holi-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
    opacity: 0;
  }
}
.holi-icon {
  position: fixed;
  font-size: 25px;
  animation: float 8s linear infinite;
  opacity: 0.8;
  z-index: 9999;
}

@keyframes float {
  from { transform: translateY(100vh); }
  to { transform: translateY(-10vh); }
}
.splash {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  pointer-events: none;
  animation: splashFade 1s forwards;
}

@keyframes splashFade {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
