@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primarycolor:#38b6ff;
    --primaryopacitycolor:#38b6ff88;
    --secondary-color:#2d2d2d;
    --dark-gray:#eaeaea;
    --white:#fff;
    --jost:"Jost", serif;
    --lateef:"Lateef", serif;
    --ss:sans-serif;
    --default-transition:350ms;
}

*{padding: 0;margin: 0;box-sizing: border-box;text-decoration: none;font-family: var(--jost);}
p{margin-bottom: 0;}
body{overflow-x: hidden ;}
ul{list-style: none;margin: 0;padding: 0;}

input:focus:not(input[type=checkbox]),
textarea:focus
{
    box-shadow: 0 0 1px 3px var(--primaryopacitycolor) ;
    border-color: #fff !important;
}
input:user-invalid,
textarea:user-invalid
{
    box-shadow: 0 0 1px 1px rgb(255, 0, 0) !important;
    border-color: #f00 !important;
}

input,textarea
{
    width: 100%;
    padding: 8px;
    outline: none;
    border: 1px solid var(--white);
    transition: var(--default-transition);
}
input:is(:hover,:active,:focus,.active),textarea:is(:hover,:active,:focus,.active){
    box-shadow: 3px 3px 0 0 var(--secondary-color) !important;
}

.sans-serif{
    font-family: var(--ss);
}
.jost{
    font-family: var(--jost);
}
.lateef{
    font-family: var(--lateef);

}
strong{
    font-family: inherit;
}
.fixed-btns .fixed-btn
{
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: 45px;
    font-size: 1.75rem;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: var(--primarycolor);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.fixed-btns .fixed-btn a{
    color: inherit;
}
.fixed-btns .fixed-btn.bottomtotop
{
    left: auto;
    right: 1rem;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
}
.fixed-btns .fixed-btn.bottomtotop.active{
    opacity: 1;
    pointer-events: all;
}

.grid-5{
    gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat(5,1fr);
}
@media(max-width:540px){
    .grid-5{grid-template-columns: repeat(3,1fr);}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a{color: var(--primarycolor);text-decoration: none !important;}
a:hover{color: var(--primarycolor);text-decoration: none !important;}
.btn{
    text-transform: uppercase;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    padding: 8px 20px;
    transition: var(--default-transition);
}
.btn:has(i) i{transition: 0.75s;}
.btn:is(:hover,:active,:focus) i{transform: translateX(10px);box-shadow: 3px 3px 0px 0px var(--secondary-color);}
.btn:is(:hover,:active,:focus){box-shadow: 3px 3px 0px 0px var(--secondary-color);}
.btn:is(:hover,:active,:focus,.active){background: var(--primarycolor) !important;border-color:var(--white) !important;color: #fff;}
.btn:is(:focus){box-shadow: 0 0 1px 3px var(--primaryopacitycolor);}



/* Header Style */
.header{
    background-color: #fff;
    border-bottom: 1px solid var(--primarycolor);
}
.nevbar{
    height: 80px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.nevbar_con li{
    list-style: none;
}
.nevbar_con > li > a{
    text-decoration: none;
    padding: 18px 23px;
    font-size: 17px;
    font-family: "Jost", serif;
    font-weight: 500;
    color: var(--primarycolor);
    position: relative;
}
.drop_con::before{
    content: "";
    left: 0;
    width: 100%;
    position: absolute;
    /* width: 0; */
    height: 2px;
    border-radius: 10px;
    background-color: var(--primarycolor);
    bottom: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s;
}
.drop_con:hover:before,
.drop_con.active:before
{
    opacity: 1;
    bottom: 8px;
    transform: scale(1);
}
/* .download_button{
    padding: 10px 5px;
    display: inline-block;
    background:#0C7D8D;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.download_button::after{
    content: '';
    position: absolute;
    inset: 0;
    background: #E31E24;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: 1.3s;
}
.download_button:hover:after{
    transform: scaleX(1);
} */
 /* .action_btn{
    font-family: "Jost", serif;
    text-align: center;
    color: #ae0003;
    font-size: 20px;
    text-decoration: none;
 } */
.drop{
    position: relative;
    z-index: 2;
}
.dropdown{
    position: absolute;
    content: "";
    top: 35px;
    left: 18px;
    width: 245px;
    border: 1px solid none;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.10);
    display: none;
    background-color:#fff8eb;
}
.drop:hover .dropdown{
     display: block;
}
.dropdown > li > a{
    font-size: 16px;
    display: inline-block;
    padding: 8px 10px;
    font-weight: 500;
    color: black;
    font-family: "Jost", serif;
}
.dropdown li:hover a{
    border-bottom: 2px solid;
}
.dropdown li{
    margin-bottom: 10px;
}
.dropdown li:hover{
    padding-left: 8px;
    transition: 0.5s;

    
}
.menu_btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-radius: 1px solid;
    color: white;
    background-color: var(--primarycolor);
    border: none;
    font-size: 24px;
}
@media (max-width:1196px){
    .top_name a{
        font-size: 12px;
    }
    .top_name p{
        font-size: 12px;
    }
} 
@media (max-width:989px){
    .top_name i{
        text-align: center;
    }
}    

@media (max-width: 992px) {
    .header_con a{
        font-size: 12px;
        /* padding: 15px 18px; */
    }
    .header_main_con{
        font-size: 9px;
        /* padding: 15px 18px; */
    }
    .drop a{
        font-size: 10px;
        padding: 10px;
        /* padding: 15px 18px; */
    }
}
.about
{
    background-image: url(../img/about_img_.png);
    background-repeat: no-repeat;
    background-size: Cover;
}
.Feature
{
    background-color: #F7F5F0;
}
.Feature .row > .col-md-3:not(:last-child){
    border-right:1px solid #2d2d2d;
}
.Feature .row svg
{
    fill: var(--primarycolor);
}
@media (max-width:767px) {
    .Feature .row .col-md-3:nth-child(2){
        border-right: 0px solid transparent;
        border-bottom: 1px solid #2d2d2d;
    }
    .Feature .row .col-md-3:nth-child(1){
        /* border-right: 0px solid transparent; */
        border-bottom: 1px solid #2d2d2d;
    }
}
.cusion {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.cusion-2{
    overflow: hidden;
    border-top: 10px solid var(--primarycolor);
    border-bottom: 10px solid var(--primarycolor);
    box-shadow: 0 0 4px 2px rgba(128, 128, 128, 0.162);
    border-radius: 5px;
    position: relative;
}
.cusion-2::before{
    content: "";
    position: absolute;
    inset: 0px;
    /* background-color: rgba(0, 0, 0, 0.2); */
    transition: 0.3s;
    z-index: 1;
}

.cusion-3{
    content: "";
    position: absolute;
    bottom: 0;
}
.cusion-2 img{
    transition: 0.5s;
}
.cusion-2:hover img{
    transform: scale(1.1);
}
.cusion-2 .info{
    /* position: absolute; */
    bottom: 0;
    padding: 1rem;
}
.cusion-2 .info h4{
    color: #2d2d2d;
    font-family: "Jost", serif;
    font-size: 25px;
    font-weight: 700;
}
.product{
    background-image: url(../img/Product_bg.png);
    background-repeat: no-repeat;
}
.feature_box{
    background-color: #F7F5F0;
}
.feat_box{
    background-color: white;
    border: 1px solid rgb(174, 174, 174) ;
    border-radius: 5px;
}
.gallery{
    background-image: url(../img/gallery_banner.png);
    background-size: 100%;
    padding: 11rem;
    background-repeat: no-repeat;
}
.gallery h4{
    color: white;
    font-family: "Jost", serif;
    font-size: 25px;
}
.gallery > a{
    text-decoration: none;
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 10px 25px;
    font-size: 20px;
    border: 1px solid white;
    transition: 0.8s;
}
.gallery > a:hover{
    background-color: var(--primarycolor);
}
.fa-arrow-up-right-from-square{
    margin-left: -10px;
    opacity: 0;
}
.fa-arrow-up-right-from-square:hover{
    margin-left: 0;
    opacity: 1;
    transition: 0.5s;
}
@media (max-width: 600px) {
    .gallery {
        padding: 6rem 2rem; 
        background-size: cover;
        text-align: center;
    }
    
    .gallery h4 {
        font-size: 18px;
    }

    .gallery > a {
        font-size: 16px; 
        padding: 8px 20px; 
    }

    .galleer_p {
        font-size: 12px; 
        padding: 0 10px; 
    }
}
.testimonial_cir{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.testionial_img i{
    color: var(--primarycolor);
}
.testmo_bg{
    background-color: rgb(247 247 247);
    border-radius: 5px;
    position: relative;
}
.fa-star{
    color: rgb(255, 197, 6);
}
.quote{
    top: -35px;
    right: 0;
    width: 15% !important;
    position: absolute;
}
.form_style{
    background-color:var(--primarycolor);
}
.footer{
    background-color: var(--bs-dark);
}
.footer_head{
    font-family: "Jost", serif;
    font-size: 21px;
    color: rgb(255, 247, 247);
    font-weight: 700;
}
.list_style li{
    list-style: none;
    margin-bottom: 10px;
}
.list_style a{
    text-decoration: none;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}
.fa-arrow-up-right-from-square{
    margin-left: -10px;
    opacity: 0;
    transition: 0.5s;
}
.list_style a:hover .fa-arrow-up-right-from-square{
    opacity: 1;
    margin-left: 0;
}
.last_section{
    border: 1px solid white;
    border-radius: 5px;
}
.footer_icon i{
    color: white !important;
    margin-right: 10px;
    font-size: 20px;
    margin-top: 22px;
}
.banner {
    background-image: url("img/about_banner.png");
    padding: 9rem 0;
}
.banner2 {
    background-image: url("img/bg_par_Set.png");
    background-size: cover;
    padding: 10rem 0;
    background-repeat: no-repeat;
}
.about_link{
    text-decoration: none;
    color: white;
    font-family: "Jost", serif;
}
.about_her{
    color: white;
    font-size: 50px;
    font-family: "Jost", serif;
    font-weight: 700;
}
#sidemenu ul li{
    font-size: 15px;
    padding: 10px 15px;
    border-bottom: 1px solid;
}
#sidemenu ul li a{
    color: black;
}
#sidemenu ul li:hover{
    background-color: var(--primarycolor);
    color: white !;
}
#sidemenu ul li:hover a{
    color: white;
}
#sidemenu > ul > li.show .dropdown{
    display: block;
    position: relative;
    top: 6px;
    left: 0;
}
#sidemenu > ul > li:hover .dropdown a{
    color: #000;
}
.bottom{
    background-color: var(--primarycolor) !important;
}
.bottom i{
    color: white;
    margin-right: 10px;
    font-size: 20px;
}
.banner_text2{
    background-color: rgb(221, 221, 221);
    padding: 10px;
}
.banner_text2 h5{
    margin: 0;
}
.our_vision
,
.about-section {
    /* background-color: #f8fdfc; */
    background-image: url("../img/about-bg-index.png");
    background-position: center;
    padding: 60px 0;
}
.our_vision h4 {
    color: var(--primarycolor);
    font-family: "Jost", serif;
    font-weight: 700;
    font-size: 26px;
}
.our_vision h2 {
    font-weight: bold;
}
.vision-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.vision-card i {
    font-size: 24px;
    color: #a64d79;
    margin-right: 10px;
}
.vision-text h5 {
    margin-bottom: 5px;
}
.vision-img img {
    border-radius: 12px;
    max-width: 100%;
}
.Product_cate{
    background-color: white;
    border: 1px solid;
    border-radius: 5px;
    overflow: hidden;
}
.Product_img{
    overflow: hidden;
}
.Product_img img{
    transition: 0.5s;
    aspect-ratio: 1;
    object-fit: contain;
}
.Product_img:hover img{
    transform: scale(1.1);   
}
.bg-danger{
    background-color: var(--primarycolor)c4 !important;
}
.bg-danger a{
    color: white;
    font-family: "Jost", serif;
    font-size: 20px;
    transition: 0.5s;
}
.bg-danger a:hover{
    padding: 20px;
}
.our_gl_bg{
    background-color: white;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 10px;
    box-shadow: 0 0px 5px 2px rgb(164, 164, 164) ;
}
.con_box .d-flex .head_add {
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    border: 1px solid var(--primarycolor);
    align-items: center;
    justify-content: center;
    display: flex;
}
.head_add i{
    font-size: 20px;
    color: var(--primarycolor);
}
.con_box .d-flex{
    box-shadow: 0 2px 5px 2px #e4e4e4;
    border-radius: 5px;
    padding: 7px;
    gap: 1rem;
}
.form_inquiry{
    background-color: var(--primarycolor);
}

.section.banner .home_banner img{
    aspect-ratio: 1;
    object-fit: contain;
}
.job-card
{
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    transition: var(--default-transition);
}
.job-card:hover
{
    box-shadow: 3px 3px 0 0 var(--secondary-color);
    transform: translateY(-2px);
}
.job-card img
{
    aspect-ratio: 2;
    object-fit: cover;
    transition: var(--default-transition);
}
.job-card:hover img{
    transform: scale(1.05);
}