* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

section[id] {
    scroll-margin-top: 100px;
}

/* #about-festival,
#about-pipa,
#president-desk,
#festival-countdown-section {
    scroll-margin-top: 100px;
} */

@font-face {
    font-family: 'Montserrat';
    src: url('../../fonts/Montserrat-Regular.ttf') format('truetype');
    /* font-weight: 400; */
}

@font-face {
    font-family: 'Montserrat-bold';
    src: url('../../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Poppins-regular';
    src: url('../../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../../fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Nunito-Bold';
    src: url('../../fonts/Nunito-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Prompt';
    src: url('../../fonts/Prompt-SemiBold.ttf') format('truetype');
}

:root {
    --font-montserrat: 'Montserrat', 'Inter', sans-serif;
    --font-poppins: 'Poppins-regular', 'Inter', sans-serif;
    --font-poppins-bold: 'Poppins-Bold', 'Inter', sans-serif;
    --font-poppins-black: 'Poppins-Black', 'Inter', sans-serif;
    --font-montserrat-bold: 'Montserrat-bold', 'Inter', sans-serif;
    --font-libre-franklin-bold: 'LibreFranklin-Bold', 'Inter', sans-serif;
    --font-libre-franklin-semi-bold: 'LibreFranklin-SemiBold', 'Inter', sans-serif;
    --font-nunito-bold: 'Nunito-Bold', 'Inter', sans-serif;
    --font-prompt: 'Prompt', 'Inter', sans-serif;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-poppins);

}

/* utilities section */

::selection {
    background: #ffe066;
    color: #232536;
}

::-moz-selection {
    background: #ffe066;
    color: #232536;
}

img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}


nav {
    font-family: var(--font-prompt);
}

/* navbar */
.navbar-nav .nav-link {
    font-size: 1.05rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.2s;
    font-weight: 800;
}

.navbar-nav .nav-link::after {
    content: "";
    display: inline-block;
    height: 2.5px;
    width: 0;
    background: var(--color-secondary, #ffb50a);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), background 0.3s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    vertical-align: middle;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar {
    background: #003e6d !important;
    transition: background 0.36s cubic-bezier(.33, 1.16, .67, .98);
}

.navbar.scrolled {
    background: #003e6d !important;
}

.navbar,
.navbar .navbar-nav .nav-link,
.navbar .navbar-brand {
    color: #fff !important;
}


.navbar .nav-link:focus,
.navbar .nav-link:hover {
    color: #ffd249 !important;
    /* or your highlight color */
}



/* Smooth Navbar Collapse Animation */
.navbar-collapse {
    transition: all 0.35s ease-in-out;
}

.navbar-collapse.collapsing {
    transition: height 0.35s ease-in-out;
}

/* Optional: Add slight fade effect during navigation */
.nav-link.navigating {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

/* video section */

/* .video-banner {
    width: 100%;
    min-height: 45vw;
    max-height: 95vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.video-banner .video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 450px;
    max-height: 100vh;
    aspect-ratio: 16 / 9;
    display: block;
} */


.video-banner {
    width: 100%;
    width: 100%;
    min-height: 50vw;
    max-height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    overflow: hidden;
}

.video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.video-banner>* {
    position: relative;
    z-index: 1;
}

/* Hero Content Styles */
.hero-content {
    color: #fff;
    max-width: 800px;
}

/* Hero Badge */
.hero-badge {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge-date,
.badge-location {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Title */
.hero-title {
    /* font-family: var(--font-montserrat-bold); */
    font-family: var(--font-prompt);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    /* letter-spacing: -8px; */

    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    margin-bottom: 1.5rem;
}

.hero-title-highlight {
    color: #ffe066;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn-primary {
    background: #ffe066;
    border: none;
    color: #232536;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-primary:hover {
    background: #ffd249;
    color: #232536;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 224, 102, 0.3);
}

.hero-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffe066;
    color: #ffe066;
    transform: translateY(-2px);
}

.hero-text-stroke,
.title-stroke {
    color: transparent;
    -webkit-text-stroke: 1px white;
    text-stroke: 1px #ffffff;
    text-transform: uppercase;
}

.video-banner {
    transition: background-image 1s ease-in-out;
}

/* video banner new thing */

.video-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../../images/46791.jpg") center/cover no-repeat;
    animation: fadeSlider 14s infinite;
    z-index: 0;
}

/* @keyframes fadeSlider {

    0%,
    18% {
        background-image: url("../../images/slider/slide-1.png");
        opacity: 1;
    }

    20%,
    38% {
        background-image: url("../../images/slider/slide-2.png");
        opacity: 1;
    }

    40%,
    58% {
        background-image: url("../../images/slider/slide-3.png");
        opacity: 1;
    }

    60%,
    78% {
        background-image: url("../../images/slider/slide-4.png");
        opacity: 1;
    }

    80%,
    100% {
        background-image: url("../../images/slider/slide-5.png");
        opacity: 1;
    }
} */

/* Dark overlay */
.video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content positioning */
.video-banner>* {
    position: relative;
    z-index: 2;
}


.video-banner {
    width: 100%;
    min-height: 50vw;
    max-height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    overflow: hidden;
    background: url("../../images/slider/slide-1.png") center/cover no-repeat;
}

.video-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../../images/slider/slide-1.png") center/cover no-repeat;
    z-index: 0;
    opacity: 0;
    /* Delay animation start by 2 seconds to allow loading */
    animation: fadeSlider 14s infinite 2s;
}

/* Add fade-in at the beginning of animation */
@keyframes fadeSlider {
    0% {
        background-image: url("../../images/slider/slide-1.png");
        opacity: 0;
    }

    2%,
    18% {
        background-image: url("../../images/slider/slide-1.png");
        opacity: 1;
    }

    20%,
    38% {
        background-image: url("../../images/slider/slide-2.png");
        opacity: 1;
    }

    40%,
    58% {
        background-image: url("../../images/slider/slide-3.png");
        opacity: 1;
    }

    60%,
    78% {
        background-image: url("../../images/slider/slide-4.png");
        opacity: 1;
    }

    80%,
    100% {
        background-image: url("../../images/slider/slide-5.png");
        opacity: 1;
    }
}

/* Keep existing overlay and content styles */
.video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-banner>* {
    position: relative;
    z-index: 2;
}


/* about the logo at the banner */
.hero-title-image {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* margin: 2rem 0; */
    padding: 1rem 0;
}

.hero-title-image img {
    mix-blend-mode: exclusion;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

/* Hover effect for the image */
.hero-image:hover {
    /* transform: scale(1.05); */
    filter: drop-shadow(4px 8px 16px rgba(0, 0, 0, 0.4));
}

/* Animation for image appearance */
@keyframes imageZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title-image {
    animation: imageZoomIn 0.8s ease forwards;
}

/* countdown section */

.countdown-section {
    background:
        linear-gradient(rgba(229, 191, 67, 0.85), rgba(229, 191, 67, 0.85)),
        url('../../images/pu-bg-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    width: 100%;
    padding-block: 130px !important;
}

.countdown-heading {
    /* font-family: var(--font-montserrat); */
    /* font-family: var(--font-nunito-bold); */
    font-family: var(--font-prompt);

    font-weight: 800;
    font-size: 3.5rem;
    color: #fff;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-transform: uppercase;
}

.countdown-icon {
    font-size: 2.3rem;
    vertical-align: middle;
    color: #ffe066;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.13));
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.countdown-timer span {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 82px;
}

.countdown-timer .count-number {
    font-size: 2.8rem;
    font-family: var(--font-montserrat);
    font-weight: 700;
    background: #ffe066;
    color: #222;
    padding: 0.55em 0.6em;
    border-radius: 1.3em;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    margin-bottom: 0.2em;
    letter-spacing: 1px;
}

.countdown-timer .label {
    font-size: 1.08rem;
    font-family: var(--font-poppins);
    font-weight: 500;
    background: #232536;
    color: #ffe066;
    padding: 0.15em 0.9em;
    border-radius: 0.8em;
    margin-top: 0.18em;
    letter-spacing: 1px;
    text-transform: uppercase;
}



/* about parul section */

/* About University Section */
.about-university-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(35, 0, 85, 0.9), rgba(255, 145, 77, 0.8)),
        url("../../images/pu-bg-img.jpg") center/cover no-repeat;
    /* background-attachment: fixed; */
    /* Parallax effect */
    display: flex;
    align-items: center;
    padding: 80px 0;
}



/* Title styling */
.about-university-title {
    font-family: var(--font-prompt);
    font-size: 3.5rem;
    font-weight: 800;
    color: #e5334b;
    /* text-align: center; */
    margin-bottom: 2rem;
    letter-spacing: 2px;
    position: relative;
}

/* .about-university-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff9a00);
    border-radius: 2px;
} */

/* Text styling */
.about-university-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 0;
}

/* about gujarat mahaotsav section */

/* Existing styles remain the same */
.about-festival-section {
    background: #fff;
}

.festival-heading {
    font-family: var(--font-nunito-bold);
    font-weight: 800;
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 0.8rem;
    letter-spacing: 1.1px;
    line-height: 1.2;
}

.festival-lead {
    font-size: 1.18rem;
    color: #333;
    font-weight: 500;
}

.about-festival-section-row {
    width: 100%;
}

.about-festival-row h2 {
    width: 65%;
    font-family: var(--font-prompt);
    text-transform: uppercase;
    font-size: 50px;
}

.title-stroke-festival {

    /* text-shadow: 2px 2px 4px #EFEFEF; */
    text-shadow: 2px 2px 4px #FFFFFF;
}

.festival-title-color {
    color: #e5334b;
}

/* New Festival Gallery Styles */
.festival-gallery-section {
    margin-top: 3rem;
}

.festival-gallery-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 51, 75, 0.1);
}

.title-stroke-festival {
    color: transparent;
    -webkit-text-stroke: 1.3px #000;
    text-stroke: 1px #000;
    text-transform: uppercase;

}

/* Desktop Grid Layout */
.festival-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 500px;
}

.festival-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    cursor: pointer;
    background: #fff;
}

.festival-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(229, 51, 75, 0.1), rgba(255, 210, 73, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.festival-grid-item:hover::before {
    opacity: 1;
}

.festival-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 1.2rem;
}

.festival-grid-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.festival-grid-item:hover img {
    transform: scale(1.05);
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.festival-grid-item:hover .grid-overlay {
    transform: translateY(0);
}

.grid-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-prompt);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile Carousel Styles */
/* Enhanced Smooth Carousel Transitions */
#festivalGalleryCarousel {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
}

/* Smooth transition for carousel items */
#festivalGalleryCarousel .carousel-inner {
    border-radius: 1.2rem;
}

#festivalGalleryCarousel .carousel-item {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

/* Enhanced sliding animation */
#festivalGalleryCarousel.sliding .carousel-item {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

#festivalGalleryCarousel .carousel-item img {
    height: 350px;
    object-fit: cover;
    border-radius: 1.2rem;
    width: 100%;
    transition: transform 0.3s ease;
    will-change: transform;
}

/* Smooth hover effect for images */
#festivalGalleryCarousel .carousel-item:hover img {
    transform: scale(1.02);
}

/* Enhanced Controls with Better Positioning */
#festivalGalleryCarousel .carousel-control-prev,
#festivalGalleryCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#festivalGalleryCarousel .carousel-control-prev {
    left: 20px;
}

#festivalGalleryCarousel .carousel-control-next {
    right: 20px;
}

#festivalGalleryCarousel .carousel-control-prev:hover,
#festivalGalleryCarousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(229, 51, 75, 0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(229, 51, 75, 0.3);
}

#festivalGalleryCarousel .carousel-control-prev-icon,
#festivalGalleryCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 24px;
    filter: invert(1);
    transition: all 0.3s ease;
}

#festivalGalleryCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#festivalGalleryCarousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Smooth Caption Animations */
#festivalGalleryCarousel .carousel-caption {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    bottom: 2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#festivalGalleryCarousel .carousel-item.active .carousel-caption {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#festivalGalleryCarousel .carousel-caption h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
    font-family: var(--font-prompt);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Indicators */
#festivalGalleryCarousel .carousel-indicators {
    bottom: -45px;
    margin-bottom: 0;
    gap: 8px;
    justify-content: center;
}

#festivalGalleryCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
}

#festivalGalleryCarousel .carousel-indicators .active {
    background-color: #e5334b;
    border-color: #e5334b;
    transform: scale(1.4);
    box-shadow: 0 4px 12px rgba(229, 51, 75, 0.4);
    opacity: 1;
}

/* Loading State Animation */
#festivalGalleryCarousel.sliding::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e5334b, transparent);
    animation: loading 0.8s ease-in-out;
    z-index: 15;
}

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

    100% {
        left: 100%;
    }
}

/* Animation for grid items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.festival-grid-item {
    animation: fadeInUp 0.6s ease forwards;
}

.festival-grid-item:nth-child(1) {
    animation-delay: 0.1s;
}

.festival-grid-item:nth-child(2) {
    animation-delay: 0.2s;
}

.festival-grid-item:nth-child(3) {
    animation-delay: 0.3s;
}

.festival-grid-item:nth-child(4) {
    animation-delay: 0.4s;
}

.festival-grid-item:nth-child(5) {
    animation-delay: 0.5s;
}

.festival-grid-item:nth-child(6) {
    animation-delay: 0.6s;
}



/* President Desk Section */
.president-desk-section {
    /* background: linear-gradient(135deg, #de5b55 0%, #de5b55 100%); */
    background: #de5b55;
    position: relative;
    overflow: hidden;
}


.president-desk-section .container {
    position: relative;
    z-index: 2;
}

/* President Card */
.president-card {
    transition: all 0.3s ease;

    /* margin: 0 auto; */
}

.president-card:hover {}

.president-img-wrap {
    position: relative;

    margin: 0 auto 1.5rem;
    /* border-radius: 15px; */
    overflow: hidden;
}

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

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

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

.president-name-title {
    font-family: var(--font-prompt);
    font-size: 1.4rem;
    font-weight: 800;
    color: #232536;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.president-designation {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    font-family: var(--font-poppins);
}

/* Message Header */
.message-header {
    margin-bottom: 2rem;
    text-align: left;
}

.message-title {
    font-family: var(--font-prompt);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.message-highlight {
    color: #fff;
    /* display: block; */
}

/* .message-highlight {
    color: transparent;
    -webkit-text-stroke: 0.2px white;
    text-stroke: 0.8px #ffffff;
} */
.message-from {
    /* color: transparent;
    -webkit-text-stroke: 0.2px white;
    text-stroke: 0.8px #ffffff; */
    color: #fff;
}

.message-of {
    color: #fff;

}

.president-title {
    font-family: var(--font-prompt);
    color: #fff;
}

.president-info {
    border-left: 4px solid #ff8260;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.president-name-main {
    font-family: var(--font-prompt);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.president-role {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    font-style: italic;
}

/* Message Content */
.president-message-content {
    line-height: 1.7;
}

.message-text {
    font-size: 1rem;
    color: #fff;
    font-family: var(--font-poppins);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.message-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .message-title {
        font-size: 2.5rem;
    }

    .president-title {
        font-size: 2.5rem;
    }

    .president-name-main {
        font-size: 1.2rem;
    }

    .president-message-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 991.98px) {
    .president-desk-section {
        padding: 3rem 0;
    }

    .president-card {
        /* margin-bottom: 2rem; */
        max-width: 100%;
        padding: 1.5rem;
    }

    .president-img-wrap {
        /* width: 180px;
        height: 220px; */
        margin-bottom: 1rem;
    }

    .message-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

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

    .president-title {
        font-size: 2.5rem;
    }

    .president-message-wrapper {
        padding: 1.5rem;
    }

    .message-text {
        font-size: 1rem;
        text-align: justify;
    }
}

@media (max-width: 767.98px) {
    .president-desk-section {
        padding: 2rem 0;
    }

    .president-card {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .president-img-wrap {
        /* width: 150px;
        height: 180px; */
    }

    .president-name-title {
        font-size: 1.2rem;
    }

    .president-designation {
        font-size: 0.9rem;
    }

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

    .president-title {
        font-size: 2.7rem;
    }

    .president-name-main {
        font-size: 1.1rem;
    }

    .president-role {
        font-size: 0.9rem;
    }

    .president-message-wrapper {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .message-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .president-info {
        padding-left: 0.8rem;
        margin-bottom: 1rem;
        margin-block: 2rem;
    }
}

@media (max-width: 575.98px) {
    .president-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .president-img-wrap {
        /* width: 130px;
        height: 160px; */
    }

    .president-name-title {
        font-size: 1.1rem;
    }

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

    .president-title {
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }

    .president-name-main {
        font-size: 1rem;
    }

    .president-message-wrapper {
        padding: 0rem;
    }

    .message-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .message-header {
        margin-bottom: 1.2rem;
    }
}

/* Animation Effects */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.president-card {
    animation: fadeInLeft 0.8s ease forwards;
}

.president-message-wrapper {
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Glassmorphism Enhancement */
@supports (backdrop-filter: blur(20px)) {

    .president-card,
    .president-message-wrapper {
        /* background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px); */
    }
}

/* Fallback for older browsers */
@supports not (backdrop-filter: blur(20px)) {

    .president-card,
    .president-message-wrapper {
        /* background: rgba(255, 255, 255, 0.95); */
    }
}




/* footer section */

.footer-section {
    background: #042a4b;
    color: #fff;
    font-family: var(--font-poppins);
}

.footer-section .footer-title {
    font-family: var(--font-montserrat);
    font-size: 1.15rem;
    letter-spacing: 1.1px;
    color: #ffe066;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #d9d9e3;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-link:hover,
.footer-link:focus {
    color: #ffe066;
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.footer-social {
    margin-top: 0.2rem;
}

.footer-social-link {
    color: #ffe066;
    font-size: 1.35rem;
    transition: color 0.18s;
}

.footer-social-link:hover {
    color: #ff4b2b;
}

.footer-contact .small {
    color: #ddd;
    font-size: 0.97rem;
    margin-bottom: 0.12rem;
}

.footer-copy {
    color: #aaa;
    font-size: 0.93rem;
    letter-spacing: 0.5px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .footer-section .row>div {
        margin-bottom: 1.3rem;
    }

    .footer-links {
        gap: 0.8rem;
        font-size: 0.98rem;
    }

    .footer-title {
        font-size: 1.03rem;
    }
}



.navbar-toggler-icon {
    color: white !important;
}

@media (min-width: 768px) {
    .text-md-start {
        text-align: center !important;
    }

    .text-md-end {
        text-align: center !important;
    }
}


/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #e5334b;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(229, 51, 75, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top-btn:hover {
    background: #c42d42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 51, 75, 0.4);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}


/* scroll bar section  */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {

    background: #f8f9fa;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fdbf0a 0%, #e6a809 100%);
    border-radius: 10px;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e6a809 0%, #cc9507 100%);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #cc9507 0%, #b8850a 100%);
}

::-webkit-scrollbar-corner {
    background: #f8f9fa;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #fdbf0a #f8f9fa;
}

.festival-gallery-wrapper,
.president-message-wrapper,
.about-university-section {
    scrollbar-width: thin;
    scrollbar-color: #fdbf0a #f8f9fa;
}

.festival-gallery-wrapper::-webkit-scrollbar,
.president-message-wrapper::-webkit-scrollbar,
.about-university-section::-webkit-scrollbar {
    width: 8px;
}

.festival-gallery-wrapper::-webkit-scrollbar-thumb,
.president-message-wrapper::-webkit-scrollbar-thumb,
.about-university-section::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fdbf0a 0%, #e6a809 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



.simple-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.simple-loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Your Spinner Styles */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}

.loader::before {
    border-color: #f03355 #0000;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}

.loader::after {
    margin: 8px;
}

@keyframes l16 {
    100% {
        transform: rotate(1turn)
    }
}

/* Hide scrollbar during loading */
.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

/* All the keyframe animations for full loading screen */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }

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

@keyframes logoFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

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

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

@keyframes dotBounce {

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

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

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

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

@keyframes progressBarFadeIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}