/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar-custom {
    background-color: #fff; /* Adjust as needed */
    z-index: 10;
}

/* Ensure the hero section takes the full remaining height */
.hero {
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
    /* Calculate full viewport height minus the navbar */
    min-height: calc(100vh - 70px); /* Adjust 70px to your navbar's exact height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Optional: Center button and text over the video */
.hero .btn, .hero h1, .hero p {
    position: relative;
    z-index: 1;
}

/* Responsive Fix for Smaller Screens */
@media (max-width: 768px) {
    .navbar-custom {
        padding: 15px;
    }
    .hero {
        min-height: calc(100vh - 60px); /* Adjust for smaller navbar height on mobile */
    }
}

.d-none{
    display: none;
}

.fit-image{
    background-position: center;
    object-fit: cover;
    object-position: 80% 100%;
}


.half-box-left-shodow{
    box-shadow: rgba(215, 158, 41, 0.4) -5px 5px,
            rgba(215, 158, 41, 0.3) -10px 10px,
            rgba(215, 158, 41, 0.2) -15px 15px,
            rgba(215, 158, 41, 0.1) -20px 20px,
            rgba(215, 158, 41, 0.05) -25px 25px;
}

.half-box-right-shodow{
    box-shadow: rgba(215, 158, 41, 0.4) 5px 5px, 
                rgba(215, 158, 41, 0.3) 10px 10px, 
                rgba(215, 158, 41, 0.2) 15px 15px, 
                rgba(215, 158, 41, 0.1) 20px 20px, 
                rgba(215, 158, 41, 0.05) 25px 25px;
}

.box-showdow-bg{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.btn{
    background: #003366!important;
}

.bg-teal{
    background: #003366;
}