/* ================================================
   GGPS Bokaro - Complete Custom Styles (Clone)
   ================================================ */

:root {
    --primary-color: #2b2fbe;
    --accent-red: #ff4a60;
    --top-bar-bg: #f7f5f2;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --edu-pink: #ee4a62;
    --edu-teal: #2b2fbe;
    --edu-purple: #8e56ff;
    --edu-yellow: #ffa41b;
}

/* ======= GLOBAL ======= */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

* { box-sizing: border-box; }

.section-title .pre-title {
    color: var(--edu-pink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title .title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #181818;
}

.section-title .title .color-secondary { color: #2b2fbe; }
.section-title.text-center { margin-bottom: 60px; }

.fw-600 { font-weight: 600; }

/* ==============================
   TOP BAR (PRE-HEADER)
   ============================== */
.top-bar {
    background: linear-gradient(135deg, #1e1b4b 0%, #2b2fbe 100%);
    color: #ffffff;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: none;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f8fafc;
    padding: 5px 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.top-bar .contact-item:hover { color: #facc15; }
.top-bar .contact-item i { color: #facc15; font-size: 0.95rem; }

.top-bar .v-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px;
}

.top-bar .social-link {
    color: #ffffff;
    background: rgba(255,255,255,0.15);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media (min-width: 992px) {
    .top-bar .d-flex.flex-wrap {
        flex-wrap: nowrap !important;
        gap: 0.75rem !important;
    }
    .top-bar .contact-item {
        white-space: nowrap;
    }
    .top-bar .contact-item span {
        font-size: 0.75rem !important;
    }
}

.top-bar .social-link:hover { 
    background: #facc15;
    color: #1e1b4b;
    transform: translateY(-2px);
}

.top-bar .apply-btn {
    background: linear-gradient(135deg, #ee4a62 0%, #e11d48 100%);
    color: white !important;
    padding: 6px 16px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(238, 74, 98, 0.3);
    white-space: nowrap;
}

.top-bar .apply-btn:hover { 
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(238, 74, 98, 0.4);
}

.top-bar .register-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    padding: 6px 16px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

.top-bar .register-btn:hover { 
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
}

/* ==============================
   LIVE ANNOUNCEMENTS BAR
   ============================== */
.live-announcements-bar {
    background-color: #1e293b;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.live-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ==============================
   MAIN NAVBAR
   ============================== */
.navbar {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.header-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover .header-logo { transform: scale(1.03); }

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.school-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0;
    padding: 0;
    letter-spacing: -0.5px;
}

.school-location {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
    padding: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: 1px solid #e2e8f0 !important;
    padding: 8px;
}

.navbar-toggler:focus { box-shadow: none; border-color: var(--primary-color) !important; }

.navbar .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px !important;
    text-transform: capitalize;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--accent-red); }

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    min-width: 240px;
    margin-top: 0 !important;
    border: none;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.dropdown-item {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--top-bar-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-toggle::after { display: none; }

.navbar .dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }

/* Animation */
.animate { animation-duration: 0.3s; animation-fill-mode: both; }

@keyframes slideIn {
    0% { transform: translateY(1rem); opacity: 0; }
    100% { transform: translateY(0rem); opacity: 1; }
}

.slideIn { animation-name: slideIn; }

/* ==============================
   HERO SLIDER
   ============================== */
.hero-slider {
    position: relative;
    height: 800px;
    background-color: #f7f5f2;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 10s ease-in-out;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.carousel-item.active .hero-bg {
    animation: kenBurnsZoomIn 15s infinite alternate ease-in-out;
}

.carousel-item:nth-child(even).active .hero-bg {
    animation: kenBurnsZoomOut 15s infinite alternate ease-in-out;
}

@keyframes kenBurnsZoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

@keyframes kenBurnsZoomOut {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.shape-dots {
    position: absolute;
    top: 20%; left: 2%;
    z-index: 11;
    opacity: 0.3;
}

.hero-content { padding-bottom: 150px; }

.hero-subtitle {
    color: var(--edu-yellow) !important;
    background: transparent;
    display: inline-block;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    color: #ffffff !important;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 550px;
}

/* Entry Animations */
.carousel-item.active .animate-item {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.carousel-item.active .hero-subtitle {
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.carousel-item.active .hero-title {
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

.carousel-item.active .hero-desc {
    animation-name: fadeInUp;
    animation-delay: 0.6s;
}

.carousel-item.active .hero-btns {
    animation-name: fadeInUp;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Carousel Buttons */
.carousel-nav-wrapper {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    color: #181818;
    font-size: 1.1rem;
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--edu-pink);
    color: white;
    transform: translateX(-5px);
}

.shape-bottom {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    line-height: 0;
    z-index: 15;
}

.shape-bottom svg { width: 100%; height: 160px; }

/* Features Strip */
.features-section {
    margin-top: -140px;
    position: relative;
    z-index: 25;
}

.features-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

.feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 28px 25px;
    border-right: 1px solid #f1f5f9;
}

.feature-item:last-child { border-right: none; }

.feature-item:hover { background-color: #fafbff; }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i { font-size: 2.2rem; }
.feature-icon.teal-bg i { color: var(--edu-teal); }
.feature-icon.pink-bg i { color: var(--edu-pink); }
.feature-icon.purple-bg i { color: var(--edu-purple); }
.feature-icon.yellow-bg i { color: var(--edu-yellow); }

.feature-item h6 { font-size: 1.05rem; color: #181818; font-weight: 700; }
.feature-item p { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); }

/* ==============================
   ANNOUNCEMENTS & NEWS SECTION
   ============================== */
.urgent-cause-section { padding: 80px 0 60px; }

.urgent-cause-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.cause-left { background-color: #ffffff; }
.cause-right { background: linear-gradient(135deg, #2b2fbe 0%, #1a1d9b 100%); }

.cause-inner { padding: 45px 50px; }

.cause-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cause-left .cause-title { color: #181818; }
.cause-right .cause-title { color: #fff; }
.cause-right .cause-title i { color: #ffba00; }

/* Announcement Ticker */
.announcement-ticker {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--edu-pink) transparent;
}

.announcement-ticker::-webkit-scrollbar { width: 6px; height: 6px; }
.announcement-ticker::-webkit-scrollbar-thumb { background: var(--edu-pink); border-radius: 4px; }

.announcement-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-bottom: none;
}

.announcement-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.announcement-item:last-child { margin-bottom: 0; }

.ann-date {
    background: #e0f2fe; /* light blue */
    color: #1e3a8a; /* dark blue */
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ann-date .day { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.ann-date .month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-top: 2px; }

.ann-content {
    padding-right: 40px; /* space for NEW badge */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ann-content h6 {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.3;
}

.ann-content p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

/* News Ticker */
.popular-ticker {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.popular-ticker::-webkit-scrollbar { width: 6px; height: 6px; }
.popular-ticker::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: transparent;
    border-radius: 12px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    border-bottom: none;
}

.news-item:hover { 
    background-color: rgba(255,255,255,0.05);
}

.news-item:last-child { margin-bottom: 0; }

.news-img {
    width: 140px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-tag {
    display: inline-block;
    background-color: #1e1b4b;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    align-self: flex-start;
}

.news-content h6 { 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: #ffffff; 
    margin-bottom: 6px; 
    line-height: 1.3;
}

.news-content p { 
    font-size: 0.8rem; 
    color: rgba(255,255,255,0.7); 
    margin: 0; 
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-link {
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-link-dark { color: var(--edu-pink); }
.view-all-link-dark:hover { gap: 14px; color: var(--edu-pink); }
.view-all-link-light { color: rgba(255,255,255,0.85); }
.view-all-link-light:hover { gap: 14px; color: white; }

/* ==============================
   ABOUT SECTION
   ============================== */
.edu-about-area {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-style-3 .about-image-gallery {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.about-style-3 .about-image-gallery .main-img-1 {
    width: 85%;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-style-3 .about-image-gallery .main-img-2 {
    position: absolute;
    bottom: 0; right: 0;
    width: 50%;
    border-radius: 15px;
    border: 8px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    z-index: 2;
}

.about-content .pre-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--edu-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content .title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content .title .color-secondary { color: var(--edu-teal); }

.about-content .nav-tabs {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    gap: 30px;
}

.about-content .nav-tabs .nav-link {
    border: none;
    padding: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #181818;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.about-content .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 0; height: 2px;
    background: var(--edu-pink);
    transition: all 0.3s ease;
}

.about-content .nav-tabs .nav-link.active { color: var(--edu-pink); }
.about-content .nav-tabs .nav-link.active::after { width: 100%; }

.about-content .tab-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-content .features-list {
    list-style: none;
    padding: 0; margin: 0;
}

.about-content .features-list li {
    font-size: 15px;
    font-weight: 600;
    color: #181818;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content .features-list li i { color: var(--edu-pink); font-size: 13px; }

/* ==============================
   STATS / COUNTER SECTION
   ============================== */
.counter-section { padding-bottom: 100px; }

.counter-item {
    text-align: center;
    background: #fff;
    padding: 50px 30px 40px;
    border-radius: 20px 20px 20px 80px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    margin-top: 35px;
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.counter-item .counter-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: absolute;
    top: -35px; left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

.counter-item .counter-icon.teal-bg { background-color: var(--edu-teal); }
.counter-item .counter-icon.pink-bg { background-color: var(--edu-pink); }
.counter-item .counter-icon.purple-bg { background-color: var(--edu-purple); }
.counter-item .counter-icon.yellow-bg { background-color: var(--edu-yellow); }

.counter-item .number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    margin-top: 10px;
}

.counter-item .title {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teal-color { color: var(--edu-teal); }
.pink-color { color: var(--edu-pink); }
.purple-color { color: var(--edu-purple); }
.yellow-color { color: var(--edu-yellow); }

/* ==============================
   FACILITIES SECTION
   ============================== */
.activities-section {
    padding: 100px 0;
    background-color: #f0f4f8;
    position: relative;
    overflow: hidden;
}

.facility-cloud-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    transition: all 0.4s ease;
    background: #fff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.facility-cloud-item:hover { transform: translateX(10px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.cloud-icon {
    width: 80px; height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}

.cloud-icon.teal-bg { background: rgba(43,47,190,0.1); color: var(--edu-teal); }
.cloud-icon.pink-bg { background: rgba(238,74,98,0.1); color: var(--edu-pink); }
.cloud-icon.purple-bg { background: rgba(142,86,255,0.1); color: var(--edu-purple); }
.cloud-icon.yellow-bg { background: rgba(255,164,27,0.1); color: var(--edu-yellow); }
.cloud-icon.green-bg { background: rgba(22,163,74,0.1); color: #16a34a; }

.cloud-content h5 { font-size: 1rem; font-weight: 700; color: #181818; margin-bottom: 5px; }
.cloud-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Campus Feature Image */
.campus-feature-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    position: relative;
}

.campus-feature-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.campus-badge {
    position: absolute;
    bottom: 30px; left: 30px;
    background: white;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 15px;
}

.badge-icon {
    width: 55px; height: 55px;
    background: var(--edu-pink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem;
}

.badge-text .num { font-size: 1.8rem; font-weight: 800; color: #181818; line-height: 1; }
.badge-text .label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* ==============================
   GALLERY SECTION
   ============================== */
.gallery-section { padding: 100px 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.gallery-item:first-child { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(43,47,190,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i { font-size: 2rem; color: white; }

/* ==============================
   WHY CHOOSE US SECTION
   ============================== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1159 0%, #2b2fbe 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.why-section .section-title .pre-title { color: #ffba00; }
.why-section .section-title .title { color: white; }
.why-section .section-title .title .color-secondary { color: #ffba00; }

.why-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.25);
}

.why-icon {
    width: 65px; height: 65px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.why-card h5 { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ==============================
   TESTIMONIALS / PRINCIPAL MSG
   ============================== */
.testimonial-section {
    padding: 100px 0;
    background: #fdf9f9;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

.quote-icon {
    font-size: 4rem;
    color: var(--edu-pink);
    opacity: 0.15;
    position: absolute;
    top: 20px; left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 15px; }

.author-img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--edu-pink);
}

.author-info h6 { font-size: 1rem; font-weight: 700; color: #181818; margin: 0; }
.author-info span { font-size: 0.82rem; color: var(--text-muted); }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
    padding: 80px 0;
    background: var(--edu-pink);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-section h2 { color: white; font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin: 0; }

.btn-cta-white {
    background: white;
    color: var(--edu-pink);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-white:hover {
    background: #181818;
    color: white;
    transform: translateY(-3px);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-outline:hover { background: white; color: var(--edu-pink); transform: translateY(-3px); }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
    background: #0f1033;
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}

.footer-brand .logo { height: 65px; width: auto; margin-bottom: 20px; }
.footer-brand h4 { color: white; font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.7; }

.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }

.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn:hover { background: var(--edu-pink); color: white; transform: translateY(-3px); }

.footer-heading {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--edu-pink);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--edu-pink);
    font-size: 0.8rem;
}

.footer-links a:hover { color: white; padding-left: 5px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(238,74,98,0.15);
    color: var(--edu-pink);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--edu-pink); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: var(--edu-pink); text-decoration: none; }

/* ==============================
   BREADCRUMB (Inner Pages)
   ============================== */
.edu-breadcrumb {
    padding: 80px 0;
    background-color: #fdf9f9;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-breadcrumb .container { position: relative; z-index: 10; }

.edu-breadcrumb .breadcrumb-title {
    font-size: 50px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 15px;
    line-height: 1.2;
}

.edu-breadcrumb .breadcrumb-title span { color: var(--edu-teal); }

.edu-breadcrumb .breadcrumb {
    background: transparent; padding: 0; margin: 0; justify-content: center;
}

.edu-breadcrumb .breadcrumb-item { font-size: 16px; font-weight: 500; color: #555; }

.edu-breadcrumb .breadcrumb-item a {
    color: #181818; text-decoration: none; transition: color 0.3s ease;
}

.edu-breadcrumb .breadcrumb-item a:hover { color: var(--edu-pink); }
.edu-breadcrumb .breadcrumb-item.active { color: var(--edu-pink); }

.edu-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #181818;
    padding: 0 10px;
}

.edu-breadcrumb .bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.edu-breadcrumb .bg-circle-1 {
    width: 500px; height: 500px;
    background: #fdf2f2;
    top: -150px; left: -100px;
}

.edu-breadcrumb .bg-circle-2 {
    width: 400px; height: 400px;
    background: #fffcf0;
    bottom: -100px; right: -50px;
}

.edu-breadcrumb .shape-circle-dashed {
    top: 15%; right: 10%;
    width: 160px; height: 160px;
    border: 3px dashed #ee4a62;
    border-radius: 50%;
    opacity: 0.2;
    position: absolute;
    animation: rotate 20s linear infinite;
}

.edu-breadcrumb .shape-dots-red {
    bottom: 20%; left: 10%;
    width: 100px; height: 100px;
    background-image: radial-gradient(#ee4a62 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    position: absolute;
}

.edu-breadcrumb .shape-dots-green {
    top: 20%; right: 12%;
    width: 80px; height: 80px;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    position: absolute;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==============================
   BTN PRIMARY
   ============================== */
.btn-primary-custom {
    background-color: var(--edu-pink);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238,74,98,0.35);
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section { padding: 100px 0; }

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.ci-icon {
    width: 55px; height: 55px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ci-icon.teal { background: rgba(43,47,190,0.1); color: var(--edu-teal); }
.ci-icon.pink { background: rgba(238,74,98,0.1); color: var(--edu-pink); }
.ci-icon.yellow { background: rgba(255,164,27,0.1); color: var(--edu-yellow); }

.ci-content h6 { font-size: 1rem; font-weight: 700; color: #181818; margin-bottom: 5px; }
.ci-content p, .ci-content a {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.ci-content a:hover { color: var(--edu-pink); }

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #181818;
    margin-bottom: 8px;
}

.contact-form-card p { color: var(--text-muted); margin-bottom: 30px; }

.form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--edu-teal);
    box-shadow: 0 0 0 4px rgba(43,47,190,0.08);
}

.form-label { font-weight: 600; font-size: 0.9rem; color: #374151; margin-bottom: 8px; }

.map-section { background: #f8fafc; }

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    height: 450px;
}

/* ==============================
   GALLERY PAGE
   ============================== */
.gallery-full-section { padding: 80px 0; }

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

.gallery-full-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.gallery-full-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-full-item:hover img { transform: scale(1.1); }

.gallery-full-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-full-item:hover .gallery-full-overlay { transform: translateY(0); }

/* ==============================
   NOTICE PAGE
   ============================== */
.notice-section { padding: 80px 0; }

.notice-card {
    background: white;
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.notice-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    color: inherit;
}

.notice-date-box {
    background: var(--edu-pink);
    color: white;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    flex-shrink: 0;
    min-width: 65px;
}

.notice-date-box .day { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.notice-date-box .month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.notice-date-box .year { font-size: 0.65rem; opacity: 0.8; }

.notice-info h6 { font-size: 1rem; font-weight: 700; color: #181818; margin-bottom: 5px; }
.notice-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.notice-arrow { margin-left: auto; color: var(--edu-pink); font-size: 1.1rem; flex-shrink: 0; }

/* ==============================
   ABOUT PAGE CONTENT
   ============================== */
.about-page-section { padding: 100px 0; }

.vision-card {
    background: linear-gradient(135deg, #2b2fbe, #1a1d9b);
    color: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.vision-card h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; }
.vision-card p { opacity: 0.85; line-height: 1.8; }

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    height: 100%;
}

.mission-card h4 { font-size: 1.5rem; font-weight: 800; color: #181818; margin-bottom: 15px; }
.mission-card p { color: var(--text-muted); line-height: 1.8; }

/* ==============================
   SCROLL TO TOP
   ============================== */
#scrollTop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--edu-pink);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(238,74,98,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-color); transform: translateY(-3px); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 991px) {
    .top-bar { padding: 5px 0; }
    .top-bar .contact-item { font-size: 0.7rem; padding: 5px 0; }
    .top-bar .apply-btn, .top-bar .register-btn { padding: 8px 10px; font-size: 0.65rem; }

    .header-logo { height: 42px; }
    .school-name { font-size: 1rem; }
    .school-location { font-size: 0.7rem; }

    .hero-slider { height: 580px; }
    .hero-title { font-size: 2.8rem; }
    .hero-content { padding-bottom: 80px; text-align: center; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }

    .carousel-nav-wrapper { right: 20px; top: auto; bottom: 120px; flex-direction: row; transform: none; }
    .shape-dots { display: none; }
    .features-section { margin-top: -20px; }

    .edu-about-area { padding: 60px 0; }
    .about-style-3 .about-image-gallery { margin-bottom: 40px; }
    .about-content .title { font-size: 32px; }

    .cause-inner { padding: 30px 25px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-grid .gallery-item:first-child { grid-row: auto; }

    .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }

    .activities-section { padding: 60px 0; }
    .edu-breadcrumb .breadcrumb-title { font-size: 36px; }

    .navbar-collapse {
        background: #ffffff;
        border-top: 1px solid #f1f5f9;
        margin-top: 10px;
        padding: 15px 0;
    }

    .navbar .nav-link::after { display: none; }

    .dropdown-menu {
        box-shadow: none !important;
        padding-left: 15px;
        background: #f8fafc;
        border-radius: 8px;
        margin: 5px 0 15px 0 !important;
        border-top: none;
    }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-slider { height: 500px; }
    .section-title .title { font-size: 32px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-full-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 30px 20px; }
    .cta-section h2 { font-size: 1.8rem; }
    .counter-item .number { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-slider { height: 450px; }
    .hero-desc { display: none; }
    .cause-inner { padding: 25px 20px; }
}

/* Responsive Tweaks */
.cause-inner.left-inner { padding: 80px 10% 80px 15%; }
.cause-inner.right-inner { padding: 80px 15% 80px 10%; }

@media (max-width: 991.98px) {
    .cause-inner.left-inner, .cause-inner.right-inner {
        padding: 60px 5%;
    }
}

@media (max-width: 767.98px) {
    .cause-inner.left-inner, .cause-inner.right-inner {
        padding: 40px 15px;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem !important;
    }
    .hero-slide p {
        font-size: 1.1rem !important;
    }
    
    .top-bar .contact-item span {
        font-size: 0.75rem !important;
    }
}
