@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    /* font-family: "Poppins", serif; */
    font-family: "Roboto", serif;
    /* font-family: "Ubuntu", serif; */
    /* font-weight: 500; */
    font-style: normal;
}


/* Navigation menu mobile css */
/* Remove default button styles */
.navbar-toggler {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    outline: none;
    color: transparent;
}

/* Style the hamburger icon container */
.hamburger {
    width: 40px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

/* Style each line of the hamburger icon */
.line {
    background-color: #000;
    height: 3px;
    width: 30px;
    position: absolute;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Position lines within the container */
.line:nth-child(1) {
    top: 0;
}

.line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.line:nth-child(3) {
    bottom: 0;
}

/* Default state (collapsed) */
.navbar-toggler .line {
    transition: all 0.3s ease;
}

/* State when toggled (menu open) */
.navbar-toggler:not(.collapsed) .line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler:not(.collapsed) .line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Hide default dropdown indicator */
/* .nav-link::after {
    display: none;
} */

.nav-link .fa-chevron-down {
    margin-left: 0.2rem;
}


.nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000033;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    transform: translateY(-5px);
    color: #000033;
}

.nav-link:hover {
    transform: translateY(-5px);
    color: #000033;
}

.overview-img{
    max-width: 500px;
}
    
/* Home Page Hero */
.carousel,
.carousel-item {
    height: 80vh;
    /* height: 50vh; */
}

@media (max-width: 1000px) {

    .carousel,
    .carousel-item {
        height: 50vh;
        /* height: 25vh; */
    }
    
    .overview-img{
        max-width: 400px;
    }
}

@media (max-width: 576px) {

    .carousel,
    .carousel-item {
        /* height: 50vh; */
        height: 25vh;
    }
    
    .overview-img{
        max-width: 245px;
    }
}
