/* ===== TOP BANNER ===== */
.banner-section {
    width: 100%;
    margin-bottom: 20px;
}

/* Carousel container */
.carousel {
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* 🔥 PERFECT BANNER IMAGE */
.banner-img {
    width: 100%;
    height: 800px;           /* ✅ ideal banner height */
    object-fit: cover;       /* ✅ no stretch, no distortion */
}

/* Controls styling */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Optional: dark overlay for premium feel */
.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-img {
        height: 450px;
    }
}


/* Layout */
.main-grid {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.left-section { flex: 3; }
.right-section { flex: 1; }


/* Card */
.card {
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

/* Leadership */
.leadership-card {
    padding: 25px;
    border-radius: 18px;
     background: linear-gradient(135deg, 
        #0F172A 0%,
        #1E3A8A 35%,
        #93C5FD 100%
);
     box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
.leadership-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #1e293b;
    font-weight: 700;
}

/* Layout */
.leaders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Leader Box */
.leader-box {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px;
    border-radius: 18px;

    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

/* Hover */
.leader-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* 🔥 ULTRA BIG IMAGE */
.leader-box img {
    width: 160px;      /* 🔥 BIG */
    height: 180px;     /* 🔥 BIG */
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid #e2e8f0;
    flex-shrink: 0;

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Text section */
.leader-box div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Text */
.leader-box h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
}

.leader-box p {
    margin: 6px 0 10px;
    font-size: 14px;
    color: #64748b;
}

/* Link */
.leader-box a {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.leader-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .leaders {
        grid-template-columns: 1fr;
    }

    .leader-box {
        flex-direction: column;
        text-align: center;
    }

    .leader-box img {
        width: 180px;
        height: 200px;
    }
}

/* Quick Links */

.quick-links-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Title */
.ql-title {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Grid Layout */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* Each Item */
.ql-item {
    text-align: center;
    background: #f5f7fb;
    border-radius: 12px;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

/* Icon */
.ql-item i {
    font-size: 26px;
    margin-bottom: 8px;
    display: block;
}

/* Text */
.ql-item span {
    font-size: 13px;
    font-weight: 500;
}

/* Colors */
.insta i { color: #E1306C; }
.fb i { color: #1877F2; }
.tw i { color: #1DA1F2; }
.bprd i { color: #2c7be5; }
.tmis i { color: #f6ad55; }
.igot i { color: #38b2ac; }
.eustad i { color: #6f42c1; }
.maha i { color: #ed8936; }

/* Hover */
.ql-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Whats New */
.whats-new {
	height: 400px;   /* 🔥 increase overall card height */
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.whats-new h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #1e293b;
    font-weight: 600;
}

/* Marquee container */
.news-marquee {
    height: 260px;
    overflow: hidden;
    height: 320px;   /* 🔥 increase scrolling area */
   
}

/* Each news item */
.news-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #f8fafc;
    transition: 0.3s;
}

/* Hover effect */
.news-item:hover {
    background: #eef2ff;
    transform: translateX(5px);
}

/* Icon */
.news-item i {
    font-size: 20px;
    color: #2563eb;
    margin-top: 4px;
}

/* Text */
.news-item p {
    margin: 0;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

/* Link */
.news-item a {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.news-item a:hover {
    text-decoration: underline;
}

/* News Ticker */
.news-ticker {
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 6px;

    /* subtle top & bottom lines */
    border-top: 2px solid #2563eb;
    border-bottom: 2px solid #2563eb;

    margin-top: 10px;
}

/* marquee */
.news-ticker marquee {
    font-size: 14px;
    color: #334155;
}

/* links */
.news-ticker a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

/* hover */
.news-ticker a:hover {
    color: #2563eb;
}

/* spacing */
.news-ticker span {
    margin-right: 20px;
}


/* 🔥 MOBILE PERFECT STACK (NO CSS CHANGE, ONLY OVERRIDE) */
@media (max-width: 768px) {

    .main-grid {
        flex-direction: column !important;
        padding: 10px !important;
        gap: 15px !important;
    }

    .left-section,
    .right-section {
        width: 100% !important;
        flex: 100% !important;
    }

    /* Leadership full width */
    .leaders {
        grid-template-columns: 1fr !important;
    }

    /* Leader box center */
    .leader-box {
        flex-direction: column !important;
        text-align: center !important;
    }

    /* Image center + proper size */
    .leader-box img {
        margin-bottom: 10px;
    }

    /* Quick links better fit */
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Whats new full width */
    .whats-new {
        height: auto !important;
    }

    .news-marquee {
        height: 250px !important;
    }

    /* Banner fix */
    .banner-img {
        height: 200px !important;
    }

    /* News ticker spacing */
    .news-ticker {
        font-size: 13px;
        padding: 8px;
    }

}

