
:root {
    --primary-bg-color: #c7c7c9;
    --primary-color: rgba(252, 173, 0, 0.45); 
    --primary-colorStrong: rgba(252, 173, 0, 1); 
    --footer-bg-color: #020d13;
    --footer-bg-color-light: grey;
}
/* Custom scrollbar styles */
body{
    font-family: "Poppins", serif;
}
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-bg-color)
}
.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fcad00;
    /* Change color if needed */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}


.navbar-nav .nav-link.active::after {
    width: 100%;
    /* Matches text width */
    left: 0;
}

.navbar .btn {
    background-color: #73550b;
    border: none;
    color: white;
    width: 130px;
    backdrop-filter: blur(10px);

}
.navbar .btn:hover{
    background-color: white;
    border: 2px solid #73550b;
    color: #73550b;
    width: 130px;
    backdrop-filter: blur(10px);

}
.btn-color {
    background-color: #73550b;
    color: white;
}
.btn-color:hover {
    background-color: white;
    color: #73550b;
    border: 2px solid #73550b;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional: Smooth transition for dropdown */
.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
}


header{
    background: linear-gradient(to bottom, #0a1d3d, #122e58);
}
.carousel-inner {
    height: 80vh;
}
.carousel-item {
    position: relative;
    height: 80vh;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 6%;
    border-radius: 20px;
    transform: translateY(-50%);
    color: black;
    background-color: rgba(252, 173, 0, 0.45); 
    backdrop-filter: blur(10px);
    height: fit-content;
    padding-left: 38px;
    max-width: 45%;
    padding-top: 30px;
    text-align: left;
}
.carousel-caption.darker{
    background-color: rgba(252, 173, 0, 0.60); 
    backdrop-filter: blur(5px);
}

.carousel-caption h1 {
    font-size: 2.3rem; /* Adjust as needed */
    font-weight: 500;
    color: white;
}

.carousel-caption p {
    font-size: 1rem; 
}
.carousel-caption button{
    background-color: white;
    color: black;
    border: none;
    border-radius: 10px;
    width: 150px;
    height: 35px;
}
.carousel-caption button:hover{
    background-color: #b7b2a6;
    border: 1px sold white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* services */
.services img{
    height: 300px;
    object-fit: cover;
}

/* footer */
footer {
    background-color: var(--footer-bg-color);
    color: white;
    padding: 50px 0 10px 0;
}

footer .sub-text{
    margin-top: 10px;
    font-weight: 300;
}
footer a{
    text-decoration: none;
}