/* ================= GLOBAL ================= */
body {
    background: linear-gradient(-45deg, #eef2f7, #f8fbff, #f3f6fa, #ffffff);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    font-family: 'Poppins', sans-serif;
}

@keyframes gradientMove {
    0% { background-position:0% 50%; }
    50% { background-position:100% 50%; }
    100% { background-position:0% 50%; }
}



/* ================= FLOATING BUTTON ================= */
.floating {
    position: fixed;
    right: 25px;
    top: 40%;
    z-index: 999;
}

.floating-link {
    background: linear-gradient(135deg,#ff6a00,#ff9800);
    color: #fff;
    padding: 14px 25px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

.floating-link:hover {
    transform: translateY(-6px) scale(1.07);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    color: #fff;
}

/* ================= HEADINGS ================= */
.feature-heading {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#0b2545,#ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

/* ================= GLASS CARD EFFECT ================= */
.feature,
.recent-news-box,
.content-about {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.feature:hover,
.recent-news-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ================= ICON STYLE ================= */
.feature-icon {
    font-size: 55px;
    background: linear-gradient(135deg,#ff6a00,#ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= NOTIFICATION PANEL ================= */
.content-about {
    background: linear-gradient(135deg,#0b2545,#133b5c);
    color: #fff;
    height: 75%;
    padding: 10px 15px;
}

.content-about marquee {
    height: 450px;
    overflow: hidden;
}

.content-about-logo-image {
    max-height: 90px;
}

.notification-bar-title {
    font-size: 22px;
    font-weight: 700;
}

.notification-item {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.notification-item:hover {
    color: #ff9800;
    padding-left: 5px;
}


@media (max-width: 576px) {

    .col-4 {
    width: 96% !important;
    

}
@media (max-width: 768px) {
    .col-4 {
        height: 75% !important;
        
    }
}



/* ================= BUTTON ================= */
.theme-btn {
    background: linear-gradient(135deg,#ff6a00,#ff9800);
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    transition: 0.4s ease;
}

.theme-btn:hover {
    background: #fff;
    color: #ff6a00;
}

/* ================= IMAGES ================= */
.recent-news-image,
.tribute-img,
.tribute-img2,
.tribute-img3,
.guidingspirits {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transition: 0.5s;
}

.recent-news-image:hover,
.tribute-img:hover,
.guidingspirits:hover {
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .carousel-inner img {
        height: 260px;
    }
    .floating {
        display: none;
    }
}

