/* =========================
   RESET & GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bree Serif', serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #111;
    background: #f8f9fb;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4 {
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

h1 { font-size: 38px; margin-bottom: 20px; }
h2 { font-size: 30px; margin-bottom: 18px; }
h3 { font-size: 22px; }

p {
    margin-bottom: 18px;
    text-align: justify;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   SECTION (CARD STYLE)
========================= */
section {
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* =========================
   HEADER
========================= */
header {
    background: #000;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

/* =========================
   NAVIGATION
========================= */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    font-size: 15px;
}

nav a:hover {
    color: #ccc;
}

/* =========================
   DROPDOWN (UPGRADED)
========================= */
.dropdown {
    position: relative;
    padding-bottom: 10px;
}

/* ARROW */
.dropdown > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
}

/* MENU */
.dropdown-content {
    position: absolute;
    top: 110%;
    left: 0;
    background: #000;
    min-width: 220px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* ITEMS */
.dropdown-content a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    border-bottom: 1px solid #222;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #111;
    padding-left: 20px;
}

/* SHOW */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   MOBILE DROPDOWN FIX
========================= */
@media (max-width: 768px) {

    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        border-radius: 0;
    }

    .dropdown-content.show {
        display: block;
    }
}

/* =========================
   SLIDER (PREMIUM)
========================= */
.slider {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.slider::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    top: 0;
    left: 0;
    z-index: 1;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption */
.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 3;
}

/* Center Text */
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 3;
}

.slider-text h1 {
    font-size: 42px;
}

.slider-text p {
    font-size: 18px;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    z-index: 4;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* =========================
   FEATURES
========================= */
.features {
    display: flex;
    gap: 20px;
}

.feature-box {
    flex: 1;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* =========================
   ABOUT
========================= */
.about-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-img {
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

/* =========================
   BUTTON
========================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================
   FULL IMAGE SECTION (FIXED)
========================= */
.full-image {
    margin-top: 40px;
}

/* Image stays normal block */
.full-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Text comes BELOW image */
.full-text {
    position: relative;     /* remove any overlay behavior */
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* =========================
   FOOTER (FULL WIDTH PREMIUM)
========================= */
footer {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 0;
}

/* Remove container restriction inside footer */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Footer columns */
.footer-box {
    flex: 1;
    min-width: 250px;
}

/* Footer headings */
.footer-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Footer links */
.footer-box a {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-box a:hover {
    color: #fff;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #fff;   /* default white */
    transition: 0.3s;
}

/* Brand Colors on Hover */
.social-icons a:hover .fa-youtube { color: #FF0000; }
.social-icons a:hover .fa-facebook { color: #1877F2; }
.social-icons a:hover .fa-instagram { color: #E4405F; }
.social-icons a:hover .fa-linkedin { color: #0A66C2; }
.social-icons a:hover .fa-envelope { color: #FFD700; }

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* =========================
   ANIMATION
========================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    nav {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        width: 100%;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .features {
        flex-direction: column;
    }

    .about-box {
        flex-direction: column;
        text-align: center;
    }

    .slider {
        height: 200px;
    }

    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
}

/* =========================
   SCROLL ANIMATION
========================= */

/* Hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* Fade Up */
.animate.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.animate.fade-left {
    transform: translateX(40px);
}
.animate.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.animate.fade-right {
    transform: translateX(-40px);
}
.animate.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In */
.animate.zoom-in {
    transform: scale(0.9);
}
.animate.zoom-in.show {
    opacity: 1;
    transform: scale(1);
}

/* =========================
   WHY RC PAGE
========================= */

.why-rc-page {
    text-align: center;
}

/* TITLE */
.section-title {
    margin-bottom: 5px;
}

.section-subtitle {
    margin-bottom: 30px;
    color: #555;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* ITEM */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* =========================
   LIGHTBOX
========================= */

#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox-img {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =========================
   PREMIUM GALLERY STYLE
========================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ZOOM EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    padding: 20px;
    color: #fff;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.2),
        transparent
    );

    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* SHOW ON HOVER */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */
.gallery-overlay h3 {
    margin: 0;
    font-size: 16px;
}

/* SUBTEXT */
.gallery-overlay span {
    font-size: 12px;
    opacity: 0.8;
}

/* =========================
   COLLAB ZIG-ZAG STYLE
========================= */

.collab-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

/* REVERSE (ZIG-ZAG) */
.collab-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE - 20% */
.collab-image {
    flex: 1;
    max-width: 20%;
}

.collab-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* CONTENT - 80% */
.collab-content {
    flex: 4;
}

.collab-content h2 {
    margin-bottom: 10px;
}

.collab-content p {
    color: #444;
}

/* =========================
   HOVER EFFECT (PREMIUM)
========================= */
.collab-row:hover .collab-image img {
    transform: scale(1.05);
    transition: 0.4s;
}

.collab-row:hover .collab-content {
    transform: translateY(-5px);
    transition: 0.4s;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .collab-row,
    .collab-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .collab-image {
        max-width: 150px;
    }
}

/* ERP SECTION */
.erp-section {
    padding: 80px 5%;
    background: #f9f9f9;
}

.erp-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT 30% */
.erp-left {
    flex: 1;
    max-width: 30%;
}

.erp-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RIGHT 70% */
.erp-right {
    flex: 2;
    max-width: 70%;
}

.erp-right h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.erp-right p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* APP ICONS */
.app-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.app-icons img {
    width: 120px;
    transition: transform 0.3s ease;
}

.app-icons img:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .erp-container {
        flex-direction: column;
    }

    .erp-left, .erp-right {
        max-width: 100%;
    }

    .app-icons {
        justify-content: center;
    }
}

/* DARK PREMIUM SECTION */
/* Used in Monthly Report */
.dark-features {
    background: linear-gradient(135deg, #000, #0a0a0a);
    padding: 100px 5%;
    text-align: center;
}

/* TITLE */
.section-title.light {
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #aaa;
    margin-bottom: 60px;
    font-size: 16px;
    text-align: center;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* IMAGE */
.feature-img img {
    width: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.2);
}

/* TEXT */
.feature-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   TEAM PAGE (STANDALONE FIX)
========================= */

/* HERO SECTION */
.team-hero {
    text-align: center;
    padding: 80px 5%;
}

/* BUTTONS */
.team-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* BUTTON STYLE */
.team-btn {
    padding: 14px 30px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.team-btn:hover {
    background: #333;
    transform: translateY(-3px);
}

/* SECOND BUTTON */
.team-btn.secondary {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.team-btn.secondary:hover {
    background: #000;
    color: #fff;
}

/* IMAGE SECTION */
.team-image-section {
    padding: 0;
    margin-top: 40px;
}

/* WRAPPER */
.team-image-wrapper {
    position: relative;
    width: 100%;
}

/* IMAGE */
.team-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* OVERLAY */
.team-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    padding: 12px 25px;
    border-radius: 30px;
}

.team-overlay h2 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .team-overlay {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* =========================
   TEACHING & ADMIN TEAM
========================= */

.teaching-team {
    text-align: center;
}

/* GRID */
/*.team-grid { */
    /*display: grid; */
    /*grid-template-columns: repeat(4, 1fr); /* 4 per row */
    /*gap: 50px; */
    /*margin-top: 40px; */
/*}*/

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
}

/* CARD */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.team-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* INFO */
.team-info {
    padding: 15px;
}

/* NAME */
.team-info h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* DEGREE */
.team-info p {
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   COURSES PAGE
========================= */

.courses-page {
    text-align: center;
}

/* GRID */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* ITEM */
.course-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.course-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

/* ZOOM */
.course-item:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.course-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.3),
        transparent
    );

    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

/* SHOW */
.course-item:hover .course-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */
.course-overlay h3 {
    margin: 0;
    font-size: 18px;
}

/* TEXT */
.course-overlay span {
    font-size: 13px;
    opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */
/* Tablet */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

.course-overlay::after {
    content: "→";
    font-size: 20px;
    margin-top: 5px;
}

.course-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.course-item {
    border: 1px solid #eee;
}

/* =========================
   CONTENT PAGE (GENERIC)
========================= */

.content-page {
    text-align: center;
}

/* BANNER IMAGE */
.content-banner {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* CONTENT BOX */
.content-box {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* LIST */
.content-list {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 10px;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* LEFT 80% */
.contact-left {
    flex: 4;
}

/* RIGHT 20% */
.contact-right {
    flex: 1;
    text-align: center;
}

/* CONTACT BOX */
.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* MAP */
.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* QR */
.qr-box img {
    width: 150px;
    margin-bottom: 10px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: 100%;
    }

    .contact-right {
        margin-top: 20px;
    }
}

/* =========================
   WHATSAPP FLOATING ICON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;          /* equal width */
    height: 60px;         /* equal height */

    background: #25D366;
    color: #fff;

    display: flex;        /* center icon */
    align-items: center;
    justify-content: center;

    border-radius: 50%;   /* makes it circle */

    font-size: 26px;
    z-index: 9999;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* =========================
   SCROLL TO TOP
========================= */
.scrolltop-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 10px;
    z-index: 9999;
}

/* CLUB @ RC GRID */
.clubcourses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 25px;
}


/* =========================
   CLUB PAGE
========================= */

.club-page {
    text-align: center;
}

/* =========================
   TABS
========================= */

.tabs {
    margin: 30px 0;
}

.tab-btn {
    padding: 10px 25px;
    margin: 5px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #000;
    color: #fff;
}

/* =========================
   TAB CONTENT
========================= */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =========================
   GALLERY (5 PER ROW)
========================= */
.club-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* IMAGE */
.club-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

/* HOVER */
.club-gallery img:hover {
    transform: scale(1.05);
}

.tab-content {
    display: none;
    opacity: 0;
    transition: 0.4s;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox-img {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .club-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .club-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   VIDEO GALLERY
========================= */

.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* YOUTUBE IFRAME */
.video-gallery iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: none;
}

#videoLightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
}

#videoFrame {
    display: block;
    margin: 60px auto;
    width: 80%;
    height: 70vh;
    border-radius: 10px;
}

/* LOCAL VIDEO */
.video-gallery video {
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-gallery {
        grid-template-columns: 1fr;
    }
}


/* =========================
   GALLERY PAGE
========================= */
/* EVENT GRID */
.event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.course-card,
.event-card {
    position: relative;
}


/* IMAGE */
.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* OVERLAY */
.event-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;

    opacity: 0;
    transition: 0.3s;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

/* PAGINATION */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.page-btn {
    display: inline-block;
    margin: 5px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #eee;
    color: #000;
    text-decoration: none;
}

.page-btn:hover {
    background: #000;
    color: #fff;
}

.page-btn.active {
    background: #000;
    color: #fff;
}


/* =========================
   BROCHURE PAGE
========================= */
/* BROCHURE PAGE */
.brochure-page {
    text-align: center;
}

/* DOWNLOAD BUTTON */
.brochure-download {
    margin-bottom: 20px;
}

/* PDF CONTAINER */
.pdf-container {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}


/* =========================
   NEWS AND EVENTS PAGE
========================= */
/* NEWS PAGE */
.news-page {
    text-align: center;
}

/* EVENT SECTION */
.event-section {
    margin-top: 40px;
}

.event-title {
    margin-bottom: 20px;
    text-align: left;
}

/* GRID */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER ZOOM */
.event-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.event-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    opacity: 0;
    transition: 0.4s;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

/* CLICKABLE LINK */
.event-card a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* VIEW MORE */
.view-more {
    margin-top: 20px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ACHIEVERS PAGE
========================= */
/* ACHIEVERS PAGE */
.achievers-page {
    text-align: center;
}

/* SLIDER */
.achiever-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 12px;
}

/* SLIDE */
.achiever-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.achiever-slide.active {
    opacity: 1;
    z-index: 2;
}

/* IMAGE */
.achiever-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.7);
}

.achiever-section {
    position: relative;
}

.achiever-section::after {
    content: "Top Achiever";
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 22px;
    background: rgba(0,0,0,0.5);
    padding: 8px 15px;
    border-radius: 5px;
}

.pdf-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

/* =========================
   SPORTS INTRO (50-50)
========================= */

.sports-intro {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

/* LEFT TEXT */
.sports-text {
    flex: 1;
    text-align: justify;
}

/* RIGHT VIDEO */
.sports-video {
    flex: 1;
}

.sports-video iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sports-intro {
        flex-direction: column;
    }

    .sports-video iframe {
        height: 220px;
    }
}


/* =========================================
   AWARD GALLERY
========================================= */

/* CATEGORY BUTTONS */
.award-category-tabs{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 30px;
}

.category-btn{
    padding: 12px 22px;
    border: none;
    border-radius: 30px;
    background: #e5e7eb;
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.category-btn:hover{
    background: #2563eb;
    color: #fff;
}

.category-btn.active{
    background: #2563eb;
    color: #fff;
}

/* CATEGORY CONTENT */
.category-content{
    display: none;
}

.category-content.active{
    display: block;
}

/* HEADINGS */
.gallery-heading,
.performance-title{
    text-align: center;
    margin-bottom: 25px;
    margin-top: 10px;
    font-size: 28px;
    color: #1e3a8a;
}

/* PERFORMANCE SECTION */
.performance-section{
    margin-top: 70px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

/* =========================================
   AWARD BANNER - IMAGE BELOW THE TITLE OF AWARD CEREMONY
========================================= */

.award-banner{
    width: 100%;
    margin: 30px 0 40px;
    overflow: hidden;
    border-radius: 18px;
}

.award-banner img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .award-banner img{
        height: 250px;
    }

}


/* =========================
   INTERNSHIP PAGE
========================= */

.internship-intro {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

/* TEXT */
.internship-text {
    flex: 1;
    text-align: justify;
}

/* BANNER */
.internship-banner {
    flex: 1;
}

.internship-banner img {
    width: 100%;
    border-radius: 12px;
}

/* =========================
   VIDEO GALLERY
========================= */

.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.video-card iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* HOVER EFFECT */
.video-card iframe:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .internship-intro {
        flex-direction: column;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .video-card iframe {
        height: 220px;
    }
}