/* ===================================================
   CUSTOM OVERRIDES - Premium Styles
   =================================================== */

/* --- Animated Gradient Keyframes --- */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* --- Colorful Top Bar Buttons --- */
.btn-premium-top {
    background: linear-gradient(45deg, #ff0055, #ff6600, #00d2ff, #7b2ff7, #ff0055);
    background-size: 300% 300%;
    animation: gradientBG 3s ease infinite;
    color: white;
    border: none;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.btn-premium-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.5);
    filter: brightness(1.1);
}

/* --- Hero Slider - Full Viewport Width --- */
.hero-slider {
    width: 100%;
    height: auto !important;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: auto !important;
}

.slide {
    width: 100%;
    height: auto !important;
}

.slide img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: fill !important; /* Forces it to fill width/height natively */
}

/* --- Premium Slider Arrows --- */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    margin-top: 0;
    color: white;
    font-size: 1.4rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.prev { left: 25px; }
.next { right: 25px; }

.prev:hover, .next:hover {
    background: linear-gradient(135deg, #ff0055, #ff6600);
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(255, 0, 85, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* --- Marquee - Remove bottom grey line --- */
.admission-marquee {
    background: #fff;
    padding: 15px 0;
    border-bottom: none;
    box-shadow: none;
    border-top: none;
}

.admission-marquee marquee {
    font-size: 1.4rem;
    color: #d32f2f;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- Navbar reduced height --- */
.navbar {
    padding: 5px 0;
}

.nav-link {
    padding: 10px 16px;
}

/* --- Info Cards Hover Effect --- */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}
.btn-read-more:hover {
    background-color: #5c0000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(128,0,0,0.3) !important;
}

/* --- Students Gallery Marquee Slider --- */
.gallery-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 40px 0;
}







.gallery-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

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

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.gallery-slide {
    flex: 0 0 340px;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background: #fff;
    padding: 0;
    border: 2px solid rgba(128, 0, 0, 0.4);
}
.gallery-slide:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 5;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-slide:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    text-align: left;
    transition: padding-bottom 0.3s ease;
}
.gallery-slide:hover .gallery-overlay {
    padding-bottom: 30px;
}
.gallery-title {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
}
.gallery-subtitle {
    color: #f5b041;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.gallery-btn {
    display: inline-block;
    background-color: #fbd065;
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}
.gallery-btn:hover {
    background-color: #e59c2a;
    transform: translateY(-3px);
}

.gallery-marquee-track:hover .gallery-slide:not(:hover) img {
    filter: brightness(0.6) grayscale(30%);
}


/* --- About Us Premium Image Effects --- */
.about-img-main, .about-img-overlap {
    cursor: pointer;
}
.about-img-main:hover {
    transform: scale(1.05);
}
.about-img-overlap:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 5;
}
.about-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 91, 132, 0.3);
}

/* --- Premium Animations --- */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}


/* --- Lightbox Modal --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.92);
    backdrop-filter: blur(5px);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100000;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: #f5b041;
    transform: scale(1.1);
}
@keyframes zoomIn {
    from {transform:scale(0.8); opacity: 0;} 
    to {transform:scale(1); opacity: 1;}
}
.gallery-btn {
    cursor: pointer;
}



/* --- Premium Courses Section --- */
.course-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7f9f8 100%);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.course-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(14, 122, 68, 0.1);
}
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #800000, #f5b041);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.course-card:hover::before {
    transform: scaleX(1);
}
.course-icon-wrapper {
    width: 75px; height: 75px;
    background: rgba(128, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(128,0,0,0.1);
}
.course-card:hover .course-icon-wrapper {
    background: #800000;
    transform: scale(1.1) rotate(10deg);
    border-color: #800000;
    box-shadow: 0 10px 20px rgba(128,0,0,0.2);
}
.course-icon-wrapper i {
    font-size: 2rem;
    color: #800000;
    transition: color 0.4s ease;
}
.course-card:hover .course-icon-wrapper i {
    color: #fff;
}
.course-title {
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-duration {
    display: inline-block;
    background: rgba(14, 122, 68, 0.1);
    color: #0e7a44;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}
.course-desc {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: justify;
}
.course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, #0e7a44, #0a5a32);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(14, 122, 68, 0.2);
}
.course-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(14, 122, 68, 0.4);
    color: #fff;
    text-decoration: none;
}
.course-btn i {
    transition: transform 0.3s ease;
}
.course-btn:hover i {
    transform: translateX(5px);
}



/* --- Premium Footer Design --- */
.premium-footer {
    background-color: #660000; /* Maroon from Logo */
    background-image: 
        linear-gradient(rgba(102, 0, 0, 0.85), rgba(64, 0, 0, 0.95)),
        url('../../images/slider1/5.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #e0e6ed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    border-top: 4px solid #f5b041; /* Accent Color matching gallery subtitle/star */
}

.premium-footer .footer-main {
    padding: 60px 0 40px;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
    }
}

.footer-col-new {
    display: flex;
    flex-direction: column;
}

.footer-heading-new {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.heading-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.heading-separator .line {
    height: 1px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

.heading-separator i {
    color: #f5b041; /* Gold star */
    font-size: 0.8rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: #4da6ff;
    margin-top: 4px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-socials-new {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1);
    color: #fff;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.social-btn.fb { background-color: #3b5998; }
.social-btn.tw { background-color: #000000; border: 1px solid #333; }
.social-btn.yt { background-color: #ff0000; }
.social-btn.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }


.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list li a i {
    font-size: 0.8rem;
    color: #4da6ff;
    transition: transform 0.3s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links-list li a:hover i {
    transform: translateX(3px);
}

.footer-map-container {
    background: #fff;
    padding: 4px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom-bar {
    background-color: #3b0000; /* Darker Maroon */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #a0aec0;
}

.designed-by {
    font-size: 0.9rem;
}

.designed-by span {
    color: #f5b041;
    font-weight: 600;
}

.back-to-top {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #4da6ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #007bff;
    color: #fff;
}

/* --- Quick Links Grid --- */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .quick-links-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .quick-links-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.quick-link-item .icon-circle {
    width: 80px;
    height: 80px;
    background-color: #800000; /* Maroon theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.quick-link-item:hover .icon-circle {
    background-color: #fff;
    border-color: #800000;
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3);
}

.quick-link-item .icon-circle i {
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s ease;
}

.quick-link-item:hover .icon-circle i {
    color: #800000;
}

.quick-link-item span {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    max-width: 140px;
    transition: color 0.3s ease;
}

.quick-link-item:hover span {
    color: #800000;
}

/* --- Notice Board Section --- */
.notice-board-section {
    padding: 70px 0;
    background-color: #800000;
    background-image:
        linear-gradient(rgba(128, 0, 0, 0.92), rgba(80, 0, 0, 0.96)),
        url('../../images/slider1/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.notice-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .notice-board-grid {
        grid-template-columns: 1fr;
    }
}

.notice-column {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-column-header {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 15px 20px;
    text-align: center;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(245, 176, 65, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notice-column-header i {
    color: #f5b041;
    font-size: 1.2rem;
}

.notice-scroll-area {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.notice-scroll-content {
    animation: scrollNotices 20s linear infinite;
    padding: 10px 0;
}

.notice-scroll-area:hover .notice-scroll-content {
    animation-play-state: paused;
}

@keyframes scrollNotices {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
    cursor: pointer;
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.notice-date {
    min-width: 75px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.notice-date .day {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.notice-date .year {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
}

.notice-date.highlight {
    background: rgba(245, 176, 65, 0.2);
    border-color: rgba(245, 176, 65, 0.4);
}

.notice-date.highlight .day {
    color: #f5b041;
}

.notice-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
    padding-top: 4px;
}

.notice-item:hover .notice-text {
    color: #fff;
}

.notice-view-all {
    text-align: center;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-view-all a {
    color: #f5b041;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.notice-view-all a:hover {
    color: #fff;
}

/* --- Premium Action Buttons Bar --- */
.action-buttons-bar {
    background: linear-gradient(135deg, #660000 0%, #800000 30%, #4a0000 100%);
    padding: 18px 0;
    border-bottom: 3px solid #f5b041;
}

.action-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #800000, #b30000, #cc3300, #800000);
    background-size: 300% 300%;
    animation: gradientBG 4s ease infinite;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(245, 176, 65, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.action-btn i {
    font-size: 1.15rem;
}

.action-btn:hover {
    background: linear-gradient(135deg, #f5b041, #e09422, #f5b041);
    background-size: 300% 300%;
    border-color: #f5b041;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 176, 65, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .action-buttons-wrapper {
        gap: 10px;
    }
    .action-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* --- Welcome Section - Premium Image Design --- */
.welcome-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.welcome-img-border {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.15);
    border: 4px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #800000, #f5b041, #800000);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.welcome-img-border img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.welcome-img-wrapper:hover .welcome-img-border img {
    transform: scale(1.05);
}

.welcome-img-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: linear-gradient(135deg, #800000, #5a0000);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.3);
    border: 2px solid rgba(245, 176, 65, 0.4);
    z-index: 2;
    animation: floatY 3s ease-in-out infinite;
}

.welcome-img-badge i {
    font-size: 1.6rem;
    color: #f5b041;
}

.welcome-img-badge strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.welcome-img-badge span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 400;
}

/* --- Floating WhatsApp Icon --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@ k e y f r a m e s   s c r o l l - l e f t - r e v i e w s   {   0 %   {   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   }   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e X ( c a l c ( - 5 0 %   -   1 5 p x ) ) ;   }   }  
 . r e v i e w s - m a r q u e e - c o n t e n t : h o v e r   {   a n i m a t i o n - p l a y - s t a t e :   p a u s e d ;   }  
 
@keyframes scroll-up-reviews {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-50% - 15px)); }
}

/* --- Dropdown Menu Premium Design --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #093f35 !important; /* Dark teal background */
    min-width: 250px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    border: 1px solid #14584b !important;
    list-style: none !important;
    z-index: 1000;
}

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

.dropdown-menu li {
    margin-bottom: 8px !important;
}

.dropdown-menu li:last-child {
    margin-bottom: 0 !important;
}

.dropdown-menu a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: #124d42 !important; /* Slightly lighter teal for items */
    border: 1px solid #23655a !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.dropdown-menu a:hover {
    background: #1a6254 !important;
    color: #ffffff !important;
    border-color: #318a7a !important;
    transform: translateX(4px) !important;
}

/* Submenu */
.submenu {
    background: #093f35 !important;
    min-width: 250px !important;
    border-radius: 12px !important;
    padding: 12px !important;
    border: 1px solid #14584b !important;
    list-style: none !important;
    margin-left: 5px !important;
}

/* Chairman Message Card Design */
.chairman-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: -30px;
}
.chairman-sidebar {
    width: 320px;
    background: #800000;
    color: #fff;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.chairman-photo-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.2);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.chairman-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chairman-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff !important;
}
.chairman-designation {
    font-size: 0.9rem;
    color: #f5b041;
    font-weight: 500;
    margin-bottom: 30px;
}
.chairman-social-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}
.chairman-social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}
.chairman-social-icons a:hover {
    background: #f5b041;
    color: #800000;
    transform: translateY(-3px);
}
.chairman-content {
    flex: 1;
    padding: 60px;
    position: relative;
}
.chairman-content .quote-icon {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 4rem;
    color: #f4f6f9;
    z-index: 1;
}
.chairman-content .content-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}
.chairman-content .sub-title {
    color: #800000;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.chairman-content .main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
    margin: 0;
    position: relative;
    display: inline-block;
}
.chairman-content .main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: #f5b041;
    border-radius: 2px;
}
.chairman-content .content-body {
    position: relative;
    z-index: 2;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}
.chairman-content .content-body p {
    margin-bottom: 15px;
}
.signature-block {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.warm-regards {
    font-style: italic;
    color: #777;
    margin-bottom: 5px !important;
}
.sig-name {
    font-weight: 700;
    color: #222;
    margin-bottom: 2px !important;
    font-size: 1.1rem;
}
.sig-title, .sig-college {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
}
.action-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}
.action-buttons a {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}
.btn-read-more {
    background: #800000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(128,0,0,0.3);
}
.btn-read-more:hover {
    background: #990000;
    color: #fff;
    transform: translateY(-2px);
}
.btn-contact {
    background: #fff;
    color: #800000;
    border: 1px solid #800000;
}
.btn-contact:hover {
    background: #f5b041;
    border-color: #f5b041;
    color: #fff;
}
@media (max-width: 992px) {
    .chairman-card {
        flex-direction: column;
    }
    .chairman-sidebar {
        width: 100%;
        padding: 40px 20px;
    }
    .chairman-social-icons {
        margin-top: 20px;
    }
    .chairman-content {
        padding: 40px 20px;
    }
}


/* BSCC Grid Layout */
.bscc-section {
    padding: 70px 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}
.bscc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 0 15px;
}
.bscc-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}
.bscc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128,0,0,0.1);
    border-color: #800000;
}
.bscc-card .card-icon {
    width: 60px;
    height: 60px;
    background: #fdf5e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #800000;
    transition: all 0.3s ease;
}
.bscc-card:hover .card-icon {
    background: #800000;
    color: #fff;
}
.bscc-card .card-content h3 {
    color: #800000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 5px;
}
.bscc-card .card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .bscc-grid {
        grid-template-columns: 1fr;
    }
    .bscc-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px;
    }
}

