
        :root {
            --karate-red: #c62828;
            --karate-black: #111;
            --karate-dark: #1f1f1f;
        }

        /* Header */
        header {
            background: linear-gradient(90deg, var(--karate-red), var(--karate-red));
        }
.org-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.regd {
    font-size: .9rem;
    font-weight: 500;
}

.org-subtitle {
    font-size: .95rem;
}
.emblem-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--karate-red);
    border-radius: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: auto;
}


.tricolor-line {
    width: 560px;
    height: 4px;
    background: linear-gradient(
        to right,
        #ff9933 0%,
        #ff9933 33%,
        #ffffff 33%,
        #ffffff 66%,
        #138808 66%,
        #138808 100%
    );
}

        /* Navbar */
        .navbar {
            background-color: var(--karate-black) !important;
        }

        .navbar-brand,
        .navbar-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--karate-red) !important;
        }

        /* Dropdowns (desktop) */
        .dropdown-menu {
            background-color: var(--karate-dark);
            border: none;
            border-radius: 6px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity .25s ease, transform .25s ease;
            display: block;
            max-height: 70vh;
            overflow-y: auto;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            color: #fff;
            padding: .6rem 1rem;
        }

        .dropdown-item:hover {
            background-color: var(--karate-red);
            color: #fff;
        }

        /* Mobile accordion menu */
        @media (max-width: 991px) {
            .navbar-nav .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                display: none;
                margin-left: 1rem;
                box-shadow: none;
            }

            .navbar-nav .dropdown-menu.show {
                display: block;
            }

            .navbar-nav .dropdown-toggle::after {
                float: right;
                margin-top: 8px;
            }
        }

        /* Carousel caption */
        .carousel-caption {
            background: rgba(0,0,0,.55);
            padding: 1rem;
            border-radius: 6px;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--karate-black), #000);
        }

        footer a:hover {
            color: var(--karate-red) !important;
        }
        /* ================= LOGO STACK ================= */
.logo-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Main AKF logo */
.main-logo {
    max-width: 95px;
    height: auto;
}

/* Olympic rings */
.olympic-logo {
    max-width: 70px;
    height: auto;
}

/* Desktop */
@media (min-width: 992px) {
    .main-logo {
        max-width: 105px;
    }
    .olympic-logo {
        max-width: 75px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .main-logo {
        max-width: 75px;
    }
    .olympic-logo {
        max-width: 55px;
    }
}
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-left: 1rem;
        box-shadow: none;
    }

    .navbar-nav .dropdown-menu.show {
        display: block;
    }

    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
}

  .about-banner {
            background: var(--karate-yellow);
            padding: 3rem 0;
        }

        .about-banner img {
            max-width: 100%;
            border-radius: 6px;
            box-shadow: 0 10px 25px rgba(0,0,0,.2);
        }

        /* About section */
        .about-section {
            position: relative;
            padding: 4rem 0;
        }

        .about-watermark {
            position: absolute;
            top: 20px;
            left: 0;
            font-size: 7rem;
            font-weight: 800;
            color: rgba(0,0,0,.05);
            pointer-events: none;
        }

        .about-label {
            font-size: .85rem;
            font-weight: 600;
            color: var(--karate-red);
            text-transform: uppercase;
        }

        .about-heading {
            font-size: 1.9rem;
            font-weight: 700;
            margin: .5rem 0 1rem;
        }

        .about-text {
            font-size: .95rem;
            line-height: 1.7;
            color: #555;
        }

        .about-image {
            border-radius: 6px;
            box-shadow: 0 10px 25px rgba(0,0,0,.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-watermark {
                font-size: 4rem;
            }

            .page-title {
                font-size: 1.6rem;
            }
        }
        
        /* ================= TRUSTEES SECTION ================= */
.trustees-section {
    background: #fff;
}

.trustees-title {
    font-weight: 700;
    font-size: 1.9rem;
}

/* Card */
.trustee-card {
    padding: 1rem;
}

/* Image */
.trustee-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    margin-bottom: 1rem;
}

/* Role */
.trustee-role {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .2rem;
}

/* Name */
.trustee-name {
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 576px) {
    .trustees-title {
        font-size: 1.4rem;
    }

    .trustee-img {
        width: 120px;
        height: 120px;
    }
}
/* ================= CONTACT SECTION ================= */
.contact-section {
    background: #f5f5f5;
}

.contact-label {
    color: var(--karate-red);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
}

.contact-title {
    font-weight: 700;
    margin: .5rem 0;
}

.contact-subtitle {
    font-size: .95rem;
    color: #555;
}

/* Info box */
.contact-info-box {
    background: var(--karate-black);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

/* Form box */
.contact-form-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

/* Inputs */
.contact-form-box .form-control {
    border-radius: 4px;
    padding: .6rem .75rem;
}

/* Button */
.btn-karate {
    background-color: var(--karate-black);
    color: #fff;
    padding: .6rem 1.6rem;
    font-weight: 500;
}

.btn-karate:hover {
    background-color: var(--karate-red);
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .contact-info-box,
    .contact-form-box {
        padding: 1.5rem;
    }
}
/* ================= COMMISSION SECTION ================= */
.commission-section {
    background: #fff;
}

.commission-title {
    font-weight: 700;
    font-size: 1.9rem;
}

/* Card */
.commission-card {
    padding: 1rem;
}

/* Images */
.commission-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    margin-bottom: 1rem;
}

.commission-img.large {
    width: 160px;
    height: 160px;
}

/* Role */
.commission-role {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .2rem;
}

/* Name */
.commission-name {
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 576px) {
    .commission-title {
        font-size: 1.4rem;
    }

    .commission-img.large {
        width: 140px;
        height: 140px;
    }
}
/* ================= KARATE HISTORY ================= */
.history-section {
    background: #fff;
}

.history-title {
    font-weight: 700;
    font-size: 2rem;
}

.history-subtitle {
    font-weight: 600;
    margin-bottom: .5rem;
}

.history-summary p {
    font-size: .95rem;
    color: #555;
    line-height: 1.7;
}

/* ================= IMPROVED TIMELINE ================= */
/* ================= TIMELINE SPACING FIX ================= */
.history-timeline {
    position: relative;
    padding-left: 3rem; /* ⬅ more space from line */
    border-left: 2px solid #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.4rem;
}

/* Timeline dot */
.timeline-item::before {
    content: "";
    position: absolute;
    left: -12px;              /* dot stays on line */
    top: 6px;
    width: 12px;
    height: 12px;
    background: #c62828;      /* karate red */
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #c62828;
}

/* Year text spacing */
.timeline-year {
    display: inline-block;
    margin-left: .5rem;       /* ✅ space from dot */
    font-weight: 700;
    font-size: 1rem;
    color: #111;
}




/* Mobile */
@media (max-width: 576px) {
    .history-title {
        font-size: 1.5rem;
    }

    .history-timeline {
        padding-left: 1rem;
    }
}



    /* ================= GALLERY SECTION ================= */
.gallery-section {
    background: #fff;
}

.gallery-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Grid images */
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.5rem;
    }

    .gallery-item img {
        height: 180px;
    }
}
/* ================= COMMITTEE SECTION ================= */

.committee-section {
    background: #fff;
}

.committee-main-title {
    color: #d00000;
    font-weight: 700;
    font-size: 2rem;
}

.committee-card {
    padding: 1rem;
}

.committee-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 6px solid #444;  /* simple frame look */
    margin-bottom: 1rem;
}

.committee-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: .2rem;
}

.committee-role {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .committee-main-title {
        font-size: 1.5rem;
    }

    .committee-img {
        width: 150px;
        height: 150px;
    }
}
/* ================= GOVERNING BODY SECTION ================= */

.governing-section {
    background: #fff;
}

.governing-title {
    color: #d00000;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Card */
.governing-card {
    padding: 1rem 0;
}

/* Wooden frame style */
.governing-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border: 10px solid #3b2b23;   /* dark wood border */
    background: #fff;
    margin-bottom: 1rem;
}

/* Name */
.governing-name {
    color: #d00000;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

/* Role */
.governing-role {
    color: #d00000;
    font-weight: 600;
    font-size: .9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .governing-title {
        font-size: 1.6rem;
    }

    .governing-img {
        width: 140px;
        height: 140px;
    }
}
.referee-section {
    background: #ffffff;
}

.referee-main-title {
    color: #d00000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.referee-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 10px solid #3b2b23;
    background: #fff;
    margin-bottom: 1rem;
}

.referee-name {
    color: #d00000;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

.referee-role {
    color: #d00000;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}
/* CONTACT MAIN TITLE */
.contact-main-title {
    color: #d00000;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

/* Wooden Frame Style */
.contact-person-img {
    width: 200px;
    height: 230px;
    object-fit: cover;
    border: 12px solid #3b2b23;
    background: #fff;
    margin-bottom: 1.5rem;
}

/* Name */
.contact-person-name {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

/* Role */
.contact-person-role {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

/* Phone */
.contact-person-phone {
    font-weight: 800;
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2rem;
    }

    .contact-person-img {
        width: 160px;
        height: 190px;
    }
}
.sports-section {
    background: #ffffff;
}

.sports-main-title {
    color: #d00000;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sports-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 10px solid #3b2b23;
    background: #fff;
    margin-bottom: 1rem;
}

.sports-name {
    color: #d00000;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

.sports-role {
    color: #d00000;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}

.tournament-section {
    background: #ffffff;
}

.tournament-main-title {
    color: #d00000;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.tournament-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 5px solid #3b2b23;
    background: #fff;
    margin-bottom: 1rem;
}

.tournament-name {
    color: #d00000;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

.tournament-role {
    color: #d00000;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}
