/* ===================================
   GOOGLE FONT & RESET
=================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* ===================================
   TOP BAR
=================================== */
.topbar {
    background: #6f8faf;
    min-height: 38px;
    display: flex;
    align-items: center;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    GAP: 15PX;
}

    .topbar-left a,
    .topbar-right a {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: opacity 0.2s ease;
    }

/*.topbar-left a:hover,
.topbar-right a:hover {
    opacity: 0.85;
}

.topbar-left a {
    margin-right: 25px;
}*/

/*.topbar-right a {
    margin-left: 20px;
}*/

ul.dropdown-menu.menu li a {
    color: black;
}

.topbar-right span {
    color: #fff;
    margin-left: 10px;
}

.topbar i {
    margin-right: 6px;
}

/* ===================================
   COLLEGE MAIN HEADER
=================================== */
.college-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 0; */
}

.brand-main-group {
    display: flex;
    align-items: center;
    flex: 1;
}

.college-logo img {
    width: 146px;
    height: auto;
}

/*.college-details {
    padding-left: 15px;
}*/

.hindi-title {
    font-size: 36px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 600;
}

.english-title {
    font-size: 30px;
    color: #b32222;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.university-name {
    font-size: 22px;
    color: #222;
    font-weight: 700;
    text-align: center;
}

/* AWARDS & DU LOGO GROUP */
.brand-awards-group {
    display: flex;
    align-items: center;
}

.award-box {
    margin: 0 15px;
}

    .award-box img {
        height: 90px;
        width: auto;
        object-fit: contain;
    }

.du-section {
    display: flex;
    align-items: center;
    /*gap: 12px;*/
}

.college-logo-section {
    display: flex;
    align-items: center;
    gap: 9px;
}

.du-section img {
    width: 112px;
    height: auto;
}

.du-text {
    color: #582d82;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
}

    .du-text span {
        display: block;
        font-size: 14px;
        font-weight: 500;
    }

/* ===================================
   UNIVERSITY NAVBAR BASE STYLES
=================================== */
.university-nav {
    background-color: #610404;
    border-bottom: 3px solid #6f8faf;
}

    .university-nav .nav-link {
        color: #ffffff !important;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.5px;
        padding-top: 14px;
        padding-bottom: 14px;
        transition: background-color 0.2s ease;
    }

/* Home button (Golden Highlight) */
.active-home {
    background-color: #6f8faf;
}

    .active-home .nav-link i {
        font-size: 16px;
    }

/* Dropdown Custom Arrow */
.university-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.355em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/* Dropdown Menu Style */
.university-nav .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    padding: 0;
}

.university-nav .dropdown-item {
    font-size: 13.5px;
    font-weight: 500;
    color: #333333;
    padding: 11px 20px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease;
}

    .university-nav .dropdown-item:hover {
        background-color: #610404;
        color: #ffffff !important;
    }

/* ===================================
   RESPONSIVE MEDIA QUERIES
=================================== */

/* --- 1. DESKTOP HOVER & SUB-DROPDOWN LOGIC (min-width: 992px) --- */
@media (min-width: 992px) {
    /* Fixed the bug: changed min-content to min-width */
    .university-nav .nav-item:hover > .nav-link {
        background-color: #4a0303;
    }

    /* Open main dropdown on hover */
    .university-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }

    .university-nav .dropdown-submenu {
        position: relative;
    }

        /* Position sub-menu to the right side of parent menu */
        .university-nav .dropdown-submenu .submenu {
            display: none;
            position: absolute;
            left: 100%;
            top: 0;
            margin-top: 0;
        }

        /* Open sub-menu on hover */
        .university-nav .dropdown-submenu:hover > .submenu {
            display: block;
        }
}

/* --- 2. LARGE SCREEN DOWN SCALING (max-width: 1200px) --- */
@media (max-width: 1200px) {
    .english-title {
        font-size: 26px;
    }

    .award-box img {
        height: 75px;
    }

    .du-section img {
        width: 70px;
    }
}

/* --- 3. TABLET LAYOUT TRANSFORMATION (max-width: 992px) --- */
@media (max-width: 992px) {
    /* Topbar Collapse */
    .topbar {
        height: auto;
        padding: 8px 0;
    }

    .topbar-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Header Structural Shift */
    .header-wrapper {
        flex-direction: column;
        /*text-align: center;*/
        gap: 15px;
    }

    .brand-main-group {
        flex-direction: column;
        width: 100%;
    }

    .college-details {
        padding-left: 0;
        margin-top: 10px;
    }

    .brand-awards-group {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .award-box {
        margin: 5px 10px;
    }

    /* Mobile/Tablet Menu Adjustments */
    .university-nav .navbar-nav {
        padding: 10px 0;
    }

    .university-nav .nav-link {
        padding: 10px 20px !important;
        text-align: left !important;
    }

    .active-home {
        background-color: transparent;
    }

        .active-home .nav-link {
            color: #6f8faf !important;
        }

    /* Mobile Dropdown styling stack */
    .university-nav .dropdown-menu {
        background-color: #4a0303;
        box-shadow: none;
        display: none; /* Bootstrap JS handling */
    }

        /* When active or expanded in mobile bootstrap container */
        .university-nav .dropdown-menu.show {
            display: block;
        }

    .university-nav .dropdown-item {
        color: #ffffff;
        border-bottom: 1px solid #5a0505;
        padding-left: 30px;
    }

        .university-nav .dropdown-item:hover {
            background-color: #380202;
        }

    /* Mobile Sub-Dropdown reset layout */
    .university-nav .dropdown-submenu .submenu {
        position: static;
        width: 100%;
        background-color: #310101 !important;
        box-shadow: none;
    }

        .university-nav .dropdown-submenu .submenu .dropdown-item {
            padding-left: 45px; /* Deeper indent for nested items */
        }
}

/* --- 4. SMALL MOBILE DEVICES (max-width: 576px) --- */
@media (max-width: 576px) {
    .topbar-left,
    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
    }

        .topbar-left a,
        .topbar-right a {
            margin: 4px 8px;
            font-size: 12px;
        }

    .college-logo img {
        width: 75px;
    }

    .hindi-title {
        font-size: 15px;
    }

    .english-title {
        font-size: 21px;
    }

    .university-name {
        font-size: 13px;
        text-align: start;
    }

    .award-box img {
        height: 65px;
    }

    .du-section img {
        width: 98px;
    }

    .du-text {
        font-size: 33px;
        text-align: left;
    }

        .du-text span {
            font-size: 18px;
        }
}

.nccc-1 {
    display: flex;
}


/* ===================================
   HERO CONTAINER BACKDROP
=================================== */


@media (min-width: 992px) {
    .hero-section {
        height: 520px;
        padding-bottom: 0;
    }
}

/* Left side text typography */
.hero-title {
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-divider {
    width: 120px;
    height: 4px;
    background-color: #6f8faf;
    opacity: 1;
    border: none;
    margin: 15px 0;
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 18px);
    max-width: 600px;
    font-weight: 400;
    opacity: 0.9;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.slide-bg {
    min-height: 540px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .slide-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
    }

    .slide-bg .container-fluid {
        position: relative;
        z-index: 2;
    }

.slide1 {
    background-image: url('images/image_4fb29f.jpg');
}

.slide2 {
    background-image: url('images/image_4fb29f.jpg');
}

.slide3 {
    background-image: url('images/image_4fb29f.jpg');
}

@media(min-width:992px) {
    .slide-bg {
        height: 520px;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

.custom-arrow {
    background: #002b7f;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.hero-section {
    position: relative;
    min-height: 540px;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.slide-bg {
    min-height: 540px;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .slide-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.45);
    }

    .slide-bg .container-fluid {
        position: relative;
        z-index: 2;
    }

/* Images */

/* Typography */
.hero-title {
    font-size: clamp(24px,4vw,42px);
    line-height: 1.2;
}

.hero-divider {
    width: 120px;
    height: 4px;
    background: #6f8faf;
    border: none;
    opacity: 1;
}

.hero-desc {
    font-size: clamp(14px,1.5vw,18px);
    max-width: 600px;
}

/* Arrows */
.hero-arrow-btn {
    width: auto;
    opacity: 1 !important;
    z-index: 99;
}

.carousel-control-prev {
    left: 25px;
}

.carousel-control-next {
    right: 25px;
}

.hero-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

    .hero-arrow:hover {
        background: #fff;
        color: #0b2d70;
    }

/* Dots */
.carousel-indicators {
    bottom: 20px;
}

    .carousel-indicators button {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50%;
    }

@media(max-width:768px) {

    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}


/* ==========================
   MOBILE RESPONSIVE HERO
========================== */

@media (max-width: 991px) {

    .hero-section {
        min-height: auto;
    }

    .slide-bg {
        min-height: 500px;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-divider {
        margin: 15px auto;
    }

    .hero-desc {
        font-size: 15px;
        text-align: center;
        max-width: 100%;
    }

    .slide-bg .row {
        justify-content: center;
        text-align: center;
    }

    .slide-bg .col-lg-7 {
        width: 100%;
    }

    /* Arrow Buttons */
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-control-prev {
        left: 8px;
    }

    .carousel-control-next {
        right: 8px;
    }

    /* Indicators */
    .carousel-indicators {
        bottom: 10px;
    }

        .carousel-indicators button {
            width: 10px !important;
            height: 10px !important;
        }
}

@media (max-width: 576px) {

    .slide-bg {
        min-height: 420px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }
}

@media(max-width:768px) {

    .hero-section,
    .carousel,
    .carousel-inner,
    .carousel-item,
    .slide-bg {
        height: 400px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 14px;
    }
}


/* ===================================
   NOTIFICATION COMPONENT (TABPED CARD)
=================================== */
.notice-card {
    max-width: 100%;
    height: 100%;
}

/* Bootstrap Pill Tab buttons customization */
.notice-header-tabs .nav-pills .nav-link {
    color: #495057;
    background-color: #dae2ed;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    padding: 6px 12px;
}

    .notice-header-tabs .nav-pills .nav-link.active {
        background-color: #6f8faf; /* Header blue theme matching */
        color: #fff;
    }

/* Tab Box Body */
.notice-body-container {
    /* height: 240px;  */
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 10px 15px;
}

.notice-item {
    padding: 12px 0;
    border-bottom: 1px dashed #e9ecef;
}

.notice-item-icon {
    color: #ffffff;
    background-color: #6f8faf;
    padding: 6px 9px;
    border-radius: 6px;
    font-size: 14px;
}

.notice-text a {
    font-size: 13px;
    color: #212529;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.notice-date {
    font-size: 11px;
    display: block;
}

/* Footer Action Button */
.btn-view-all {
    background-color: #610404;
    font-size: 12px;
    letter-spacing: 0.8px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    margin: 8px 0px 0px;
}

    .btn-view-all:hover {
        background-color: #4a0303;
    }

/* ===================================
   SMOOTH MARQUEE EFFECT ANIMATION
=================================== */
.marquee-vertical-box {
    overflow: hidden;
    /* height: 220px; */
    position: relative;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    animation: marqueeUp 14s linear infinite;
}

/* माउस ले जाने पर स्क्रॉल रुक जाएगा (User-Friendly) */
.marquee-vertical-box:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marqueeUp {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* New badge animation pulse */
.animate-pulse {
    animation: pulseBg 1.5s infinite;
    font-size: 9px;
    padding: 3px 5px;
}

@keyframes pulseBg {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/* ===================================
   COUNTER STATISTICS BAR
=================================== */
.stats-bar-wrapper {
    bottom: -45px;
    z-index: 5;
}

    .stats-bar-wrapper > div {
        border-bottom: 4px solid #610404;
    }

.stat-icon {
    font-size: 24px;
    color: #610404;
}

.stat-data h4 {
    font-size: 18px;
    color: #111;
}

.stat-data p {
    font-size: 12px;
    font-weight: 500;
}

/* Border separators inside desktop counter */
@media (min-width: 768px) {
    .stat-col:not(:last-child) {
        border-right: 1px solid #e9ecef;
    }

    .stat-data h4 {
        font-size: 20px;
    }
}

/* Mobile responsive fixes for counter stack */
@media (max-width: 767.98px) {
    .stats-bar-wrapper {
        position: relative !important;
        bottom: 0;
        transform: none !important;
        left: 0 !important;
        padding: 20px 15px 0 15px;
    }

    .stat-col {
        padding: 10px 0;
    }

    .hero-section {
        background-position: center left;
    }
}


ul#noticeTab {
    gap: 6px;
}


/* ===================================
   INFO & EVENTS SECTION GLOBAL
=================================== */
.text-maroon {
    color: #610404 !important;
}

.btn-maroon {
    background-color: #610404;
    color: #ffffff;
    border-radius: 4px;
    border: none;
    transition: background-color 0.2s ease;
}

    .btn-maroon:hover {
        background-color: #4a0303;
        color: #ffffff;
    }

.card-box-title {
    font-size: 16px;
    color: #111;
}

.card-desc-text {
    font-size: 12.5px;
    text-align: justify;
}

.view-all-link {
    text-decoration: none;
    font-size: 12px;
}

    .view-all-link:hover {
        text-decoration: underline;
    }

/* ===================================
   PROGRAM TILES DESIGN
=================================== */
.program-tile {
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .program-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

.tile-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.tile-title {
    font-size: 12px;
    color: #222;
    line-height: 1.3;
    padding: 4px 0px;
}

.tile-link {
    text-decoration: none;
    font-size: 11px;
    white-space: nowrap;
}

/* Program Specific Colors (As per image layout) */
.tile-pink {
    background-color: #fff2f2;
}

    .tile-pink .tile-icon {
        background-color: #610404;
    }

    .tile-pink .tile-link {
        color: #610404;
    }

.tile-green {
    background-color: #f2f7f4;
}

    .tile-green .tile-icon {
        background-color: #2e6144;
    }

    .tile-green .tile-link {
        color: #2e6144;
    }

.tile-blue {
    background-color: #f2f6fa;
}

    .tile-blue .tile-icon {
        background-color: #6f8faf;
    }

    .tile-blue .tile-link {
        color: #6f8faf;
    }

/* ===================================
   UPCOMING EVENTS DESIGN
=================================== */
.event-date-badge {
    width: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.event-month {
    background-color: #610404;
    font-size: 10px;
    padding: 2px 0;
    letter-spacing: 0.5px;
}

.event-day {
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    padding: 4px 0;
}

.event-item-title {
    font-size: 13.5px;
    line-height: 1.3;
}

/* ===================================
   BOTTOM BLUE FEATURE BAR
=================================== */
.bottom-feature-bar {
    background-color: #6f8faf; /* डार्क नेवी ब्लू थीम */
}

.feature-bar-icon {
    font-size: 18px;
    opacity: 0.9;
}

.feature-bar-text {
    font-size: 13.5px;
    letter-spacing: 0.3px;
}

/* ===================================
   RESPONSIVE MEDIA QUERIES
=================================== */

/* Tablet & Smaller Layout Fixes */
@media (max-width: 1200px) {
    /* Tablet viewport transitions */
    .program-tiles-container {
        row-gap: 10px;
    }
}

@media (max-width: 768px) {
    /* Inside Mobile grid spaces layout adjustment */
    .program-tile {
        padding: 12px 8px !important;
    }

    .tile-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .tile-title {
        font-size: 11px;
    }

    .tile-link {
        font-size: 10px;
    }

    /* Bottom Features Divider structure */
    .feature-item-col {
        border-right: none !important;
    }
}

/* Small Smartphone Screen Adjustments */
@media (max-width: 576px) {
    .card-heading-box {
        flex-direction: row;
        align-items: center;
    }

    .program-tiles-container {
        flex-direction: column;
    }

        .program-tiles-container > div {
            width: 100% !important;
        }

    .program-tile {
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 12px 15px !important;
        gap: 15px;
    }

    .tile-icon {
        margin: 0 !important;
    }

    .tile-title {
        margin-bottom: 0 !important;
        font-size: 13px;
        flex-grow: 1;
    }

    .tile-link {
        font-size: 11px;
    }

    .feature-bar-text {
        font-size: 12px;
    }
}

/* Desktop Border Separators logic */
@media (min-width: 768px) {
    .feature-item-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
}




/* ===================================
   COLLEGE NEWS MODULE GLOBAL
=================================== */
.college-news-section {
    background-color: #fafafa; /* हल्का म्यूटेड बैकग्राउंड */
}

.news-main-heading {
    font-size: 26px;
    letter-spacing: 0.5px;
    color: #111111;
}

.view-all-news {
    font-size: 14px;
    transition: color 0.2s ease;
}

    .view-all-news:hover {
        color: #610404 !important; /* थीम मैरून कलर */
    }

/* ===================================
   LEFT CARD: FEATURED NEWS DESIGN
=================================== */
.featured-news-card {
    border: 2px solid #610404; /* मैरून आउटलाइन बॉर्डर जो इमेज में है */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.img-zoom-container {
    overflow: hidden;
}

.featured-img {
    height: 228px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-news-card:hover .featured-img {
    transform: scale(1.03); /* इमेज होवर इफ़ेक्ट */
}

.badge-achievement {
    background-color: #610404;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
}

.news-date-text,
.small-card-date {
    font-size: 12px;
}

.featured-card-title {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.featured-card-desc {
    font-size: 14px;
    text-align: justify;
    /* padding-bottom: 0px; */
    margin-bottom: 0px;
}

.news-readmore-link {
    color: #610404;
    text-decoration: none;
    font-size: 13px;
}

    .news-readmore-link:hover {
        text-decoration: underline;
    }

/* ===================================
   RIGHT CARD STACK DESIGN
=================================== */
.small-news-card {
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .small-news-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-color: #e2e2e2;
    }

.small-card-img-box img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
}

.small-card-title {
    font-size: 13.5px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.small-news-card:hover .small-card-title {
    color: #610404 !important;
}

/* ===================================
   RESPONSIVE MEDIA QUERIES
=================================== */

/* Tablet View Adjustments */
@media (max-width: 992px) {
    .featured-img {
        height: 280px;
    }

    .featured-card-title {
        font-size: 18px;
    }
}

/* Mobile View Adjustments */
@media (max-width: 576px) {
    .news-main-heading {
        font-size: 20px;
    }

    .view-all-news {
        font-size: 12px;
    }

    .featured-img {
        height: 200px;
    }

    .featured-card-title {
        font-size: 16px;
    }

    .featured-card-desc {
        font-size: 13px;
    }

    /* Small row cards align items left on shift stack */
    .small-news-card {
        padding: 10px !important;
    }

    .small-card-img-box img {
        width: 75px;
        height: 55px;
    }

    .small-card-title {
        font-size: 12px;
    }
}




/* ===================================
   QUICK ACCESS SECTION STRUCTURE
=================================== */
.quick-access-section {
    background-color: #610404; /* स्क्रीनशॉट का हूबहू गहरा मैरून बेस बैकग्राउंड */
    font-family: 'Poppins', sans-serif;
}

/* लिंक्स कार्ड की डिफ़ॉल्ट वाइट आउटलाइन डिज़ाइन */
.quick-access-card {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    color: #ffffff !important;
    text-decoration: none;
    min-height: 80px;
    background-color: transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    /*width: initial;*/
    margin: 0px 40px;
}

/* आइकॉन्स बॉक्स की साइजिंग */
.quick-card-icon {
    font-size: 32px; /* क्लीन विजिबिलिटी के लिए आइकॉन साइज */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
}

/* टेक्स्ट टाइटल स्टाइल */
.quick-card-title {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

/* ===================================
   INTERACTIVE HOVER ACCENTS (EFFECTS)
=================================== */
.quick-access-card:hover {
    background-color: #000; /* होवर करने पर बैकग्राउंड पूरा व्हाइट हो जाएगा */
    color: #fff !important; /* होवर करने पर टेक्स्ट मैरून कलर का हो जाएगा */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

    .quick-access-card:hover .quick-card-icon {
        color: #fff; /* होवर करने पर आइकॉन भी मैरून हो जाएगा */
    }

/* ===================================
   RESPONSIVE DESIGN SYSTEM TWEAKS
=================================== */
@media (max-width: 991.98px) {
    .quick-access-card {
        padding: 14px 20px;
        min-height: 72px;
    }

    .quick-card-icon {
        font-size: 28px;
        width: 42px;
    }

    .quick-card-title {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .quick-access-card {
        padding: 12px 16px;
        min-height: 65px;
    }
}


/* ===================================
   ALUMNI TESTIMONIALS GLOBAL
=================================== */
.testimonials-section {
    background-color: #fbfaf6; /* सिल्क ऑफ-व्हाइट क्रीम बैकग्राउंड जो इमेज में है */
    padding-bottom: 60px !important;
}

.testimonials-main-title {
    /* इमेज जैसा क्लासी सेरिफ़ फ़ॉन्ट */
    font-size: 32px;
    letter-spacing: 0.2px;
}

/* ===================================
   TESTIMONIAL CARD STRUCTURE
=================================== */
.testimonial-card {
    border: 1px solid #f2edf0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    min-height: 290px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

/* Avatar Circle Box Layout */
.avatar-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eef2f5;
    border: 1px solid #dee2e6;
}

    .avatar-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.alumni-name {
    font-size: 17px;
    letter-spacing: 0.2px;
}

.alumni-designation {
    font-size: 12px;
}

.testimonial-quote {
    font-size: 13px;
    color: #4f5e71 !important;
    text-align: center;
    font-style: normal;
}









/* ===================================
   SLIDER ARROW & DOTS INDICATORS
=================================== */

/* ===================================
   UPDATED SLIDER ARROWS (LEFT & RIGHT)
=================================== */
.custom-testimonial-btn {
    opacity: 1 !important;
    width: 45px !important;
    height: 45px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.2s ease !important;
}

    /* लेफ्ट बटन की पोजीशन */
    .custom-testimonial-btn.left-btn {
        left: 25px !important;
        right: auto !important;
    }

    /* राइट बटन की पोजीशन */
    .custom-testimonial-btn.right-btn {
        right: 25px !important;
        left: auto !important;
    }

/* आइकॉन कलर (थीम मैरून) */
.custom-arrow-icon {
    color: #610404;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* होवर इफ़ेक्ट (Hover State) */
.custom-testimonial-btn:hover {
    background: #610404 !important;
}

    .custom-testimonial-btn:hover .custom-arrow-icon {
        color: #ffffff;
    }

/* Responsive Fix for Tablets */
@media (max-width: 1199.98px) {
    .custom-testimonial-btn.left-btn {
        left: 5px !important;
    }

    .custom-testimonial-btn.right-btn {
        right: 5px !important;
    }
}

/* Responsive Fix for Mobile Screens */
@media (max-width: 767.98px) {
    /* मोबाइल पर एरो छिप जाएंगे क्योंकि वहां यूजर उंगली से स्वाइप (Touch Swipe) कर सकता है */
    .custom-testimonial-btn {
        display: none !important;
    }
}

/* ===================================
   VOICE OF ARSD GENERAL CONTAINER
=================================== */
.voice-arsd-section {
    background-color: #fcfbfa; /* ऑफ-व्हाइट लाइट क्लीन स्मूथ बैकग्राउंड */
    font-family: 'Poppins', sans-serif;
}

/* Big Aesthetic Quote Watermark on Top Left */
.bg-watermark-quote {
    position: absolute;
    top: -40px;
    left: 40px;
    font-size: 240px;
    color: #f1eae5; /* बेहद हल्का वॉटरमार्क इफ़ेक्ट */
    line-height: 1;
    user-select: none;
    z-index: 1;
}

/* Typography Headings */
.sub-headline {
    font-size: 13px;
    letter-spacing: 2px;
    color: #990011 !important; /* थीम मैरून */
}

.main-headline {
    font-size: 38px;
    color: #1a1a1a;
}

.text-maroon {
    color: #990011 !important;
}

.header-divider-line {
    width: 50px;
    height: 3px;
    background-color: #990011;
    border-radius: 2px;
}

.section-lead-text {
    font-size: 14.5px;
    line-height: 1.6;
}

/* ===================================
   PREMIUM TESTIMONIAL CARD
=================================== */
.premium-alumni-card {
    border-radius: 16px; /* राउंडेड स्मूथ कॉर्नर्स */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* सॉफ्ट एलिट शैडो */
    border: 1px solid rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    .premium-alumni-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(153, 0, 17, 0.07); /* हल्का मैरून टिंट शैडो होवर पर */
    }

.card-quote-accent {
    font-size: 45px;
    line-height: 0.6;
    margin-top: 10px;
}

.alumni-speech-text {
    font-size: 13.5px;
    line-height: 1.7;
    text-align: justify;
    color: #4a5568 !important;
}

/* Profile Footer Row inside Card */
.border-top-dash {
    border-top: 1px dashed #e2e8f0; /* डैश्ड डिवाइडर लाइन */
}

.profile-avatar {
    width: 115px;
    height: 115px;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.profile-name {
    font-size: 14px;
    letter-spacing: 0.2px;
}

.profile-tag {
    font-size: 11px;
    letter-spacing: 0.2px;
    display: block;
}

/* ===================================
   SLIDER ARROWS & DOTS SYSTEM
=================================== */
.custom-voice-btn {
    width: 40px !important;
    height: 40px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    top: 45% !important;
    opacity: 1 !important;
    transition: all 0.2s ease !important;
}

    .custom-voice-btn.left {
        left: -15px !important;
    }

    .custom-voice-btn.right {
        right: -15px !important;
    }

.arrow-icon-svg {
    color: #4a5568;
    font-size: 13px;
}

.custom-voice-btn:hover {
    background: #990011 !important;
}

    .custom-voice-btn:hover .arrow-icon-svg {
        color: #ffffff;
    }

/* Indicators Hook */
.voice-indicators {
    position: relative !important;
    margin-top: 35px !important;
}

    .voice-indicators button {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important; /* परफेक्टली सर्कुलर डॉट्स */
        background-color: #cbd5e1 !important;
        border: none !important;
        margin: 0 5px !important;
        opacity: 1 !important;
        transition: all 0.2s ease !important;
    }

        .voice-indicators button.active {
            background-color: #990011 !important; /* एक्टिव होने पर मैरून */
            transform: scale(1.3);
        }

/* ===================================
   BOTTOM SIGNATURE PHRASE
=================================== */
.signature-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.sig-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #990011, transparent);
}

.signature-slogan {
    font-size: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.college-mini-badge {
    font-size: 14px;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE LAYOUT FIXES
=================================== */
@media (max-width: 767.98px) {
    .main-headline {
        font-size: 28px;
    }

    .bg-watermark-quote {
        display: none;
    }

    .custom-voice-btn {
        display: none !important;
    }
    /* मोबाइल पर जेस्चर स्वाइप काम करेगा */
    .signature-slogan {
        font-size: 13px;
    }
}
/* ===================================
   FIXED INDICATORS DOTS BAR
=================================== */
.custom-indicators {
    position: relative !important;
    margin-top: 40px !important;
    bottom: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    z-index: 15 !important; /* कार्ड्स के ऊपर दिखाने के लिए */
}

    .custom-indicators button {
        width: 32px !important;
        height: 6px !important;
        background-color: #c4b5a9 !important; /* अन-एक्टिव डॉट्स का डार्क कलर ताकि क्रीम बैकग्राउंड पर दिखे */
        border: none !important;
        border-top: 0px solid transparent !important; /* डिफ़ॉल्ट बूटस्ट्रैप क्लिक बॉर्डर हटाना */
        border-bottom: 0px solid transparent !important;
        border-radius: 4px !important;
        opacity: 0.6 !important;
        transition: all 0.25s ease !important;
    }

        /* जब डॉट एक्टिव हो (Active State) */
        .custom-indicators button.active {
            background-color: #610404 !important; /* थीम मैरून कलर */
            opacity: 1 !important;
            width: 45px !important; /* एक्टिव होने पर थोड़ा लंबा बार */
        }
















/* ===================================
   COLLEGE FOOTER SYSTEM
=================================== */
/* ===================================
   GOVERNMENT BRANDING BAR
=================================== */
/*.gov-logo-img {
    max-height: 85px; 
    width: auto;
    object-fit: contain;
}*/

/* ===================================
   OFFICIAL ARSD MATCHING FOOTER
=================================== */
.official-college-footer {
    background-color: #610404; /* हूबहू स्क्रीनशॉट का सटीक गहरा मैरून बेस कलर */
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
}

/* Typography Details */
.hindi-title-1 {
    font-size: 15px;
    letter-spacing: 0.2px;
}

.english-title-1 {
    font-size: 13.5px;
}

.university-sub-tag {
    font-size: 11px;
    display: block;
}

/*.footer-college-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}*/

.footer-brief-desc {
    font-size: 13px;
    color: #f5f5f5;
    text-align: justify;
}

/* Column Headlines */
.footer-col-headline {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #f7c353 !important; /* स्क्रीनशॉट का गोल्डन-येलो टेक्स्ट शेड */
}

/* Links List Handler */
.links-stack-list li {
    margin-bottom: 9px;
}

    .links-stack-list li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 13.5px;
        transition: opacity 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

        /* Hover Effects on links */
        .links-stack-list li a:hover {
            opacity: 0.8;
            padding-left: 3px;
            color: #f7c353 !important;
        }

/* Contact Block Layout */
.contact-icon {
    font-size: 14px;
    color: #f7c353;
    margin-top: 2px;
}

.contact-info-text {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
}

/* ===================================
   CIRCULAR SOCIAL LINKS
=================================== */
.social-circle-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.6); /* स्क्रीनशॉट जैसी थिन वाइट आउटलाइन */
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .social-circle-link:hover {
        background-color: #ffffff;
        color: #990011 !important; /* होवर पर रिवर्स मैरून थीम */
        transform: translateY(-2px);
    }

/* Divider & Bottom Section */
.footer-divider-line {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.copyright-text {
    font-size: 12.5px;
}

/* ===================================
   FLOATING SCROLL TO TOP ARROW BUTTON
=================================== */
.scroll-to-top-btn {
    width: 42px;
    height: 42px;
    background-color: #ffffff; /* सफ़ेद गोल बटन */
    color: #990011 !important; /* अंदर मैरून एरो आइकॉन */
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

    .scroll-to-top-btn:hover {
        background-color: #f7c353;
        color: #990011 !important;
        transform: scale(1.05);
    }

/* ===================================
   RESPONSIVE DESIGN SYSTEM MEDIA QUERIES
=================================== */
@media (max-width: 991.98px) {
    .gov-logo-img {
        max-height: 65px;
    }
}

@media (max-width: 767.98px) {
    .footer-col-headline {
        margin-top: 15px;
    }

    /* मोबाइल पर एरो बटन को थोड़ा ऊपर एडजस्ट करने के लिए */
    .scroll-to-top-btn {
        position: relative !important;
        margin: 15px auto 0 auto !important;
        display: flex !important;
    }
}
/* ==========================================================================
   NEW 4-COLUMN COLLEGE NEWS SECTION STYLES
   ========================================================================== */
.college-news-grid-section {
    font-family: 'Poppins', sans-serif;
}

/* Section Main Heading Title */
.news-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.5px;
}

/* Right side Link decoration */
.view-more-news-link {
    color: #990011; /* Signature Maroon Accent */
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

    .view-more-news-link:hover {
        color: #77000d;
        border-bottom-color: #77000d;
    }

/* Card Wrapper Setup */
.news-card-wrapper {
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: transform 0.2s ease;
}

    .news-card-wrapper:hover {
        transform: translateY(-2px); /* Subtle hover lift effect */
    }

/* Image styling inside card */
.news-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 4px; /* Crisp minimal corners */
}

    .news-image-container img {
        height: 210px;
        object-fit: cover; /* Ensures uniform image boxes regardless of original ratio */
        transition: transform 0.3s ease;
    }

/* Title Headline Text inside Card */
.news-card-title {
    font-size: 15px;
    line-height: 1.4;
    color: #222222;
    margin-bottom: 6px;
    /* Multiline Ellipsis - limits title to 3 lines nicely if text is too long */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Description Details */
.news-sub-institution {
    color: #666666;
    font-weight: 500;
}

.news-short-desc {
    color: #555555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Date Stamp Container */
.news-date-footer {
    font-size: 12px;
    color: #777777;
    margin-top: auto; /* Pushes date to bottom if title text heights vary */
}






.testimonials-section {
    position: relative;
    overflow: hidden;
    background: #faf8f8;
    padding: 80px 0;
}

.testimonials-section {
    width: 100%;
    height: 100%;
    background-image: url('images/arsd-college.jpg');
    background-repeat: no-repeat;
    background-position: center;
    /*background-size:cover;*/
}

    /* Background College Image */
    .testimonials-section::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 260px;
        background: url('images/arsd-college.jpg') center bottom no-repeat;
        background-size: cover;
        opacity: .12;
        z-index: 0;
    }

/* White Overlay */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(255,255,255,.96), rgba(255,255,255,.88) );
    z-index: 1;
}

.testimonials-main-title {
    font-size: 60px;
    font-weight: 700;
    color: #222;
}

    .testimonials-main-title span {
        color: #8b0017;
    }

.voice-title {
    display: inline-block;
    color: #8b0017;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    position: relative;
}

    .voice-title::before,
    .voice-title::after {
        content: "";
        width: 90px;
        height: 1px;
        background: #c9a6ad;
        position: absolute;
        top: 50%;
    }

    .voice-title::before {
        right: 100%;
        margin-right: 20px;
    }

    .voice-title::after {
        left: 100%;
        margin-left: 20px;
    }

.subtitle {
    max-width: 750px;
    margin: 15px auto 0;
    color: #666;
    font-size: 22px;
    line-height: 1.6;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
    }

@media(max-width:768px) {

    .testimonials-main-title {
        font-size: 38px;
    }

    .subtitle {
        font-size: 16px;
    }

    .testimonials-section::before {
        height: 180px;
    }
}






/* Principal Image Styling with Flex Layout Fix */
.image-principal {
    width: 95px; /* इमेज का साइज यहाँ से कंट्रोल कर सकते हैं */
    height: auto;
    object-fit: cover;
    border: 1px solid #dee2e6;
    display: block;
}

/* मोबाइल स्क्रीन्स पर अगर जगह कम हो तो इमेज और टेक्स्ट को ऊपर-नीचे करने के लिए */
@media (max-width: 576px) {
    .news-content-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-principal {
        margin-bottom: 12px;
    }
}






/* ==========================================================================
   COLLEGE INTEGRATED SOCIAL MEDIA FEED SECTION
   ========================================================================== */
.college-social-media-section {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

/* Titles and Headers */
.social-section-title {
    font-size: 28px;
    letter-spacing: 1px;
    color: #610404;
}

    .social-section-title::before, .social-section-title::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40px;
        height: 1px;
        background-color: #ccc;
    }

    .social-section-title::before {
        left: -55px;
    }

    .social-section-title::after {
        right: -55px;
    }

.small-title {
    font-size: 14px;
}

.extra-small {
    font-size: 11px;
}

.btn-extra-small {
    font-size: 11px;
    padding: 3px 12px;
}

/* Dynamic Floating Icons on Top of Cards */
.social-feed-card {
    position: relative;
    border-top-width: 4px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .social-feed-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

.twitter-card {
    border-top-color: #1da1f2 !important;
}

.instagram-card {
    border-top-color: #e1306c !important;
}

.youtube-card {
    border-top-color: #ff0000 !important;
}

/* Image Grid Fixes for Twitter Box */
.twitter-images-grid img {
    height: 85px;
}

.object-fit-cover {
    object-fit: cover;
}

/* Pagination Dots */
.dot {
    width: 6px;
    height: 6px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
}

    .dot.active {
        background-color: #007bff;
    }

.cursor-pointer {
    cursor: pointer;
}

/* Specific Feed Bottom Custom Buttons Styles */
.btn-twitter-action {
    background-color: #1da1f2;
}

    .btn-twitter-action:hover {
        background-color: #0d8bd9;
    }

.btn-insta-follow {
    background-color: #d6249f;
}

.btn-instagram-action {
    background: linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #d7269b 90%);
}

    .btn-instagram-action:hover {
        opacity: 0.95;
    }

.btn-youtube-action {
    background-color: #ff0000;
}

    .btn-youtube-action:hover {
        background-color: #cc0000;
    }

.youtube-play-trigger i {
    transition: scale 0.2s ease;
}

.youtube-video-thumb:hover .youtube-play-trigger i {
    scale: 1.1;
}

/* Tablet Layout Tweaks */
@media (max-width: 991px) {
    .social-section-title {
        font-size: 24px;
    }

        .social-section-title::before, .social-section-title::after {
            display: none;
        }
}

/* ==========================================================================
   SOCIAL MINI ICONS EXACT BRAND COLORS
   ========================================================================== */
.social-mini-icons .mini-icon {
    font-size: 24px; /* आइकॉन का साइज यहाँ से बदल सकते हैं */
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

    /* Hover Effect: माउस ले जाने पर आइकॉन थोड़ा बड़ा होगा */
    .social-mini-icons .mini-icon:hover {
        transform: scale(1.15);
        opacity: 0.9;
    }

/* Twitter Original Brand Color */
.icon-twitter i {
    color: #1DA1F2 !important;
}

/* YouTube Original Brand Color */
.icon-youtube i {
    color: #FF0000 !important;
}

/* Instagram Original Gradient Brand Color */
.icon-instagram i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae1 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


p.naac-1 {
    padding: 0px;
    margin: 0px;
    text-align: center;
    color: #610404;
    font-size: 16px;
    font-weight: 700;
}
/* ==========================================================================
   COLLEGE EXCELLENCE & OVERLAPPING IMAGES ECOSYSTEM
   ========================================================================== */
.college-excellence-section {
    /* हेडिंग्स के लिए क्लासिक लुक */
    overflow: hidden;
}

/* Master Grid Structure Box for Left Column */
.excellence-image-container {
    padding-bottom: 80px; /* नीचे वाली इमेज को स्पेस देने के लिए */
}

/* Building Box Positioning (Top Left) */
.main-building-img-box {
    width: 80%;
    position: relative;
    z-index: 1;
}

    .main-building-img-box img {
        height: 380px;
        object-fit: cover;
    }

/* Lawn Box Positioning (Bottom Right Overlap) */
.lawn-img-box {
    width: 50%;
    position: absolute;
    right: 5%;
    bottom: 0;
    z-index: 2;
}

    .lawn-img-box img {
        height: 280px;
        object-fit: cover;
    }

/* --------------------------------------------------------------------------
   DECORATIVE STICKER CIRCLE BADGE (Spinning Typography Wheel)
   -------------------------------------------------------------------------- */
.rotating-badge-wrapper {
    top: 52%;
    left: 75%;
    z-index: 3;
}

.circular-badge-bg {
    width: 110px;
    height: 110px;
    background-color: #800020; /* मैरून विंटेज सर्कल */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.badge-arrow {
    color: #ffffff;
    font-size: 16px;
    position: absolute;
    z-index: 4;
}

.badge-spinning-text {
    width: 100%;
    height: 100%;
    animation: spinTextCircle 20s linear infinite; /* घूमता हुआ टेक्स्ट एनीमेशन */
}

.badge-text-fill {
    fill: #ffffff;
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

@keyframes spinTextCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------------------
   RIGHT SIDE TYPOGRAPHY & TEXT SETTING
   -------------------------------------------------------------------------- */
.excellence-main-title {
    font-size: 38px;
    line-height: 1.25;
    color: #1a1a1a;
}

    .excellence-main-title strong {
        font-weight: 700;
    }

.excellence-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* Beautiful Transparent Hollow Stroke Text Styling */
.establishment-year-hollow {
    font-size: 76px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px #b5b5b5; /* पतली ग्रे आउटलाइन */
    letter-spacing: 1px;
}

/* Custom Bottom CTA Anchor Indicator Link */
.accreditation-cta-btn {
    color: #800020 !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border-bottom: 1.5px solid #800020; /* मैरून अंडरलाइन */
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

    .accreditation-cta-btn:hover {
        opacity: 0.85;
        padding-left: 3px;
    }

/* ==========================================================================
   RESPONSIVE LAYOUT FOR MOBILE AND TABLETS
   ========================================================================== */
@media (max-width: 991px) {
    .excellence-main-title {
        font-size: 30px;
    }

    .establishment-year-hollow {
        font-size: 55px;
    }
}

@media (max-width: 576px) {
    .main-building-img-box {
        width: 100%;
    }

    .lawn-img-box {
        display: none;
    }
    /* छोटी स्क्रीन पर ओवरलैपिंग इमेजेस ब्रेक न हों इसलिए एक इमेज छुपा दी गई है */
    .excellence-image-container {
        padding-bottom: 0px;
    }

    .establishment-year-hollow {
        font-size: 48px;
    }
}




/*sdsad*/


.custom-card-1 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    padding: 35px 30px;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

/* --- LEFT CARD: Principal's Desk --- */
.principal-header {
    background-color: #0a2240;
    color: #fff;
    padding: 10px 25px 10px 15px;
    border-radius: 25px 0px 25px 0px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    position: absolute;
    top: 0;
    left: 0;
}

.card-left-wrapper {
    padding-top: 40px; /* Header ke liye space */
}

.principal-header .icon-box {
    width: 35px;
    height: 35px;
    border: 1px solid #d2a655;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.principal-header i {
    color: #d2a655;
    font-size: 16px;
}

.principal-header h3 {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.profile-container {
    border: 2px solid #d2a655;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    padding: 6px;
}

.profile-inner {
    border-radius: 15px;
    overflow: hidden;
}

    .profile-inner img {
        width: 100%;
        height: 275px;
        object-fit: cover;
    }

.profile-info {
    background-color: #0a2240;
    color: #fff;
    padding: 10px 5px;
    text-align: center;
}

    .profile-info h5 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .profile-info p {
        font-size: 11px;
        margin-bottom: 0;
        color: #b5c4d6;
    }

.quote-mark {
    color: #e8c487;
    font-size: 45px;
    font-family: 'Merriweather', serif;
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.7;
}

.card-text {
    color: #444444;
    font-size: 13.5px;
    line-height: 1.7;
    text-align: justify;
}

.gold-divider {
    border: none;
    height: 1px;
    background: #d2a655;
    width: 40%;
    margin: 20px 0;
    opacity: 0.6;
}

.btn-blue {
    background-color: #0a2240;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    letter-spacing: 0.5px;
}

/* --- RIGHT CARD: About College --- */
.about-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.about-icon {
    background-color: #610404;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px #610404;
}

.about-header h3 {
    color: #610404;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.btn-maroon {
    background-color: #610404;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    letter-spacing: 0.5px;
}

/* Diagonal Styling with Borders like Image */
.image-side-container {
    position: relative;
    height: 100%;
    min-height: 320px;
}

.diagonal-border-line {
    position: absolute;
    top: 0;
    left: 5px;
    width: 100%;
    height: 350px;
    background: #610404;
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.diagonal-img-wrapper {
    position: absolute;
    top: 0;
    left: 12px;
    width: 100%;
    height: 100%;
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
}

    .diagonal-img-wrapper img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

/* Responsive Fixes */
@media (max-width: 768px) {
    .principal-header {
        position: relative;
        margin-bottom: 20px;
    }

    .card-left-wrapper {
        padding-top: 0;
    }

    .image-side-container {
        min-height: 250px;
        margin-top: 25px;
    }

    .diagonal-border-line, .diagonal-img-wrapper {
        clip-path: none;
        left: 0;
    }
}

.program-tiles-container {
    margin-top: 18px;
}

.Program {
    padding-top: 10px;
}

.Program-1 {
    /* padding-top: 20px; */
}


.carousel-item {
    display: none;
}

    .carousel-item.active {
        display: block;
    }









/* DEEEEPARMENT */


.Program-1 {
}

/*DEPARMENT*/

/* Sidebar */

.department-sidebar {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
}

.department-title {
    background: #610404;
    color: #fff;
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 600;
}

.department-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .department-menu li {
        border-bottom: 1px solid #ececec;
    }

        .department-menu li:last-child {
            border-bottom: none;
        }

        .department-menu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: .3s;
        }

            .department-menu li a:hover {
                background: #f7f8fd;
                color: #610404;
                padding-left: 25px;
            }

        .department-menu li.active a {
            background: #e9edff;
            border-left: 4px solid #610404;
            color: #610404;
            font-weight: 600;
        }

/* Content */
.dept-vm-main-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 12px;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0,0,0,.10);
}

.dept-vm-thumb-image {
    width: 100%;
    height: 205px;
    object-fit: cover;
    border-radius: 12px;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0,0,0,.10);
}

    .dept-vm-main-image:hover,
    .dept-vm-thumb-image:hover {
        transform: scale(1.03);
    }

.department-content {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
}

.department-heading {
    font-size: 25px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

    .department-heading::after {
        content: '';
        width: 70px;
        height: 4px;
        background: #610404;
        position: absolute;
        left: 0;
        bottom: -2px;
    }

/* Cards */

.content-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.content-card-title {
    padding: 12px 18px;
    font-size: 22px;
    font-weight: 600;
}

    .content-card-title i {
        margin-right: 10px;
    }

.vision-title {
    background: #eef1ff;
    color: #610404;
}

.mission-title {
    background: #eef8f1;
    color: #610404;
}

.content-card-body {
    padding: 20px;
}

    .content-card-body p {
        line-height: 1.9;
        color: #444;
        text-align: justify;
        margin-bottom: 15px;
    }

/* Responsive */

@media(max-width:991px) {

    .department-heading {
        font-size: 28px;
    }

    .department-content {
        padding: 20px;
    }
}


.btn-linkedin-action {
    background: #0A66C2;
}

.icon-linkedin {
    color: #0A66C2;
}

.btn-linkedin-action:hover {
    background: #0A66C2;
}

.tile-icon {
    background: #072e07;
}

.tile-link {
    text-decoration: none;
    font-size: 11px;
    white-space: nowrap;
    color: #072e07;
}

.tile-icon {
    background: #072e07;
}

.tile-blue-1 {
    background: #52ff5269;
}






/* top */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

    .top-link:hover {
        color: #ffc107;
    }

.dropdown-menu {
    border: 0;
    border-radius: 8px;
    min-width: 220px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
}

    .dropdown-item:hover {
        background: #610404;
    }


ul.dropdown-menu.menu li a {
    color: black;
}


    ul.dropdown-menu.menu li a:hover {
        color: #fff !important;
    }


/* Hover par dropdown open */
.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}


.rank-img img {
    height: 94px;
}


/* top */



.breadcrumb a {
    color: #003366;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    margin-right: 8px;
    transition: .3s;
}

    .social-icons a:nth-child(1) {
        background: #1877f2;
    }

    .social-icons a:nth-child(2) {
        background: #e1306c;
    }

    .social-icons a:nth-child(3) {
        background: #0a66c2;
    }

    .social-icons a:nth-child(4) {
        background: #1da1f2;
    }

    .social-icons a:nth-child(5) {
        background: #25d366;
    }

    .social-icons a:hover {
        transform: translateY(-3px);
    }

.main-title {
    color: #610404;
    font-size: 30px;
    font-weight: bold;
}

.language a {
    color: #610404;
    font-weight: 600;
    margin: 0 8px;
}

.officer-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    overflow: hidden;
    transition: .3s;
    height: 100%;
}

    .officer-card:hover {
        transform: translateY(-5px);
    }

.card-heading {
    background: #610404;
    color: #fff;
    text-align: center;
    padding: 12px;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}

.card-body {
    padding: 35px;
    text-align: center;
}

    .card-body h5 {
        color: #610404;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .card-body p {
        line-height: 30px;
        font-size: 17px;
    }

.sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .sidebar h4 {
        color: #610404;
        font-size: 24px;
        margin-bottom: 25px;
        border-bottom: 2px solid #ddd;
        padding-bottom: 15px;
    }

    .sidebar ul {
        list-style: none;
        padding: 0;
    }

    .sidebar li {
        margin-bottom: 10px;
    }

        .sidebar li a {
            display: block;
            padding: 12px 15px;
            color: #333;
            transition: .3s;
        }

        .sidebar li a {
            background: #610404;
            color: #fff;
            font-weight: bold;
        }

            .sidebar li a:hover {
                background: #610404;
                color: #fff;
            }

@media(max-width:991px) {

    .sidebar {
        margin-top: 40px;
    }

    .main-title {
        font-size: 24px;
    }

    .card-body {
        padding: 25px;
    }
}



.career-section {
    background: #fff;
}

.social-icons a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 5px;
    text-decoration: none;
    transition: .3s;
}

    .social-icons a:hover {
        transform: translateY(-3px);
    }

.facebook {
    background: #1877F2;
}

.instagram {
    background: #E4405F;
}

.linkedin {
    background: #0A66C2;
}

.twitter {
    background: #1DA1F2;
}

.whatsapp {
    background: #25D366;
}

.career-table {
    border: 1px solid #ddd;
}

    .career-table thead th {
        background: #610404;
        color: #fff;
        text-align: center;
        padding: 11px;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #ffffff40;
    }

    .career-table tbody td {
        padding: 18px;
        font-size: 18px;
        vertical-align: middle;
        border: 1px solid #ddd;
        line-height: 32px;
    }

    .career-table tbody tr:hover {
        background: #f8f9ff;
    }

.view-link {
    color: #610404;
    text-decoration: none;
    font-weight: 600;
}

    .view-link:hover {
        color: #d31d1d;
    }

@media(max-width:768px) {

    .career-table thead th {
        font-size: 16px;
        padding: 12px;
    }

    .career-table tbody td {
        font-size: 15px;
        padding: 12px;
        line-height: 24px;
    }
}



.roster-section {
    background: #fff;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 4px;
    text-decoration: none;
    transition: .3s;
}

    .social-icons a:hover {
        transform: translateY(-3px);
    }

.facebook {
    background: #1877F2;
}

.instagram {
    background: #E4405F;
}

.linkedin {
    background: #0077B5;
}

.twitter {
    background: #1DA1F2;
}

.whatsapp {
    background: #25D366;
}

.roster-table {
    border: 1px solid #d8d8d8;
}

    .roster-table td {
        padding: 18px 20px;
        font-size: 20px;
        border: 1px solid #d8d8d8;
        vertical-align: middle;
    }

        .roster-table td:first-child {
            width: 78%;
        }

        .roster-table td:last-child {
            width: 22%;
        }

    .roster-table a {
        color: #610404;
        text-decoration: none;
        font-weight: 500;
    }

    .roster-table tr:hover {
        background: #f8f9ff;
    }

    .roster-table a:hover {
        color: #d60000;
    }

@media(max-width:768px) {

    .roster-table td {
        font-size: 16px;
        padding: 14px;
    }
}



.contact-area {
    padding: 40px 0;
}

.contact-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #61040429;
    color: #610404;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-top: 15px;
    color: #610404;
}

.info-box {
    background: linear-gradient(135deg,#610404,#610404);
    color: #fff;
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 20px;
    text-align: center;
    transition: .4s;
}

    .info-box:hover {
        transform: translateY(-8px);
    }

    .info-box i {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .info-box h5 {
        margin-bottom: 12px;
        font-weight: 600;
    }

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .contact-form h3 {
        margin-bottom: 25px;
        color: #610404;
        font-weight: 700;
    }

.form-control {
    border: none;
    background: #f5f7fb;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: none;
}

    .form-control:focus {
        background: #fff;
        border: 2px solid #610404;
        box-shadow: none;
    }

.contact-btn {
    background: #610404;
    color: #fff;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
}

    .contact-btn:hover {
        background: #610404;
        color: #fff;
    }

.map-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(213, 7, 7, 0.08);
}

    .map-box iframe {
        width: 100%;
        height: 420px;
        border: 0;
    }

@media(max-width:768px) {

    .contact-title {
        font-size: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .info-box {
        padding: 25px;
    }
}

.info-box p {
    margin: 0px;
}




.footer-bottom-menu {
    padding: 0px;
    margin: 0px;
}

    .footer-bottom-menu a {
        color: #db9f44;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        padding: 0 10px;
        transition: .3s;
    }

    .footer-bottom-menu span {
        color: #ffffff;
        font-size: 18px;
    }

    .footer-bottom-menu a:hover {
        color: #ffc107;
    }

@media (max-width:768px) {

    .footer-bottom-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

        .footer-bottom-menu span {
            display: none;
        }

        .footer-bottom-menu a {
            padding: 5px 10px;
            font-size: 16px;
        }
}



.map-frame {
    width: 100%;
    height: 100%;
    min-height: 500px; /* Change as needed */
    border: 0;
    display: block;
}


.wellbeing-section {
    background: #f7f9fc;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #610404;
}

.section-heading p {
    color: #666;
}

.badge-title {
    background: #e9f2ff;
    color: #610404;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.content-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .content-card h3 {
        color: #610404;
        margin-bottom: 20px;
    }

.health-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .health-card:hover {
        transform: translateY(-8px);
    }

.card-icon {
    width: 75px;
    height: 75px;
    background: #610404;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

    .card-icon i {
        font-size: 32px;
    }

.health-card h3 {
    color: #610404;
    margin-bottom: 20px;
}

.health-card h5 {
    color: #610404;
    margin-top: 20px;
}

.health-card p {
    line-height: 30px;
    text-align: justify;
}

.contact-banner {
    background: linear-gradient(135deg,#610404,#610404);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
}



.contact-btn {
    background: #610404;
    color: #fff;
}

@media(max-width:768px) {

    .section-heading h2 {
        font-size: 30px;
    }

    .content-card,
    .health-card {
        padding: 25px;
    }

    .contact-banner {
        text-align: center;
    }

    .contact-btn {
        display: inline-block;
        margin-top: 20px;
    }
}

.program-tiles-container {
    margin-top: 18px;
    height: 248px;
}




.campus-highlights-area {
    background: #50627347;
    padding: 50px 0;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 25px 15px;
    border-radius: 15px;
    transition: 0.4s ease;
    height: 100%;
}

    .highlight-item i {
        font-size: 70px;
        color: #610404;
        margin-bottom: 20px;
        transition: 0.4s;
    }

    .highlight-item h6 {
        color: #610404;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.5;
        margin: 0;
    }

.highlight-item {
    background: #610404;
    color: #fff;
    box-shadow: 0 15px 35px rgba(97,4,4,.25);
}

    .highlight-item i,
    .highlight-item h6 {
        color: #fff;
        background: #610404;
        box-shadow: 0 15px 35px rgba(97,4,4,.25);
    }

@media(max-width:991px) {

    .highlight-item i {
        font-size: 55px;
    }

    .highlight-item h6 {
        font-size: 18px;
    }
}

@media(max-width:576px) {

    .highlight-item {
        padding: 18px 10px;
    }

        .highlight-item i {
            font-size: 42px;
        }

        .highlight-item h6 {
            font-size: 15px;
        }
}


h2.admission {
    font-size: 20px;
    font-weight: 700;
    color: #610404;
    border-bottom: 3px solid #d59a36;
    width: fit-content;
}
