.banner{
    background: url('../images/6614011.jpg');
    padding-top: 19%;
    padding-bottom: 8%;
    margin-top: -110px;
}

.banner-subtitle{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

.banner-subtitle i{
    font-size: 15px;
    color: #abce1d;
    padding-left: 0px;
}

.main-title{
    font-size: 60px;
    color: white;
    text-transform: uppercase;
    font-weight: 300;
}

.main-title span{
    color: #abce1d;
    font-weight: 700;
}

.sub-heading{
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

button.btn.btn-gray {
    color: #fff;
    background: #404040;
    padding: 10px 10px 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btn-gray i{
    background: #abce1d;
    padding: 13px;
    border-radius: 50px;
    margin-left: 5px;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.btn-gray:hover i{
    transform: rotate(-45deg); /* Rotates diagonally upward */
    background: #fff;
    color: #000; /* Already black, but you can set a different color if needed */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Optional: subtle shadow for effect */
}

.contact-subtitle{
    font-size: 14px;
    font-weight: 300;
    color: #fff ;
}

.heading{
    font-weight: 600;
    color: #fff;
    margin-top: -10px;
}

.phone-icon{
    border: 1px solid #abce1d;
    padding: 20px;
    border-radius: 50px;
    width: 107%;
}

.phone-icon i{
    padding: 0px;
    font-size: 20px;
    color: #abce1d;
}

.rotate {
    animation: rotateImage 10s linear infinite;
}

.banner_image{
    text-align: center;
    margin-top: 100px;
}

@keyframes rotateImage {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Media Queries */
@media screen and (max-width: 550px) {
    .banner{
        margin-top: 0px;
        padding-top: 44%;
    }
    .main-title{
        font-size: 30px;
    }
    .mobile_icon{
        width: 23%;
    }
    .mobile_number{
        width: 77%;
    }
    .mobile_section{
        margin-top: 20px;
    }
    .banner_image{
        text-align: center;
        margin-top: 30px;
    }
    button.navbar-toggler {
        background: white;
    }
    .navbar-collapse {
        background: white;
        padding: 20px;
    }
    a.nav-link {
        color: #000 !important;
    }
    .active{
        color: #abce1d !important;
    }
}