body {
    font-family: "Tahoma", sans-serif;
    background-color: #0D1B41;
    /*#0D1B41 ; #0d1b2a*/
    color: #fff;
}

.navbar {
    background: transparent !important;
    box-shadow: none !important;
}
    .navbar .nav-link,
    .navbar .navbar-brand span {
        color: #fff !important;
    }

#hero {
    height: 800px;
    display: flex;
}

.hero-thumbs {
    position: absolute;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 550px;
    z-index: 5;
}

    .hero-thumbs:hover {
        opacity: 1;
    }

.thumb-item img {
    width: 100%;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s;
}

.thumb-item.slick-current img,
.thumb-item.active img {
    border: 2px solid #0d6efd;
}

 /*.hero-main {
    flex-grow: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
    transition: background-image 0.6s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;*/ /* space for thumbnails */
/*overflow: hidden;*/ /* hide overflow of video */
/*color: white;*/ /* example text color */
/*z-index: 1;*/ /* base z-index */
/*}*/
.hero-main {
    position: relative;
    width: 100%;
    height: 88vh; /* adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    color: white;
    padding-left: 30px;
    z-index: 1;
}
    .hero-main::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: inherit;
        background-size: cover; /* fill edges */
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(20px) brightness(0.6); /* blurred filler background */
        transform: scale(1.1); /* extend edges */
        z-index: -2; /* stay behind everything */
    }
    .hero-main::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background-image: inherit;
        background-size: contain; /* full image visible */
        background-position: center;
        background-repeat: no-repeat;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
.hero-main[data-bg] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-main video.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full video */
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    background-color: #000; /* filler for letterboxing */
}
    /*.hero-main video.hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* ensures perfect scaling */
        /*transform: translate(-50%, -50%);
        z-index: -1;
        pointer-events: none;
    }*/
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }

    .hero-thumbs {
        flex-direction: row;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

        .hero-thumbs .thumb-item img {
            width: 70px;
            height: 50px;
        }
}
/*.hero-main video.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;*/ /* behind content */
    /*pointer-events: none;
}*/

.hero-content h1,
.hero-content p,
.hero-content a {
    /* color: white;
    text-align: right;*/
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); /* improves readability */
}

/*#hero {
    height: 100vh;
    position: relative;
}

    #hero .carousel-item {
        height: 100vh;
        background-size: cover;
        background-position: center;
    }

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}*/

.nav-link {
    color: #fff;
    border: none;
    transition: color 0.3s ease; /* Smooth fade for text */
}

.nav-link i {
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth fade + scale */
    display: inline-block; /* Needed for transform to work */
}

/* Active tab styling */
.nav-link.active {
    background: #0dcaf0;
    color: #000;
    border-radius: 5px;
}

/* Icon changes when active */
.nav-link.active i {
    color: #000; /* Match active text color */
    transform: scale(1.2); /* Slightly enlarge icon */
}

/* Optional: hover effect */
.nav-link:hover {
    
    color: #fff;
}

.nav-link:hover i {
    
    color: #fff;
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.news {
    background-repeat: no-repeat;
    background-image: url(/imgs/21.svg);
    background-position: left top;
    background-size: 190px;
}

.news_b {
    background-repeat: no-repeat;
    background-image: url(/imgs/21.svg);
    background-position: right top;
    background-size: 120px;
}

.news-slider {
    margin-left: 70px;
    margin-right: 70px;
}

.news-slider .card {
    margin: 0 10px;
    background: #0d1b2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .news-slider .card:hover {
        transform: translateY(-5px);
    }
.news-slider .card-img-top {
    height: 250px; /* Set a fixed height for all images */
    width: 100%; /* Full width of the card */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 12px; /* Optional: same rounding as card */
}
.slick-dots li button:before {
    color: #fff !important;
}
.footer {
    background: linear-gradient(to top, #0d1b2a, #1b263b);
    font-size: 0.95rem;
}

    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-left: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .footer .social-icon:hover {
            background: #0dcaf0;
            color: #000;
        }

.header-title {
    background-color: #0D1B41;
    padding: 15px;
    border-radius: 15px;
}