:root {
    --dark-blue: rgb(33, 53, 91);
    --light-blue: #0072bc;
    --sky-blue: #e8ecf0;
    --ice-blue: rgb(207, 221, 233);
}

* {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
}

.video-hero-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-hero-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Transparent navbar over video */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to right, rgba(33, 53, 91, 0.4), rgba(0, 0, 0, 0));
    backdrop-filter: blur(4px);
    padding: 10px;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
}

.navbar-nav .nav-link:hover {
    color: #ddd;
}

/* .navbar-toggler {
    border: none;
    background: transparent;
    padding: 10px;
} */

/* Remove default button styling */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: transparent;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--sky-blue);
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler-icon {
    background-color: var(--sky-blue);
}



/* about */

.about {
    display: flex;
    flex-direction: column;
    text-align: start;
    justify-content: center;
    min-height: 500px;
    padding: 50px;
}


.about h3 {
    font-size: 35px;
}

/* why us */

.why-us {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.why-us-content {
    width: 65%;
    background-color: #e8ecf0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
}

.why-us-content h3 {
    font-size: 35px;
    margin-bottom: 20px;
}

.why-us-content span {
    color: var(--light-blue);
}

.why-us-icons {
    width: 35%;
    background-color: #f5f5f5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    padding: 40px;
}

.icon-box {
    text-align: center;
}

.icon-box i {
    font-size: 40px;
    color: var(--dark-blue);
}

.icon-box p {
    color: var(--light-blue);
    font-weight: 500;
    margin: 10px 0;
}

.icon-box h5 {
    font-size: 22px;
    color: #333;
}

/* reviews */
#reviews {
    text-align: center;
    padding: 50px;
    background-color: var(--sky-blue);
}

#reviews .star-box i {
    color: #FFF287;
}





/* partners */

.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--ice-blue);
    padding: 50px;
    text-align: center;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partner-logos img {
    width: 150px;
}

.partners h3 {
    color: var(--dark-blue);
}



/* contact */

.contact {
    display: flex;
    justify-content: center;
    padding: 50px;
}

.contact-form {
    max-width: 800px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgb(204, 204, 204, 0.6);
    border-radius: 8px;
    font-size: 14px;
}

.contact-form button {
    background-color: var(--light-blue);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--ice-blue);
}

/* footer */

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    text-decoration: none;
    color: var(--dark-blue);
}

@media (max-width: 1028px) {

    .video-hero-wrapper {
        height: 60vh;
    }

    .partner-logos {
        display: grid;
        grid-template-columns: 2fr 2fr 2fr;
        gap: 30px;
    }

    .partner-logos img {
        width: 100px;
    }

    .why-us {
        flex-direction: column;
    }

    .why-us-content {
        width: 100%;
    }

    .why-us-icons {
        width: 100%;
    }

    .contact {
        padding: 20px;
    }

}