*{
    font-family: "Inter", sans-serif;
    margin: 0;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #DEF2FF !important;
}

html {
    scroll-behavior: smooth;
    
}

.container-custom{
    max-width: 1600px;
    padding: 0 32px;
    margin: 0 auto;
}

.banner-text{
    .text-container{
        max-width: 470px;
    }
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    position: relative;
    @media (min-width: 767px) {
        
    }
    .content{
        z-index: 11;
    }
    & .bg-gradient-banner{
        background-image:linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100vw - 52px);
        height: 100%;
        z-index: 10;
    }

    h6{
        color: #fff;
        font-size: 18pt;
        font-weight: 600;
    }
}

.banner-text h1{
    color: rgba(255, 255, 255, 1);
    font-size: 34pt;
    text-transform: uppercase;
    line-height: 43px;
    font-weight: 800;
}

.banner-text .alt-text{
    font-size: 32pt;
    color: #ccc;
}

.banner-text .subtitle{
    font-size: 16px;
    color: #fff;
}

.container-custom {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 56px;
}



.card {
    display: flex;
    flex: 1 0 21%;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 300px; 
    padding: 0 56px;
    border: 1px solid rgba(0, 112, 175, 0.15);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    background-color: #fff;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.card-icon {
    font-size: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background-color: #1E88E5;
    color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.card-title {
    margin-top: 30px;
    transition: transform 0.3s ease;
}

.card-title h2{
    font-size: 14pt;
    font-weight: 600;
}

.card-content {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
    bottom: 50px;
    left: 20px;
    right: 20px;
}

.card:hover {
    background-color: rgba(106, 201, 255, 0.23);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.card:hover .card-icon,
.card:hover .card-title {
    transform: translateY(-50px);
}

.card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.about {
    margin-top: 45px;
    padding: 50px 0;
    background-color: rgba(182, 229, 255, .15);
}


.img img {
    max-width: 100%;
    height: auto;
    border-radius: 16px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    color: rgba(0, 112, 175, 1); 
    position: relative;
}

.about-img{
    flex: 1 0 40%;
} 

.about-text{
    flex: 1 0 60%;
}

.about-text {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    border-radius: 12px;
    color: #333;
    line-height: 1.4;  
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px; 
}

.footer {
    color: #0070AF;
    padding: 24px 0;
}

.footer a{
    color: #0070AF;
}

.footer p{
    line-height: 12px;
}

.footer img {
    width: 216px;
}

.footer h2 {
    text-align: center;
    font-size: 15pt;
    font-weight: 600;
}

.footer-links{
    font-size: 14pt;
    list-style: none;
    & li{
        margin-bottom: 12px;
    }
    &.footer-links a{
        color: #000;
        font-weight: 600;
        text-decoration: none;
        text-align: left;
        padding-left: 0;
    }
    & .fa{
        color: var(--bs-blue);
        margin-right: 1.2rem; 
    }
}

#carousel{
    max-width: 500px;
}

.carousel .fa{
    font-size: 32px;
}

#carousel .carousel-control-prev, #carousel .carousel-control-next{
    text-decoration: none;
    margin: -12px;
}

#carousel .carousel-control-prev:hover, #carousel .carousel-control-next:hover{
    opacity: 1;
}


@media (max-width: 576px) {
    .card{
        flex: 1 0 98%;
    }
    .banner-text h1{
        font-size: 22pt;
        line-height: 22px;
    }
    
    .banner-text .alt-text{
        font-size: 18pt;
    }
    .nav-links .contact{
        margin-bottom: 42px;
    }

}

.bg-sunshine{
    background-color: #DEF2FF !important;
}

.navbar.scrolled{
    transition: all 0.3s ease;
    background-color: rgba(255,255,255, 0.7) !important;
    backdrop-filter: blur(2px);
}

.navbar-light .navbar-toggler{
    border-color:  rgba(106, 201, 255, 0.5);
}

.navbar-toggler:focus{
    box-shadow: none;
}

.navbar-toggler i{
    color: #0070AF;
}

.navbar-collapse.collapse{
    flex-direction: row-reverse;
}

.btn-close:focus {
  box-shadow: none;
}

.row.space-v{
  margin-bottom: 24px;
}


/* Hero Section */

.hero-section {
    .btn button{
        font-weight: 600;
    }
    .img-background {
        height: 100vh;
        width: 100%;
        background-image: url(professional-female-driver-job.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        @media (max-width: 766px) {
            padding-top: 18rem;
        }

        @media (min-width: 768px) {
            height: 600px;
        }
        .btn a{
            border-radius: 4rem;
            border: none;
        }
    }
}

.btn{
    &.group{
        border: none;
        padding: 0;
        display: flex;
        gap: 12px;
        align-items: start;
        justify-content: start;
    }
}

.btn-primary-alt{
    background-color: #fff;
    color: var(--bs-blue);
    &:hover, &:active{
        background-color: rgba(255,255,255, 0.7) !important;
        color: var(--bs-blue) !important;
    }
}

h1, h2, h3{
    text-align: center;
    font-weight: 800;
    color: var(--bs-blue);
}

h2{
    font-size: 1.5rem;
}

.services{
    .container{
        padding: 24px;
        padding-bottom: 42px;
        background-color: rgb(250,250,250);
        margin-top: -24px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

        .item{
            display: flex;
            flex-direction: row;
            gap: 12px;
            text-align: center;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            color: var(--bs-blue);
            padding: 1rem;
            border-radius: 0.8rem;

            @media (max-width: 767px) {
                margin-top: 0.8rem;
            }
            span{
                font-size: 1.2rem;
                font-weight: 600;
            }
            &:hover{
                transition: all 0.3s ease;
                cursor: pointer;
                background-color: var(--bs-blue);
                color: #fff;
            }
        }
    }
    .specialization{
        margin-top: -24px;
        background-color: #FEB625;
        ul{
            @media (max-width: 767px) {
                align-items: center;
                text-align: center;
            }
        }
        ul li{
            margin: 12px;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            & i{
                color: var(--bs-blue);
                margin-right: 12px;
            }
        }
    }
}


.logo-img{
    &.logo-scrolled{
        width: 200px;
    }
}

.scroll-up-btn{
    position: fixed;
    height: 48px;
    width: 48px;
    bottom: 20px;
    right: 20px;
    background-color: #0070AF;
    color: #fff;
    border-radius: 50%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover{
        transition: all 0.3s ease;
        background-color: #FEB625;
        color: #fff;
    }
}