 /* Header Gradient */
        .header-gradient {
            background: linear-gradient(to right, #1d8ebe, #023c56);
            padding: 30px 0;
            position: relative;
        }
        
        .site-title {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0;
            text-align: center;
        }
        
        .site-slogan {
            color: white;
            font-size: 1.2rem;
            text-align: center;
            margin-top: 10px;
        }
        
        .logo-placeholder {
            position: absolute;
            right: 22px;
            top: 58%;
            transform: translateY(-50%);
            width: 125px;
            height: 125px;
            /* background: rgba(255, 255, 255, 0.2); */
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }
        
        /* Navigation */
        .navbar-custom {
            background-color: #000 !important;
            padding: 0;
        }
        
        .navbar-nav {
            flex-direction: row;
            width: 100%;
            justify-content: center;
        }
        
        .nav-item {
            padding: 15px 20px;
            position: relative;
        }
        
        .nav-item:not(:last-child):not(.dropdown)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 30px;
            background-color: #0f5c7c;
        }
        
        .nav-item.dropdown:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 30px;
            background-color: #0f5c7c;
        }
        
        .nav-link {
            color: white !important;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0 !important;
        }
        
        .nav-link:hover {
            color: #1d8ebe !important;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            background-color: #666666 !important;
            border: none;
            border-radius: 0;
            padding: 0;
            margin-top: 0;
            min-width: 200px;
        }
        
        .dropdown-item {
            color: white !important;
            padding: 12px 20px;
            border-bottom: 1px solid #555555;
            text-transform: none;
            font-size: 0.95rem;
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item:hover,
        .dropdown-item:focus {
            background-color: #555555 !important;
            color: white !important;
        }
        
        .dropdown-toggle::after {
            margin-left: 8px;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.3);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Slider */
        .slider-container {
            padding: 0;
        }
        
        /* Reduce space around slider on mobile */
        @media (max-width: 991.98px) {
            .slider-container {
                margin-bottom: 0;
                padding-bottom: 0;
            }
            
            /* Ensure no extra margin from container class on mobile */
            .slider-container .container {
                padding-left: 0;
                padding-right: 0;
            }
        }
        
        .carousel {
            position: relative;
        }
        
        .carousel-inner {
            position: relative;
            overflow: hidden;
            min-height: 400px; /* Fallback height */
        }
        
        /* Reduce slider height on mobile - override inline styles */
        @media (max-width: 991.98px) {
            #mainSlider .carousel-inner {
                min-height: 210px !important;
                height: 210px !important;
            }
            
            /* Also ensure carousel items fit */
            #mainSlider .carousel-item {
                height: 210px;
            }
            
            #mainSlider .carousel-item img {
                height: 210px;
                object-fit: cover;
            }
        }
        
        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
            display: block;
        }
        
        .carousel-item.active {
            position: absolute;
            opacity: 1;
            z-index: 2;
        }
        
        .carousel-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Crossfade: show both images during transition */
        .carousel-fade .carousel-item {
            opacity: 0;
            transition-property: opacity;
            transition-duration: 1.5s;
            transform: none;
        }
        
        .carousel-fade .carousel-item.active,
        .carousel-fade .carousel-item-next.carousel-item-start,
        .carousel-fade .carousel-item-prev.carousel-item-end {
            opacity: 1;
        }
        
        .carousel-fade .active.carousel-item-start,
        .carousel-fade .active.carousel-item-end {
            opacity: 0;
        }
        
        .carousel-fade .carousel-item-next:not(.carousel-item-start),
        .carousel-fade .active.carousel-item-next.carousel-item-start {
            position: absolute;
            z-index: 3;
        }
        
        .carousel-fade .carousel-item-prev:not(.carousel-item-end),
        .carousel-fade .active.carousel-item-prev.carousel-item-end {
            position: absolute;
            z-index: 3;
        }
        
        .carousel-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            z-index: 10;
        }
        
        /* Breadcrumbs */
        .breadcrumb-custom {
            background: transparent;
            padding: 15px 0;
            margin: 0;
        }
        
        .breadcrumb-item {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Sponsors Section */
        .sponsors-section {
            padding: 40px 0;
            background-color: #f8f9fa;
            display: block !important; /* Ensure section is always visible */
        }
        
        /* Reduce padding on mobile for sponsors section */
        @media (max-width: 991.98px) {
            .sponsors-section {
                padding-top: 10px;
                padding-bottom: 20px;
            }
        }
        
        .sponsor-main {
            text-align: center;
            margin-bottom: 30px;
        }
        
        /* Reduce margin on mobile for sponsor-main */
        @media (max-width: 991.98px) {
            .sponsor-main {
                margin-bottom: 15px;
            }
        }
        
        .sponsor-main img {
            /* max-width: 200px; */
            height: auto;
        }
        
        .sponsor-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        .sponsor-column img {
            max-width: 150px;
            height: auto;
            filter: grayscale(0);
            transition: transform 0.3s;
        }
        
        .sponsor-column img:hover {
            transform: scale(1.05);
        }
        
        /* Welcome Text */
        .welcome-section {
            padding: 40px 0;
        }
        
        /* Reduce padding on mobile for welcome section - less space after slider */
        @media (max-width: 991.98px) {
            .welcome-section {
                padding-top: 10px;
                padding-bottom: 20px;
            }
        }
        
        .welcome-section-desktop {
            padding: 20px 0;
        }
        
        .welcome-title {
            color: #023c56;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: left;
        }
        
        @media (max-width: 991.98px) {
            .welcome-title {
                text-align: center;
            }
        }
        
        .welcome-text {
            color: #333;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

.welcome-text img {width:100%; height:auto;}
        
        .signature {
            margin-top: 30px;
            font-style: italic;
            color: #666;
        }
        
        /* Footer */
        .footer-custom {
            background-color: #000;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-custom p {
            margin: 5px 0;
            font-size: 0.9rem;
        }
        
        .footer-custom a {
            color: white;
            text-decoration: none;
        }
        
        .footer-custom a:hover {
            color: #1d8ebe;
        }
        
        /* Sponsor Carousel for Mobile - Default hidden, shown on mobile */
        .sponsor-carousel-mobile {
            display: none;
        }
        
        /* Mobile Responsive - Show mobile content, hide desktop */
        @media screen and (max-width: 991.98px) {
            /* Hide desktop layout completely */
            .sponsors-section .container .sponsor-column-desktop,
            .sponsor-column-desktop {
                display: none !important;
                visibility: hidden !important;
            }
            
            /* Show mobile sponsor carousel */
            .sponsor-carousel-mobile,
            .sponsors-section .container .sponsor-carousel-mobile,
            .sponsors-section .sponsor-carousel-mobile {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                height: auto !important;
            }
        }
        
        /* Extra breakpoint for tablets and phones */
        @media screen and (max-width: 991px) {
            .sponsor-carousel-mobile {
                display: block !important;
            }
            
            .d-lg-none.welcome-section {
                display: block !important;
            }
        }
        
        @media (max-width: 768px) {
            .site-title {
                font-size: 1.8rem;
            }
            
            .site-slogan {
                font-size: 1rem;
            }
            
            .logo-placeholder {
                width: 60px;
                height: 60px;
                font-size: 2rem;
                right: 10px;
            }
            
            .navbar-nav {
                flex-direction: column;
            }
            
            .nav-item {
                padding: 10px 20px;
                border-bottom: 1px solid #333;
            }
            
            .nav-item:not(:last-child)::after {
                display: none;
            }
            
            .sponsor-column {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .welcome-title {
                font-size: 1.5rem;
                text-align: center;
            }
        }
        
        .sponsor-carousel-item {
            text-align: center;
            padding: 20px;
        }
        
        .sponsor-carousel-item img {
            max-width: 150px;
            height: auto;
            margin: 0 auto;
        }

a {
 
    text-decoration: none;
}

thead,tbody,tfoot,tr,td,th { vertical-align:baseline;}