:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gradient-1: linear-gradient(135deg, #00aeee 0%, #35308c 100%);

    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
}

p {
    letter-spacing: 0.5px;
}

h2 {
    font-size: 44px;
    color: #000;
    font-weight: 400;

}

.color {
    color: #fd0008;
    ;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #f8fafc;
}

/* Modern Animated Header */
.top-header {
    background: linear-gradient(-45deg, #00aef0, #39318a, #0c93da, #322f8e);
    background-size: 400% 400%;
    animation: modernGradient 8s ease infinite;
    padding: 12px 0;
    color: white;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    /* animation: shimmer 3s infinite; */
}

@keyframes modernGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Modern Logo Banner */
.logo-banner {
    background: linear-gradient(135deg, #ffffffde 0%, #fffffff7 100%), url(./images/header-bg.gif) repeat top center / contain;
    padding: 10px 0;
    /* color: white; */
    position: relative;
    overflow: hidden;
}

.logo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / 3%) 0%, #3b328a00 70%);
    animation: rotate 10s linear infinite;
}

.logo-banner img {
    width: 110px;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-banner .college-name {
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: 800;

    animation: floatIn 2s ease-out;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    font-family: "Roboto", sans-serif;
    font-size: 47px;
    line-height: 37px;
    color: #000383;
    padding-top: 10px;
}

.sub-title {
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #fd0008;
}

.sub-title1 {
    font-size: 25px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #070a86;
    font-family: "Roboto", sans-serif;
}

.anniversary-badge {
    position: relative;
    display: inline-block;
    padding: 5px;
    /* animation: float 3s ease-in-out infinite; */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modern Navigation */
.navbar {
    background: linear-gradient(357deg, #072070, #00aeef, #00638f, #090060) !important;
    /* backdrop-filter: blur(20px); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
    padding: 5px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-color) !important;
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 400;
    margin: 0 5px;
    padding: 8px 8px !important;

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    transition: all 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}


.navbar-nav .nav-link:hover {
    color: #ffe099 !important;

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-item.active .nav-link {
    color: #ffe099 !important;
}

/* Dropdown Styles */
/* Show dropdown menu on hover */
.navbar-nav li.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    /* Prevents jump */
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    color: #000000;
    padding: 5px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.dropdown-menu li {
    background-color: #ffffff45;
    border-bottom: 1px dashed #0099d4;

}

.dropdown-item:hover {
    background: var(--gradient-1);
    color: white;
    margin: 0px;

    /* transform: translateX(5px); */
}

/* Multi-level dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 0 8px 8px 8px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Hide offcanvas on desktop */
@media (min-width: 992px) {
    .offcanvas {
        display: none !important;
    }
}

/* Enhanced Offcanvas Styles for Mobile */
.offcanvas {
    background: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
    color: white;
    width: 320px !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.offcanvas-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.offcanvas-body {
    padding: 0;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: none;
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
}

.accordion-body ul li {
    margin-bottom: 8px;
}

.accordion-body ul li a {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.accordion-body ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

/* Modern Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    animation: slideContentIn 1s ease-out 0.5s both;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(50px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)); */
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(0px);
    border: 1px solid rgb(255 255 255 / 0%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgb(0 0 0 / 44%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Modern Welcome Section */
.welcome-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section p {
    text-align: justify;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-60px) translateY(-60px);
    }
}

.welcome-card {

    padding: 30px;
    /* box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2); */
    /* transition: all 0.5s ease;
    position: relative;
    overflow: hidden; */
}

.welcome-img {
    /* background: rgba(255, 255, 255, 0.9); */
    backdrop-filter: blur(20px);
    /* box-shadow: var(--shadow-light); */
    border-radius: 30px;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.welcome-card:hover {
    /* transform: translateY(-20px);
    box-shadow: 0 3px 38px rgb(215 85 48 / 23%); */
}

/* Modern Alumni Carousel */
.alumni-section {
    padding: 60px 0;
    background: #00025008;
    color: white;
    position: relative;
    overflow: hidden;
}

.alumni-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    z-index: -1;
}

.alumni-section h2 {
    color: #fff;
}

.alumni-section img {
    border-radius: 20px;
    width: 100%;
}

.alumni-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.alumni-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

@media (min-width: 1500px) {
    .alumni-card {
        min-width: 400px !important;
    }
}

.alumni-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    min-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.alumni-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s ease;
}

.alumni-card:hover::before {
    left: 100%;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.alumni-card img {
    width: 280px;
    height: 280px;
    border-radius: 20% 30%;

    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.alumni-card:hover img {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Modern Office Bearers */
.office-bearers {
    padding: 60px 0;
    background: #fff;
    color: white;
    position: relative;
    overflow: hidden;
}

.bearer-card img {
    width: 190px;
    border-radius: 65% !important;
}

/* .office-bearers::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    } */

.bearer-card {
    background: rgb(126 32 0);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 412px;
}

.bearer-card p {
    color: #fffdfd;
}

.bearer-card h5 {
    color: #ffffff;
}

.bearer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 50deg, #a11e1e05, rgb(227 227 227 / 24%), #e7592824);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.bearer-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.bearer-card i {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

/* Modern Bishop Desk */
.bishop-desk {
    padding: 60px 0;
    padding-bottom: 0px;
    background: linear-gradient(135deg, #ffffffeb 0%, #ffffffd9 100%), url(./images/mission-bg.jpg) no-repeat top center / cover;
    color: white;
    position: relative;
    overflow: hidden;
}

.headmistress-img {
    border-radius: 20px;
}

.bishop-desk h2 {
    color: #312f8f;
}

.blockquote p {
    color: #000;
    text-align: justify;
    font-size: 16px;

}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 16px;
    color: #312f8f !important;
    float: right;
}

.blockquote-footer a {
    color: #0092d5;
    text-decoration: none;
}

.blockquote-footer a:hover {
    color: #d50000;
    text-decoration: none;
}

.blockquote-footer strong {
    font-size: 19px;
}

/* .bishop-desk::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'%3E%3Cpath d='M50,0 L75,50 50,100 25,50 Z' fill='%23ffffff1a'/%3E%3C/svg%3E");
        animation: backgroundMove 15s linear infinite;
    } */

.bishop-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.bishop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Modern Quick Links */
.quick-links {
    padding: 60px 0;
    background: #fff;
    color: white;
    position: relative;
    overflow: hidden;
}


/* Common style for all boxes */
.quick-link-item {
    background: rgb(49 47 143);
    backdrop-filter: blur(20px);
    padding: 30px;
    text-align: center;
    transition: all 0.5s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 5%;
    box-shadow: 0 0 10px #140500;
}

/* 2nd Box */
.row>.col-md-2:nth-child(2) .quick-link-item {
    background: #00796b;
    /* Teal */
}

/* 3rd Box */
.row>.col-md-2:nth-child(3) .quick-link-item {
    background: #e65100;
    /* Deep Orange */
}

/* 2nd Box */
.row>.col-md-2:nth-child(4) .quick-link-item {
    background: #d42d23;
}

/* 3rd Box */
.row>.col-md-2:nth-child(5) .quick-link-item {
    background: #005778;
}

/* 3rd Box */
.row>.col-md-2:nth-child(3) .quick-link-item {
    background: #e65100;
    /* Deep Orange */
}

.quick-link-item a {
    color: #fff !important;
    text-decoration: none;
}

.quick-link-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.quick-link-item:hover::before {
    width: 300px;
    height: 300px;
}

.quick-link-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Modern News and Events */
.news-events {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.news-card,
.event-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 260px;
}

.news-card {
    height: 280px;
}

.news-card::before,
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transition: all 0.5s ease;
}

.news-card a {
    text-decoration: none;
    color: #312f8f;
}

.news-card a:hover {
    text-decoration: none;
    color: #fd0008;
    ;
}

.news-card:hover::before,
.event-card:hover::before {
    left: 0;
}

.news-events h2 {
    text-align: center;
}

.news-card:hover,
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

/* Modern Videos Section */
.videos-section {
    padding: 60px 0;
    background: url(./images/home/video-bg.png) no-repeat top center / contain;
    color: white;
    position: relative;
    overflow: hidden;
    background-size: 400% 400%;
    /* animation: bgAnimation 8s ease infinite; */
}

@keyframes bgAnimation {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.videos-section h2 {
    text-align: center;
    color: #fff;
}

.video-title {
    text-align: center;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-dark);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(25, 40, 104, 0), rgba(118, 75, 162, 0));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    display: none !important
}

.video-card:hover::before {
    opacity: 1;
}

/* YouTube Gallery Styles */
.youtube-gallery-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.youtube-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.youtube-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: youtubeMarquee 40s linear infinite;
}

.youtube-track:hover {
    animation-play-state: paused;
}

.youtube-slide {
    width: 400px;
    flex-shrink: 0;
}

@keyframes youtubeMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12.5px));
    }
}

@media (max-width: 768px) {
    .youtube-slide {
        width: 300px;
    }
}

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    text-decoration: none;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(253, 0, 8, 0.2);
}

.video-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: #fd0008;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(253, 0, 8, 0.5);
}

.play-btn:hover {
    transform: scale(1.1);
    color: #fff;
    background: #d40007;
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h5 {
    font-size: 18px;
    margin-bottom: 0px !important;
    color: #312f8f;
    font-weight: 600;
}

.section-tagline {
    display: block;
    color: #fd0008;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: #fd0008;
    border-radius: 3px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: #312f8f;
    border-radius: 50%;
}

/* Modern Gallery */
.gallery-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gallery-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: galleryMarquee 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-slide {
    width: 350px;
    flex-shrink: 0;
}

@keyframes galleryMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        width: 280px;
    }
}

.gallery-nav {
    display: none;
    /* Marquee doesn't need nav buttons */
}

.gallery-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: -10px;
}

.gallery-nav.next {
    right: -10px;
}

@media (max-width: 1300px) {
    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }
}

.ml-auto {
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: all 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)); */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Modern Footer */
.footer {
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
    background-image: linear-gradient(rgb(0 172 237 / 94%), rgb(15 45 100 / 100%)), url(./images/header-logo.png);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;

    background-position: top;
    overflow: hidden;
}

/* .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    background-image: linear-gradient(rgb(255 236 177 / 43%), rgb(15 45 100 / 85%)), url(./images/logo/site-logo.png);
        opacity: 0.1;
        background-size: contain;
        background-repeat: no-repeat;
    
            background-position: top;
    } */
.footer-bottom p {
    text-align: center;
}

.footer-section h5 {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 24px;
}

.footer-bottom a {
    color: #ffc9b7;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd600;
}

#mobileMenuAccordion .accordion-header {
    font-family: 'Poppins', sans-serif !important;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    /* background: var(--gradient-1); */
    color: white;
    text-align: center;
    line-height: 41px;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-icons a:hover::before {
    width: 60px;
    height: 60px;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* News Images Styles */
.news-image {
    overflow: hidden;
    border-radius: 10px;
    float: left;

}

.news-image img {
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img,
.event-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-image::after,
.event-card:hover .news-image::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-banner .sub-title {
        display: none;
    }

    .arrow::after {
        filter: none;
    }

    .sub-title1 {
        display: none;
    }

    .logo-banner .college-name {
        font-size: 15px;
    }

    .anniversary-badge {
        position: relative;
        display: inline-block;
        padding: 0px !important;
        /* animation: float 3s ease-in-out infinite; */
    }

    .hero-slider {
        height: 60vh;
    }

    .alumni-card {
        min-width: 280px;
    }

    .welcome-card,
    .bishop-card {
        padding: 30px;
    }

    .slider-nav,
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Modern scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating elements animation */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-element {
    animation: floatUpDown 4s ease-in-out infinite;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators .indicator.active {
    background: white;
    transform: scale(1.2);
}

.carousel-indicators .indicator:hover {
    border-color: white;
    transform: scale(1.1);
}

.top-header a {
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #01a2e4 0%, #061e6e 100%);
    border: none;
}

.btn-primary:hover {

    background: linear-gradient(135deg, #061e6e 0%, #01a2e4 100%);
    border: none;
}

.color1 {
    color: #ed5a25;
}

.mission-section {
    background-color: #000250;
}

.mission-section .office-bearers {
    background: #00025008;
}

.mission-section .office-bearers h2 {
    color: #fff;
}

.particle-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%s;
}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Or set lower than content */
    overflow: hidden;
    top: 0;
    left: 0;
    pointer-events: none;
    /* 🔥 This is the key */
}

.bubble {
    position: absolute;
    bottom: -100px;
    /* background: #2e2d8e; */
    border-radius: 64%;
    opacity: .5;
    animation: rise 10s infinite ease-in;
    background: linear-gradient(135deg, #ffffff 0%, #009eda 100%);
}

.bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-duration: 8s
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s
}

.bubble:nth-child(4) {
    width: 35px;
    height: 35px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s
}

.bubble:nth-child(5) {
    width: 30px;
    height: 30px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s
}

.bubble:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s
}

.bubble:nth-child(7) {
    width: 30px;
    height: 30px;
    left: 70%;
    animation-duration: 7s;
    animation-delay: 2s
}

.bubble:nth-child(8) {
    width: 15px;
    height: 15px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 1s
}

.bubble:nth-child(9) {
    width: 50px;
    height: 50px;
    left: 70%;
    animation-duration: 5s;
    animation-delay: 1s
}

.bubble:nth-child(10) {
    width: 60px;
    height: 16px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 4s
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translate(0)
    }

    50% {
        transform: translate(100px)
    }

    to {
        bottom: 100vh;
        transform: translate(-200px)
    }
}

.news-events .btn-primary {
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.latest-news-card h5 img {
    height: 35px;
    width: 40px;
    transform: rotate(30deg);
}

.latest-news-card .news-card {
    padding: 30px 30px;
    height: 590px;
}

.latest-news h5:not(:first-child) {
    border-top: 1px dashed #fd0008;
    ;
    padding-top: 20px;

}

.latest-news .text-muted {
    margin-bottom: 0px !important;
}

.upcoming-events-title {
    margin-left: auto;
    margin-right: auto;
    display: table;
    background: #fff;
    width: 100%;
    padding: 40px;
    border-radius: 10px;

}

.upcoming-events-title h5 {
    color: #312f8f;
}

.news-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #029598 50%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;

}

.news-scroller small {
    color: #fff;
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(33 37 41) !important;
}

.news-container {
    height: 290px;
    overflow: hidden;
}

.news-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    height: 18 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-news {
    background: rgba(168, 85, 247, 0.3) !important;
    color: #ddd6fe !important;
}

.badge-event {
    background: rgba(236, 72, 153, 0.3) !important;
    color: #fce7f3 !important;
}

.section-padding {
    padding: 80px 0;
}

.star {
    position: absolute;
    animation: starTwinkle 2s ease-in-out infinite alternate;
    color: #fbbf24;
}

.star-subtle {
    color: #6b7280;
    animation: starGlow 3s ease-in-out infinite;
}

.star-soft {
    color: #a855f7;
    animation: starPulse 1.5s ease-in-out infinite;
}

.star-gentle {
    color: #ec4899;
    animation: starFloat 3s ease-in-out infinite;
}



@keyframes starTwinkle {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes starGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes starPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes starFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(120deg);
    }

    66% {
        transform: translateY(4px) rotate(240deg);
    }
}

@media (min-width: 960px) and (max-width: 1400px) {
    .gradient-text {
        background: linear-gradient(135deg, #384b73 0%, #009799 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 30px !important;
        text-transform: uppercase;
        font-weight: bold;
    }
}

.upcomming-events .btn-primary {
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.downloads {
    padding: 60px 0px;
}

.add {
    display: inline-flex;
}

@media (max-width: 767.98px) {
    .top-header {
        display: none !important;
    }

    h2 {
        font-size: 25px !important;
        color: #312f8f;
    }

    .news-card,
    .event-card {
        height: auto !important;
    }

    .latest-news-card img {
        margin-left: 50px;
    }

}

.add i {
    margin-top: 6px;
    margin-right: 6px;
}

.adminssion-link a {
    color: #fff !important;
    transition: all 0.3s ease;
    padding: 5px;

}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;

    }
}

.adminssion-link a:hover {
    background: #384b73;
    box-shadow: 0 0 10px #384b73;
    padding: 5px;
}

@media (min-width: 1600px) {
    .container-fluid {
        width: 1600px !important;
    }
}

.announcements img {
    height: 30px;
    width: 30px;
    transform: rotate(30deg);
}

.announcements {
    background-color: rgb(0 37 96);
    padding: 5px 10px;
    height: 50px;
}

.announcements a {
    color: #fff !important;
    text-decoration: none;
}

marquee {
    margin-top: 6px;
}

.announcements i {
    color: #f8c96a !important;
    animation: colorChange 1s ease-in-out infinite alternate;
}

@keyframes colorChange {
    0% {
        color: #f8c96a;
    }

    100% {
        color: #feca57;
    }
}

.msg1 {
    margin-bottom: 0px;
    float: right;
}

.msg2 {
    margin-bottom: 0px;
    text-align: end !important;
}

.visiter-count img {
    margin-top: -60px;
}

.important-links {
    background-color: #ffad9129;
    padding: 60px 0;
}

.link-title h4 {
    color: #ffffff;
    /* border-bottom: 1px dashed #ffffff; */
    width: fit-content;
    margin: 0 auto;

}

.important-links .news-card {
    padding: 0px;
}

.link-title {
    padding: 15px;
    background-color: #fd0008;
    ;
}

.page-links {
    padding: 20px;
}

.page-links a {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    color: #312f8f;
    font-weight: 500;

}

.page-links i {
    color: #312f8f;
    font-size: 17px;
    margin-right: 8px;
    line-height: 1;
}



@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px !important;
    }
}

.logo-link a {
    text-decoration: none;
    float: right;
    color: #000252;
}

.logo-link a:hover {
    color: #de572c;
}

.fb {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #020077 0%, #5930f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.fb:hover {
    background: linear-gradient(135deg, #5930f0 100%, #020077 0%);
}

.youtube {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #a80000 0%, #ff3535 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.youtube:hover {
    background: linear-gradient(135deg, #a80000 0%, #ff3535 100%);
}

/* breadcrumb */
.breadcrumb-section {
    background-image: url(./images/home/bread-crumb-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #000000;
}

.breadcrumb-item a:hover {
    text-decoration: none;
    color: #00014d;
}

.breadcrumb-section {
    background-color: #f7f7f7;
    padding: 20px 0;
}

.breadcrumb-section .breadcrumb {
    justify-content: flex-end;
    background-color: transparent;
}

.breadcrumb-section .breadcrumb-item {
    color: #337ab7;
}

.breadcrumb-section .breadcrumb-item.active {
    color: #09005f;
}

/* breadcrumb */
/* subpage */
.subpage {
    padding-top: 70px;
    padding-bottom: 0px;
}

.departments {
    padding: 0px;
    background-color: #ffad9100;
}

.departments-link-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 0px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.departments-links h5 {
    background: linear-gradient(-45deg, #302ab7, #090064, #09005a, #090060) !important;
    padding: 10px;
}

.departments-links a {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;

}

.departments-links h5:hover {

    align-items: baseline;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(-45deg, #8f1300b8, #9f240e, #a31701, #5a0f02) !important;
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .res-mt {
        margin-top: 30px;
    }
}

.department-tab {

    background: linear-gradient(135deg, #932900d9 0%, #f05a2000 100% 100%), url(./images/home/tab-bg.jpg) no-repeat top center / cover;
    /* background-image:url(./images/home/tab-bg.jpg); */
    color: #fff;
    padding: 10px;
    width: 500px;
}

.department-tab h5 {
    color: #fff !important;
    text-decoration: none;
    text-align: left !important;
}

.department-tab button {
    color: #fff !important;
    text-decoration: none;
    text-align: left !important;
    border-bottom: 1px dotted #ffffff;
    border-radius: unset !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #09005e !important;
}

.departments-tab-content {
    box-shadow: 0 0 7px #6b2004;
    width: 100%;
    padding: 50px;
    border-radius: 22px;
    border-top: 5px solid #6b2004;

}

table {
    /* background-color: #ffece4; */
    padding: 20px !important;
    width: 100%;
    margin-top: 30px;
}

table th {
    /* background: #8f2904; */
    color: #000;
    /* text-align: center; */
    border: 1px solid #000 !important;
    padding: 10px !important;
}

table td {
    /* text-align: center; */
    border: 1px solid #000 !important;
    padding: 8px !important;
}

.subpage h3 {
    color: #06649a;
    margin-bottom: 15px;
    margin-top: 15px;
}

.subpage h4 {
    color: #af060b;
    margin-bottom: 15px;
    margin-top: 20px;
}

.subpage h5 {
    color: #3f3f3f;
}

@media only screen and (max-width: 600px) {
    .table-responsive {
        width: 100%;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .deptauxmtable {
        width: 100%;
        min-width: 400px;
        border-collapse: collapse;
        border-spacing: 0;
    }

    .deptauxmtable th,
    .deptauxmtable td {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .deptauxmtable tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .tab-container {
        display: block !important;
    }

    .department-tab {
        background: linear-gradient(135deg, #932900d9 0%, #f05a2000 100% 100%), url(./images/home/tab-bg.jpg) no-repeat top center / cover;
        /* background-image: url(./images/home/tab-bg.jpg); */
        color: #fff;
        padding: 10px;
        width: 100% !important;
    }

    .mobile-container {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: flex-end !important;
    }

    .navbar-toggler {
        margin-top: -84px;
    }
}

/* subpage */

/* Vision Mission Section */
.vision-mission-section {
    padding: 60px 0;
    background: linear-gradient(86deg, #00aded 0%, #002b48 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-tagline {
    display: inline-block;
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

/* Foundress Card */
.foundress-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.foundress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #ffd700, #764ba2);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.foundress-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.foundress-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.foundress-image-wrapper {
    flex-shrink: 0;
}

.image-frame {
    position: relative;
    width: 280px;
    height: 280px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #0a678d;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.foundress-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.foundress-card:hover .foundress-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 95 131 / 22%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.image-overlay i {
    font-size: 3rem;
    color: #ffd700;
    animation: heartbeat 1.5s infinite;
}

.foundress-card:hover .image-overlay {
    opacity: 1;
}

.foundress-info {
    flex: 1;
    text-align: left;
}

.foundress-name {
    color: #fd0008;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;

}

.foundress-title {
    color: #006189;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    font-style: italic;
    font-family: "Roboto", sans-serif;
}

.foundress-quote {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    border-left: 5px solid #0a678d;
}

.quote-icon {
    color: #0a678d;
    font-size: 1.5rem;
    margin-right: 10px;
    opacity: 0.5;
}

.foundress-quote p {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Spectral', serif;
    font-style: italic;
}

/* Vision & Mission Cards */
.vm-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.vm-card:hover::before {
    left: 100%;
}

.vm-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.vision-card {
    border-top: 5px solid #667eea;
}

.mission-card {
    border-top: 5px solid #764ba2;
}

.vm-card-inner {
    padding: 25px 25px;
    text-align: center;
    position: relative;
}

.vm-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00304f, #0093cd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.vm-card:hover .vm-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
}

.vm-icon i {
    font-size: 3rem;
    color: #fff;
}

.icon-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px dashed #007aaa;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 15s linear infinite;
    opacity: 0.3;
}

.vm-title {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;


    letter-spacing: 2px;
}

.vm-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #ffd700);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.vm-text {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    text-align: left;
}

.vm-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #00304f, #0093cd);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.vm-card:hover .vm-bottom-accent {
    transform: scaleX(1);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 20%;
    animation-delay: 10s;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(0) translateX(40px);
    }

    75% {
        transform: translateY(30px) translateX(20px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .foundress-content {
        flex-direction: column;
        text-align: center;
    }

    .foundress-info {
        text-align: center;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .foundress-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
    }

    .foundress-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .vm-title {
        font-size: 1.8rem;
    }

    .vm-text {
        font-size: 1rem;
    }

    .vm-card-inner {
        padding: 40px 25px;
    }

    .image-frame {
        width: 180px;
        height: 180px;
    }

    .foundress-quote p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .foundress-name {
        font-size: 1.5rem;
    }

    .vm-icon {
        width: 80px;
        height: 80px;
    }

    .vm-icon i {
        font-size: 2.5rem;
    }
}

.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-img {
    /* border-radius:10px; */
    /* width:100%; */
    /* height:220px; */
    object-fit: cover;
}

.info-box h5 {
    font-weight: 600;
}

.info-box p {
    font-size: 0.9rem;
    color: #555;
    margin-top: 20px;
    text-align: center;
}

.read-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #01a2e4 0%, #061e6e 100%);
    border: none;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.read-btn-one {
    display: inline-block;
    margin-top: 125px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #01a2e4 0%, #061e6e 100%);
    border: none;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.read-btn-two {
    display: inline-block;
    margin-top: 95px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #01a2e4 0%, #061e6e 100%);
    border: none;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.read-btn:hover {
    background: linear-gradient(135deg, #061e6e 0%, #01a2e4 100%);
    color: #fff;
}

.principal-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* mobile responsive */
@media(max-width:991px) {
    .principal-img {
        margin-top: 25px;
    }
}

.footer-section ul img {
    width: 100%;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #312f8f;
}

.d-table-cell ul {
    display: flex;
    list-style: none;
}

.page-title-area .title-item,
.page-title-area h2,
.page-title-area ul {
    text-align: center !important;
    justify-content: center !important;
    width: 100%;
}

.page-title-area ul {
    display: flex !important;
    justify-content: center !important;
}

.text-center {
    text-align: center !important;
    padding-top: 15px;
    padding-bottom: 15px;
}

.page-title-area {
    background: linear-gradient(357deg, #b0b0b0, #e29496, #b4bcc0, #d98e90) !important;
}

.title-item ul li a {
    color: #000;
    text-decoration: none;
    font-weight: normal;
}
.page-title-area {
    text-align: center;
}

.title-item h2 {
    margin-bottom: 10px;
}

.breadcrumb-center {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.breadcrumb-center li {
    display: inline-block;
    font-size: 15px;
}

.text-center {
    text-align: center !important;
    padding-top: 15px;
    padding-bottom: 15px;
}
.post h4 a{
        font-size: 25px !important;
    text-decoration: none;
    color: #d10c12 !important;
}

.common-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #063481;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover effect */
.common-btn:hover {
    background: #90080c;
    color: #fff;
    transform: translateY(-2px);
}

/* Center button */
.readmore-center {
    text-align: center;
    margin-top: 15px;
}

.page-title-area .d-table {
    width: 100%;
    height: 220px; /* adjust banner height */
}

.page-title-area .d-table-cell {
    vertical-align: middle;
    text-align: center;
}

.page-title-area .title-item {
    text-align: center;
}

.page-title-area .title-item h2 {
    margin-bottom: 7px;
    font-weight: 700;
    /* margin-top: -62px; */
}
.page-title-area .title-item-one h2 {
    margin-bottom: 7px;
    font-weight: 700;
    margin-top: -62px;
}

/* breadcrumb center */
.page-title-area .title-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.page-title-area .title-item ul li {
    font-size: 15px;
}
.tiptap-content a[data-as-button="true"] {
    background-color: #007bff;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.tiptap-content a[data-as-button="true"]:hover {
    background-color: #0056b3;
}
.top-header a{
    color: #fff;
}
.footer-section a{
    color: #fff;
    text-decoration: none;
}
.page-title-area .d-table {
    height: 200px;   /* Required height set pannalaam */
}

.page-title-area {
    /* padding: 30px 0; */
    height: 150px;
}
.news-meta-item{
        margin-top: -30px;
    margin-bottom: 30px;
}
.blog-pull-right{
    padding-bottom: 50px;
}