header{
    /* height: 80vh; */
    display: flex;
    align-items: center;
    padding: 9px 10%;
    gap: 10%;
}
header .hero-left{
    width: 50%;
}
header .hero-left h1{
    font-size: 4rem;
    color: rgb(0, 92, 150);
    margin-bottom: 12px;
}
header .hero-left p{
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin-top: 12px;
}
header .hero-right{
    width: 45%;
    overflow: hidden;
    object-fit: cover;
}
header .hero-right img{
    width: 100%;
}

header .hero-btn-container{
    display: flex;
    gap: 40px;
    padding: 12px 0;
    margin: 20px 0;
}
.hero-btn1{
    background-image: linear-gradient(to right, #3a98e3, #155385);
    padding: 9px 25px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}
.hero-btn2{
    background-image: linear-gradient(to right, #e33a4b, #851533);
    padding: 9px 25px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.hero-btn:hover{
    transform: scale(1.05);
    cursor: pointer;
}

/* 
==============================================
    Header styling End
==============================================
*/

.intro{
    padding: 70px 10%;
    display: flex;
}
.intro video{
    width: 45%;
    border-radius: 8px;
}
.intro .intro-right h2{
    font-size: 2.5rem;
    color: rgb(0, 92, 150);
    margin-bottom: 20px;
}
.intro .intro-right p{
    font-size: 18px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}
/* 
==============================================
    Intro Section styling End
==============================================
*/


.our-services{
    padding: 70px 10%;
}
.our-services h2{
    font-size: 2.5rem;
    color: rgb(0, 92, 150);
    margin-bottom: 20px;
}
.our-services p{
    font-size: 18px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}
.our-services .services-container{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.our-services .services-container .service-card{
    width: 30%;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgb(231, 0, 58);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
.our-services .services-container .service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: aliceblue;
    border: none;
}
.our-services .services-container .service-card h3{
    font-size: 1.5rem;
    color: rgb(0, 92, 150);
    margin-bottom: 12px;
}
.our-services .services-container .service-card p{
    font-size: 16px;
    color: rgb(0, 0, 0);
}
/* .our-services .services-container .service-card img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
} */
.view-plan-btn{
    display: inline-block;
    margin-top: 12px;
    padding: 9px 20px;
    background-image: linear-gradient(to right, #3a98e3, #155385);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}
/* 
==============================================
    Our Services Section styling End
==============================================
*/

.choose-us{
    padding: 70px 10%;
}
.choose-us h2{
    font-size: 2.5rem;
    color: rgb(0, 92, 150);
    margin-bottom: 20px;
}
.choose-us p{
    font-size: 18px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}
.choose-us-container{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.choose-us-container .choose-us-card{
    width: 30%;
    /* background-color: #fee4e7; */
    background-color: #06499f;
    padding: 25px;
    border-radius: 8px;
    cursor:default;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    color: white;
}
.choose-us-container .choose-us-card > p{
    color: rgb(236, 236, 236);
}
.choose-us-container .choose-us-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.choose-us-container .choose-us-card h3{
    font-size: 1.5rem;
    margin-bottom: 12px;
}
/* 
==============================================
    Why Choose us Section styling End
==============================================
*/

.brands-section{
    padding: 70px 10%;
}
.section-title{
    font-size: 2.5rem;
    color: rgb(0, 92, 150);
    margin-bottom: 25px;
    padding-bottom: 15px;
}
.brandSwiper{
    width: 100%;
    height: 140px;
    border-radius: 9px;
    padding: 20px 0 !important;
    background-color: #d7edff;
}
.swiper-slide img{
    height:100px;
    width:auto;
    object-fit:contain;
    filter: grayscale(100%);
    transition:.3s;
}

.swiper-slide:hover img{
    filter: grayscale(0%);
    transform:scale(1.1);
}
/* 
==============================================
    Brands Section styling End
==============================================
*/

/* 
==============================================
    Homepage Responsive design
==============================================
*/

@media (max-width: 700px) {
    header{
        width: 100%;
        padding: 0 4%;
        padding-top: 60px;
        flex-wrap: wrap-reverse;
    }
    header .hero-left{
        width: 100%;
    }
    header .hero-right{
        width: 100%;
    }

    /* 
    ==============================================
        Header styling End
    ==============================================
    */

    .intro{
        flex-direction: column;
    }
    .intro video{
        width: 100%;
    }
    /* 
    ==============================================
        Intro Section styling End
    ==============================================
    */

    .our-services .services-container .service-card{
        width: 100%;
    }
     /* 
    ==============================================
        Services Section styling End
    ==============================================
    */

    .choose-us-container .choose-us-card{
        width: 100%;
    }

    /* 
    ==============================================
        Choose Us Section styling End
    ==============================================
    */
    .swiper-slide img{
        height:60px;
    }
    .brandSwiper{
        height: 100px;
    }
    /*
    ==============================================
        Brands Section styling End
    ==============================================
    */
}
