.navbar-nav .nav-link {
            color: white !important;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #ffd700 !important;
        }

        .navbar-nav .nav-link i {
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover i {
            color: #ffd700 !important;
        }

        /* Custom hamburger / X */
        .navbar-toggler.hamburger {
            border: none;
            padding: 0.25rem 0.75rem;
        }

        .navbar-toggler.hamburger:focus {
            box-shadow: none;
        }

        .navbar-toggler.hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }

        .navbar-toggler.collapsed span:nth-child(1) {
            transform: rotate(0deg) translate(0, 0);
        }

        .navbar-toggler.collapsed span:nth-child(2) {
            opacity: 1;
        }

        .navbar-toggler.collapsed span:nth-child(3) {
            transform: rotate(0deg) translate(0, 0);
        }

        .navbar-toggler:not(.collapsed) span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .navbar-toggler:not(.collapsed) span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler:not(.collapsed) span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /*  */
        .btn-danger {
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 6px;
        }

        .paged {
            padding: 15px;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            /* space between images */
        }

        .photo-grid img {
            width: 100%;
            height: 150px;
            /* same height for all */
            object-fit: cover;
            /* maintains aspect ratio, crops excess */
            border-radius: 6px;
            /* optional rounded corners */
            transition: transform 0.3s ease;
        }

        .photo-grid img:hover {
            transform: scale(1.05);
            /* subtle hover effect */
        }

        /* Image grid styling */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 10px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .photo-grid {
                grid-template-columns: repeat(6, 1fr);
            }

        }

        @media (max-width: 992px) {
            .photo-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 576px) {
            .photo-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .photo-grid img,
        .winner-grid img {
            width: 100%;
            border-radius: 6px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        @media(max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        .winner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        @media(max-width: 768px) {
            .winner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .winner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .winner-grid img {
            width: 100%;
            max-width: calc(50% - 7.5px);
            /* Two images per row with gap */
            height: auto;
            border-radius: 6px;
            transition: transform 0.3s ease;
        }

        .winner-grid img:hover {
            transform: scale(1.05);
        }


        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* 16:9 ratio */
        }

        .video-wrapper iframe {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (max-width: 576px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        /*  */
        /* Tab styles */
        .tabs input[type="radio"] {
            display: none;
        }

        .tabs label {
            padding: 8px 18px;
            background: #ddd;
            border-radius: 4px;
            cursor: pointer;
            margin-right: 8px;
            user-select: none;
        }

        .tabs input:checked+label {
            background: #007bff;
            color: #fff;
        }

        /* hide tab contents by default */
        .tab-content {
            display: none;
            margin-top: 20px;
        }

        /* show the selected tab content */
        #tab2023:checked~.tab2023,
        #tab2024:checked~.tab2024 {
            display: block;
        }

        /* grid for photos */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 10px;
        }

        .photo-grid img {
            width: 100%;
            cursor: pointer;
            border-radius: 4px;
        }

        /* Modal styles */
        .img-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .img-modal img {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            user-select: none;
        }

        /* Common styling for all section headings */
        .section-box h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #a31106;
            /* dark red */
            text-align: center;
            position: relative;
            margin-bottom: 40px;
            text-transform: uppercase;
            /* optional: makes headings uppercase */
            letter-spacing: 1px;
            /* optional: spacing between letters */
        }

        /* Gradient underline for all headings */
        .section-box h3::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #ff1100ff, #000303ff);
            margin: 10px auto 0;
            border-radius: 5px;
        }

        .tabs {
            text-align: center;
        }



        .custom-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #e3e3e3;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .custom-card h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #a31106;
            text-align: center;
            position: relative;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .custom-card h3::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #ff1100ff, #000303ff);
            margin: 10px auto 0;
            border-radius: 5px;
        }

        .custom-card p {
            line-height: 1.7;
            font-size: 16px;
            color: #444;
        }


        .award-card {
            background: linear-gradient(135deg, #fef9f385, #d9f0e873);
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            padding: 25px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            margin-bottom: 1.5rem !important;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .award-card h3 {
            font-size: 1.8rem;
            color: #2c7a7b;
            margin-bottom: 15px;
        }

        .award-card p {
            font-size: 1rem;
            line-height: 1.7;
        }

        .award-card strong {
            color: #c2185b;
        }

        .award-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        img.img-fluid {
            max-width: 100%;
            height: auto;
        }

        /* WAO 2026 – Heading Colors Only */

        .wao-section h3 {
            color: #7b1fa2;
            /* Purple */
            font-weight: 700;
        }

        .wao-section h4 {
            color: #c2185b;
            /* Pink */
            font-weight: 600;
        }


        /* Top Header Logo – width adjustment */

        .top-logo {
            max-height: 75px;
            max-width: 220px;
        
            width: auto;
        }

        /* Tablet */
        @media (max-width: 992px) {
            .top-logo {
                max-width: 190px;
                max-height: 65px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .top-logo {
                max-width: 170px;
                max-height: 60px;
            }
        }

        /* Make embedded form look native */

        #wao-form {
            margin-top: 25px;
        }

        #wao-form iframe,
        #wao-form>div {
            width: 100%;
            border: none;
            background: transparent;
        }


        /* Final paragraph refinement – no decoration */

.wao-final {
    font-size: 16px;
    line-height: 1.9;
    color: #333 !important;
    margin-top: 12px;
}


/* Hide scrollbar but allow scrolling */

/* Chrome, Edge, Safari */
body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

/* Firefox */
body {
    scrollbar-width: none;
}

/* IE / old Edge */
body {
    -ms-overflow-style: none;
}
