:root{
    --prim-color: #6c794c;
    --text-color: #252A4E;
    --second-color: #9255CE;
    --third-color:#FF7469;
    --second-light-color: #FFF7F6;
    --light-text: #515670;
    --white-color: #fff;
    --black-color: #000;
    --prim-gradient1: linear-gradient(90deg, #859265 -2.17%, #6c794c 100%);
    --prim-gradient2: linear-gradient(90deg, #6c794c -0%, #556b2f 100%);
    --btn-gradient: linear-gradient(32deg, #a249ed 20%, #6131e8 100%);
    --dark-gradient: linear-gradient(90deg, #5A1CCB -2.17%, #815EDC 100%);
    --second-gradient: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
    --title-gradient: linear-gradient(90deg, #FFA835 -3.85%, #FA3DCC 97.3%, #FA3AD0 100%);

    --icon-shape: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);

    --transition:0.3s;
    --transition2:0.6s;
}

body{
    overflow-x: hidden;
}

section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 5% 10%;
}


img{
    width: 100%;
    height: 100%;
}

/* Hero Section  */
.basateen_header{
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.385)) , url(../images/Basateen/hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    /* z-index: -1; */
}

.basateen_header h1{
    width: 50%;
    font-weight: 600;
    font-style: italic;
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5.5rem;
    padding: 10% 35%;
}
/* ============Media Queries for BAsateen Banner============ */
@media (min-width:320px) and (max-width:480px){
    .basateen_header{
        width: 100%;
        background-size: cover;
        height: 55vh;
    }
    .basateen_header h1{
        width: 50%;
        line-height: 1.5rem;
        font-size: 24px;
        font-weight: 900;
    }
}
@media (min-width:481px) and (max-width:768px){
    .basateen_header{
        width: 100%;
        background-size: cover;
        height: 60vh;
    }
    .basateen_header h1{
        width: 50%;
        line-height: 2rem;
        font-size: 26px;
        font-weight: 900;
        text-align: center;
    }
}
/* ============Media Queries for BAsateen Banner============ */


/* MISSION SECTION  */
.basateen_mission{
    display: block;
    padding: 0 10%;
    position: relative;
    margin-top: -10%;
    left: 0;
    z-index: 99;
}

.basateen_mission_info{
    display: block;
    background-color: var(--prim-color);
    padding: 5%;
    /* border-radius: 15px; */
    gap: 15px;
}

.basateen_mission_info h3{
    font-weight: 400;
    font-style: italic;
    color: var(--white-color);
    padding-bottom: 10px;
}

.basateen_mission_info p{
    text-align: justify;
    color: var(--white-color);
}
/* ============Media Queries for BAsateen Mission============ */
@media (min-width:320px) and (max-width:480px){
    .basateen_mission{
        width: 100%;
        display: block;
        padding: 0% 10%;
    }
    .basateen_mission .basateen_mission_info{
        width: 100%;
        display: block;
    }
    .basateen_mission .basateen_mission_info .mission{
        width: 100%;
        font-size: 18px;
        font-weight: 500;
    }
    .basateen_mission .basateen_mission_info p{
        width: 100%;
        font-size: 12px;
    } 
}
@media (min-width:481px) and (max-width:768px){
    .basateen_mission{
        width: 100%;
        display: block;
        padding: 0% 10%;
    }
    .basateen_mission .basateen_mission_info{
        width: 100%;
        display: block;
    }
    .basateen_mission .basateen_mission_info .mission{
        width: 100%;
        font-size: 20px;
        font-weight: 500;
    }
    .basateen_mission .basateen_mission_info p{
        width: 100%;
        font-size: 14px;
    } 
}
/* ============Media Queries for BAsateen Mission============ */


/* Introduction to Basateen  */
.basateen_about_section{
    width: 100%;
    display: block;
    z-index: 99;
    margin-top: 40px;
    padding: 0% 10%;
}

.basateen_about_section .basateen_about_section_info{
    width: 100%;
    display: flex;
    gap: 20px;
}

.basateen_about_section .basateen_about_section_info .basateen_img{
    width: 45%;
    height: 350px;
}

.basateen_about_section .basateen_about_section_info .basateen_img img{
    width: 100%; 
    border-radius: 20px;
}

.basateen_about_section .basateen_about_section_info .basateen_content{
    width: 55%;
    display: block;
}

.basateen_about_section .basateen_about_section_info .basateen_content h3{
    width: 100%;
    font-weight: 400;
    font-style: italic;
}

.basateen_about_section .basateen_about_section_info .basateen_content p{
    width: 100%;
    text-align: justify;
    font-size: 1.1rem;
}

/* ============Media Queries for About BAsateen ============ */
@media (min-width:320px) and (max-width:480px){
    .basateen_about_section{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    .basateen_about_section .basateen_about_section_info .basateen_img{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info .basateen_img img{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info .basateen_content{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info .basateen_content h2{
        width: 100%;
        font-size: 20px;
    }
    .basateen_about_section .basateen_about_section_info .basateen_content p{
        width: 100%;
        font-size: 12px;
    }
}
@media (min-width:481px) and (max-width:768px){
    .basateen_about_section{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    .basateen_about_section .basateen_about_section_info .basateen_img{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info .basateen_img img{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info .basateen_content{
        width: 100%;
        display: block;
    }
    .basateen_about_section .basateen_about_section_info .basateen_content h2{
        width: 100%;
        font-size: 22px;
    }
    .basateen_about_section .basateen_about_section_info .basateen_content p{
        width: 100%;
        font-size: 14px;
    }
}
/* ============Media Queries for About BAsateen ============ */


.basateen_about_section .basateen_about_services{
    width: 100%;
    display: flex;
    gap: 130px;
    margin-top: 25px;
}

.basateen_about_services .basateen_about_card{
    width: 100%;
    display: block;
    gap: 12px;
}

.basateen_about_section .basateen_about_services .basateen_about_card .icon{
    width: 100px;
    height: 100px;
    background-color: var(--prim-color);
    border-radius: 100%;
    transform: var(--transition2);
}

.basateen_about_section .basateen_about_services .basateen_about_card .icon img{
    width: 80px;
    height: 80px;
    /* padding: 5% 5%; */
    padding-left: 20px;
    padding-top: 20px;
    align-items: center;
}

.basateen_about_section .basateen_about_services .basateen_about_card .text h3{
    font-weight: 400;
    margin-top: 10px;
}

.basateen_about_section .basateen_about_services .basateen_about_card .list{
    width: 100%;
    display: block;
}

.basateen_about_section .basateen_about_services .basateen_about_card .list .about_box_list{
    list-style: none;
    margin-top: 5px;
}

.basateen_about_section .basateen_about_services .basateen_about_card .list .about_box_list li{
    font-size: 1.1rem;
    display: flex;
    padding-bottom: 5px;
    gap: 12px;
}
/* ============Media Queries for About BAsateen Services ============ */
@media (min-width:320px) and (max-width:480px){
    .basateen_about_services{
        width: 100%;
        padding: 0% 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .basateen_about_services .basateen_about_card{
        width: 100%;
        flex-direction: column;
    }
    .basateen_about_services .basateen_about_card .icon{
        width: 100%;
        display: block;
    }
    .basateen_about_services .basateen_about_card .text h3{
        font-size: 18px;
        font-weight: 400;
    }
    .basateen_about_services .basateen_about_card .list{
        width: 100%;
    }
    .basateen_about_services .basateen_about_card .list .about_box_list{
        width: 100%;
    }
    .basateen_about_services .basateen_about_card .list .about_box_list li{
        width: 100%;
        font-size: 12px;
    }
}
@media (min-width:481px) and (max-width:768px){
    .basateen_about_services{
        width: 100%;
        display: block;
    }
    .basateen_about_services .basateen_about_card{
        width: 100%;
        flex-direction: column;
    }
    .basateen_about_services .basateen_about_card .icon{
        width: 100%;
        display: block;
    }
    .basateen_about_services .basateen_about_card .text h3{
        font-size: 20px;
        font-weight: 400;
    }
    .basateen_about_services .basateen_about_card .list{
        width: 100%;
    }
    .basateen_about_services .basateen_about_card .list .about_box_list{
        width: 100%;
    }
    .basateen_about_services .basateen_about_card .list .about_box_list li{
        width: 100%;
        font-size: 14px;
    }
}
/* ============Media Queries for About BAsateen Services ============ */



.basateen_services{
    display: block;
    padding: 0 10%;
    position: relative;
    /* margin-top: -10%; */
    left: 0;
    z-index: 99;
    margin-top: 40px;
}

.services_grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    place-content: start;
    place-items: start;
    box-shadow: 0 0 10px rgba(131, 131, 131, 0.5);
    padding: 5% 5%;
    border-radius: 20px;
    overflow: hidden;
}

.services_col{
    width: 100%;
    height: 700px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8%;
}

.services_grid .services_col:nth-child(1){
    background-color: var(--white-color);
}

.services_grid .services_col:nth-child(2){
    background-color: var(--prim-color);
    color: var(--white-color);
    border-radius: 25px;
}


.services_info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.services_info .landscape_maintenance{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--prim-color);
    border-radius: 25px;
}

.services_info p{
    text-align: justify;
}

.landscape_maintenance_img img{
    display: flex;
    width: 100%;
    height: 490px;
    border-radius: 50px;
    padding: 7% 3%;
}

.irrigation_img img{
    display: flex;
    width: 100%;
    height: 400px;
    border-radius: 50px;
    padding: 3% 3%;
}

.services_info .irrigation{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-color);
}

.services_info i{
    color: var(--prim-color);
    font-size: 1.5rem;
}

.landscape_design_info{
    display: block;
    align-items: center;
    justify-content: center;
    justify-items: center;
    height: 80vh;
    width: 100%;
    gap: 5px;
    padding: 5% 5%;
    background-color: var(--light-text);
    border-radius: 25px;
}
 
.landscape_design_info .landscape_design{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-color);
}

.landscape_design_info p{
    font-size: 1rem;
    color: var(--white-color);
    padding: 3% 5%;
}

.landscape_design_info .landscape_design_img{
    display: flex;
    width: 100%;
    gap: 20px;
}

.landscape_design_info .landscape_design_img img{
    width: 50%;
    height: 50vh;
    border-radius: 25px;
    box-shadow: #000;
}
/* ============Media Queries for BAsateen Services ============ */
@media (min-width:320px) and (max-width:480px){
    .basateen_services{
        width: 100%;
        padding: 0% 10%;
    }
    .basateen_services .services_grid{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .basateen_services .services_grid .services_col{
        width: 100%;
        display: block;
        height: 80vh;
    }
    .basateen_services .services_grid .services_col .services_info {
        width: 100%;
    }
    .basateen_services .services_grid .services_col .services_info .landscape_maintenance{
        width: 100%;
        font-size: 18px;
        font-weight: 500;
    }
    .basateen_services .services_grid .services_info .services_col p{
        width: 100%;
        font-size: 12px;
    }
    .basateen_services .services_grid .services_col .services_info .landscape_maintenance_img{
        width: 100%;
        display: block;
        height: 50vh;
    }
    .basateen_services .services_grid .services_col .services_info .landscape_maintenance_img{
        width: 100%;
        height: 50vh;
    }
    .basateen_services .services_grid .services_col .services_info .irrigation{
        width: 100%;
        font-size: 18px;
        font-weight: 500;
    }
    .basateen_services .services_grid .services_col .services_info p{
        width: 100%;
        font-size: 12px;
    }
    .basateen_services .services_grid .services_col .services_info .irrigation_img{
        width: 100%;
        display: block;
        height: 30vh;
    }
    .basateen_services .services_grid .services_col .services_info .irrigation_img{
        width: 100%;
        height: 30vh;
    }
}
@media (min-width:481px) and (max-width:768px){
    .basateen_services{
        width: 100%;
        padding: 0% 10%;
        margin-bottom: 60px;
    }
    .basateen_services .services_grid{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: 105vh;
    }
    .basateen_services .services_grid .services_col{
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 95vh;
    }
    .basateen_services .services_grid .services_col .services_info{
        width: 100%;
        height: 90vh;
    }
    .basateen_services .services_grid .services_col .services_info .landscape_maintenance{
        width: 100%;
        font-size: 20px;
        font-weight: 400;
    }
    .basateen_services .services_grid .services_col .services_info p{
        width: 100%;
        font-size: 14px;
    }
    .basateen_services .services_grid .services_col .services_info .landscape_maintenance_img{
        width: 100%;
        height: 50vh;
    }
    .basateen_services .services_grid .services_col .services_info .landscape_maintenance_img img{
        width: 100%;
        display: block;
        height: 50vh;
    }
    .basateen_services .services_grid .services_col .services_info .irrigation{
        width: 100%;
        display: block;
    }
    .basateen_services .services_grid .services_col .services_info p{
        width: 100%;
        font-size: 14px;
    }
    .basateen_services .services_grid .services_col .services_info .irrigation_img{
        width: 100%;
        display: block;
        height: 25vh;
    }
    .basateen_services .services_grid .services_col .services_info .irrigation_img img{
        width: 100%;
        display: block;
        height: 25vh;
    }
}
/* ============Media Queries for BAsateen Services ============ */
/* ============Media Queries for BAsateen Landscape Design ============ */
@media (min-width:320px) and (max-width:480px){
    .basateen_services{
        width: 100%;
        display: block;
        padding: 0% 10%;
    }
    .basateen_services .landscape_design_info{
        width: 100%;
        display: block;
    }
    .basateen_services .landscape_design_info .landscape_design{
        width: 100%;
        font-size: 18px;
        font-weight: 400;
    }
    .basateen_services .landscape_design_info p{
        width: 100%;
        font-size: 12px;
    }
    .basateen_services .landscape_design_info .landscape_design_img{
        width: 100%;
        display: block;
    }
    .basateen_services .landscape_design_info .landscape_design_img img{
        width: 100%;
        display: block;
        object-fit: fill;
        height: 32vh;
    }
}
@media (min-width:481px) and (max-width:768px){
    .basateen_services{
        width: 100%;
        display: block;
        padding: 0% 10%;
    }
    .basateen_services .landscape_design_info{
        width: 100%;
        display: block;
        margin-top: 30px;
        /* padding-bottom: -10%; */
        height: 60vh;
    }
    .basateen_services .landscape_design_info .landscape_design{
        width: 100%;
        font-size: 20px;
        font-weight: 400;
        text-align: center;
    }
    .basateen_services .landscape_design_info p{
        width: 100%;
        font-size: 14px;
    }
    .basateen_services .landscape_design_info .landscape_design_img{
        width: 100%;
        display: flex;
    }
    .basateen_services .landscape_design_info .landscape_design_img img{
        width: 50%;
        /* display: block; */
        object-fit: fill;
        height: 40vh;
    }
}
/* ============Media Queries for BAsateen Landscape Design ============ */



/* BENEFITS */
.basateen_benefit_info{
    display: block;
    align-items: center;
    justify-content: center;
    justify-items: center;
    height: 65vh;
    width: 100%;
    gap: 5px;
    padding: 10% 10%;
    padding-top: 20px;
    background-color: var(--prim-color);
    /* margin: 3%; */
 }
 
 .basateen_benefit_info .basateen_benefit{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-color);
    padding-top: 5px;
 }
 
 .basateen_benefit_info .basateen_benefit_list{
     list-style: none;
     padding: 0;
 }
 
 .basateen_benefit_info .basateen_benefit_list li{
    display: flex;
    align-items: start;
    color: var(--white-color);
    font-size: 1.2rem;
    text-align: justify;
    padding-top: 10px;
    gap: 20px;
 }
 
 .basateen_benefit_info .basateen_benefit_list span{
     font-size: 15px;
     line-height: 25px;
 }
 
 .basateen_benefit_list i{
     font-size: 18px;
     color: var(--prim-gradient1);
     margin-right: 10px;
 }
 /* ============Media Queries for BAsateen Benefits ============ */
 @media (min-width:320px) and (max-width:480px){
    .basateen_benefit_section{
        width: 100%;
        display: block;
        padding: 0% 10%;
        margin-top: 30px;
    }
    .basateen_benefit_section .basateen_benefit_info{
        width: 100%;
        display: block;
        height: 45vh;
    }
    .basateen_benefit_section .basateen_benefit_info .basateen_benefit{
        width: 100%;
        font-size: 18px;
        font-weight: 400;
    }
    .basateen_benefit_section .basateen_benefit_info .basateen_benefit_list{
        width: 100%;
        display: block;
    }
    .basateen_benefit_section .basateen_benefit_info .basateen_benefit_list li{
        width: 100%;
        font-size: 12px;
    }
 }
 @media (min-width:481px) and (max-width:768px){
    .basateen_benefit_section{
        width: 100%;
        display: block;
        padding: 0% 10%;
        margin-top: 30px;
    }
    .basateen_benefit_section .basateen_benefit_info{
        width: 100%;
        display: block;
        height: 35vh;
    }
    .basateen_benefit_section .basateen_benefit_info .basateen_benefit{
        width: 100%;
        font-size: 20px;
        font-weight: 400;
    }
    .basateen_benefit_section .basateen_benefit_info .basateen_benefit_list{
        width: 100%;
        display: block;
    }
    .basateen_benefit_section .basateen_benefit_info .basateen_benefit_list li{
        width: 100%;
        font-size: 14px;
    }
 }
 /* ============Media Queries for BAsateen Benefits ============ */


 /* PROJECT SECTION  */
.basateen_projects{
    padding: 0 10%;
    z-index: 99;
}

 .basateen_projects_wrapper{
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.basateen_projects_wrapper i{
    height: 50px;
    width: 50px;
    background: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.basateen_projects_wrapper i:first-child{
    left: -22px;
}

.basateen_projects_wrapper i:last-child{
    right: -22px;
}

.basateen_projects_wrapper .basateen_projects_carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.basateen_projects_carousel::-webkit-scrollbar {
    display: none;
}

.basateen_projects_carousel :where(.card){
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--prim-gradient2);
}

.basateen_projects_carousel .card h2{
    color: var(--white-color);
    text-align: center;
}

.basateen_projects_carousel .card li{
    list-style: none;
    padding: 10px 20px;
    color: var(--white-color);
    text-align: justify;
}

.basateen_projects_carousel .card .center{
    padding: 3% 7%;
    align-items: center;
    border-radius: 20px;
    margin-top: 10px;
    border-radius: 30px;
}

.basateen_projects_carousel .card button{
    padding: 10px 20px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
}

.basateen_projects_carousel .card .center button:hover a{
    background-color: var(--white-color);

    color: var(--black-color);
}


.project{
    width: 100%;
    display: block;
    padding: 0% 10%;
    margin-bottom: 20px;
}

.project .project_info{
    width: 100%;
    display: block;
}

.project .project_info h1{
    width: 100%;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    padding: 5% 7%;
}

.project .project_info .content{
    width: 100%;
    display: block;
}

.project .project_info .content h2{
    width: 100%;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
}

.project .project_info .content .before_project_images{
    height: 100%;
    width: 100%; /* Adjust width to fit layout */
    min-width: 300px; /* Prevents too small cards */
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 40%;
}

.project .project_info .content .before_project_images img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.project .project_info .content .after_project_images{
    height: 100%;
    width: 100%; /* Adjust width to fit layout */
    min-width: 250px; /* Prevents too small cards */
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 40%;
}

.project .project_info .content .after_project_images img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}
 /* ============Media Queries for BAsateen Project Page ============ */
@media (min-width:320px) and (max-width:480px){
    .project{
        width: 100%;
        display: block;
        padding: 0% 10%;
    }
    .project .project_info{
        width: 100%;
        display: block;
    }
    .project .project_info h1{
        width: 100%;
        font-size: 24px;
        font-weight: 800;
    }
    .project .project_info .content{
        width: 100%;
        display: block;
    }
    .project .project_info .content h2{
        width: 100%;
        font-size: 20px;
    }
    .project .project_info .content .before_project_images{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 3% 3%;
    }
    .project .project_info .content .before_project_images img{
        width: 100%;
        object-fit: fill;
    }  
    .project .project_info .content .after_project_images{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 3% 3%;
    }
    .project .project_info .content .after_project_images img{
        width: 100%;
        object-fit: fill;
    }  
}
@media (min-width:481px) and (max-width:768px){
    .project{
        width: 100%;
        display: block;
        padding: 0% 10%;
    }
    .project .project_info{
        width: 100%;
        display: block;
    }
    .project .project_info h1{
        width: 100%;
        font-size: 26px;
        font-weight: 800;
    }
    .project .project_info .content{
        width: 100%;
        display: block;
    }
    .project .project_info .content h2{
        width: 100%;
        font-size: 22px;
    }
    .project .project_info .content .before_project_images{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 3% 3%;
    }
    .project .project_info .content .before_project_images img{
        width: 100%;
        object-fit: fill;
    }  
    .project .project_info .content .after_project_images{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 3% 3%;
        max-width: 100%;
    }
    .project .project_info .content .after_project_images img{
        width: 100%;
        object-fit: fill;
    }
}
 /* ============Media Queries for BAsateen Project Page ============ */



.basateen_projects_carousel .card a{
    color: var(--black-color);
}

.basateen_projects_carousel .card a:hover{
    color: var(--black-color);
}


.basateen_projects_carousel.no-transition{
    scroll-behavior: auto;
}

.basateen_projects_carousel.dragging{
    scroll-behavior: auto;
}

.basateen_projects_carousel.dragging .card{
    cursor: grab;
    user-select: none;
}

.basateen_projects_carousel .card{
    scroll-snap-type: start;
    height: 400px;
    list-style: none;
    background: var(--light-text);
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card .img{
    background: var(--prim-gradient2);
    width: 148px;
    height: 148px;
    border-radius: 50%;
}

.card .img img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border-radius: 4px solid #fff;
}

.card h2{
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}

.card span{
    color: #6a6d78;
    font-size: 1.3rem;
}

.card button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
}
 /* ============Media Queries for BAsateen projects ============ */
@media (min-width:481px) and (max-width:768px)  {
    .basateen_projects{
        width: 100%;
        padding: 0% 10%;
        margin-top: 50px;
    }
    .basateen_projects .basateen_projects_wrapper .basateen_projects_carousel .card h2{
        width: 100%;
        font-size: 22px;
    } 
    .basateen_projects .basateen_projects_wrapper .basateen_projects_carousel .card li{
        font-size: 14px;
    }
    .basateen_projects_wrapper .basateen_projects_carousel{
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media (min-width:320px) and (max-width:480px)  {
    .basateen_projects{
        width: 100%;
        padding: 0% 10%;
        margin-top: 50px;
    }
    .basateen_projects .basateen_projects_wrapper .basateen_projects_carousel .card h2{
        width: 100%;
        font-size: 20px;
    } 
    .basateen_projects .basateen_projects_wrapper .basateen_projects_carousel .card li{
        font-size: 12px;
    }
    .basateen_projects_wrapper .basateen_projects_carousel{
        grid-auto-columns: 100%;
    }
}
 /* ============Media Queries for BAsateen projects ============ */



/* OUR PARTNERS */
.basateen_partners{
    width: 100%;
    display: flex;
    padding: 0;
    z-index: -1;
}

.basateen_partners .hero_client{
    position: relative;
    bottom: -8%;
    left: 2%;
    width: 22%;
    height: 150px;
    background-color: var(--white-color);
    padding: 37px 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.basateen_partners .hero_client{
    color: var(--black-color);
    font-size: 4rem;
    line-height: 3.5rem;
    z-index: -1;
}

.basateen_partners .hero_client h2{
    font-size: 1.3rem;
    font-weight: 500;
    z-index: -1;
    color: var(--black-color);
    bottom: -80px;
}

.basateen_partners .hero_client img{
    position: relative;
    top: -5%;
    right: 0;
    z-index: -1;
    bottom: -10px;
    width: 70%;
    object-fit: contain;
}
 /* ============Media Queries for BAsateen Partners ============ */
 @media (min-width:320px) and (max-width:480px){
    .basateen_partners{
        width: 100%;
        display: flex;
        margin-bottom: 10px;
    }
    .basateen_partners .hero_client{
        width: 30%;
    }
    .basateen_partners .hero_client img{
        width: 100%;
    }
    .basateen_partners .hero_client h2{
        width: 100%;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.2rem;
    }
 }
 @media (min-width:481px) and (max-width:768px){
    .basateen_partners{
        width: 100%;
        display: flex;
        margin-bottom: 10px;
    }
    .basateen_partners .hero_client{
        width: 30%;
    }
    .basateen_partners .hero_client img{
        width: 100%;
    }
    .basateen_partners .hero_client h2{
        width: 100%;
        font-size: 22px;
        text-align: center;
        font-weight: 400;
        line-height: 1.2rem;
    }
 }
 /* ============Media Queries for BAsateen Partners ============ */


.basateen_partners .logoSwiper{
    width: 100%;
    position: relative !important;
    /* top: 103%; */
    bottom: -80px;
    left: 35%;
    height: 140px;
    transform: translate(-50%, -50%);
    padding: 1.5% 2% !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: -1;
    background-image: var(--prim-gradient1);
}

.basateen_partners .logoSwiper .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}

.basateen_partners .logoSwiper .swiper-slide img{
    width: 100%;
    height: 100px;
    object-fit: contain;
    transition: var(--transition);
}

.basateen_partners .logoSwiper .swiper-slide img:hover{
    filter: invert(100%);
    cursor: pointer;
}






