@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:#650831;
    --primaryopacitycolor:#65083188;
    --secondary-color:#2d2d2d;
    --dark-gray:#eaeaea;
    --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: var(--primarycolor) !important;
}
input:user-invalid,
textarea:user-invalid
{
    box-shadow: 0 0 1px 3px #f005 !important;
    border-color: #f00 !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);}
.btn:is(:hover,:active,:focus,.active){background: var(--primarycolor) !important;border-color:var(--primarycolor) !important;color: #fff;}
.btn:is(:focus){box-shadow: 0 0 1px 3px var(--primaryopacitycolor);}



/* Header Style */
.top_header{
    background-color: #ba0208;
}
.top_con a{
    color: white;
    margin-right: 7px;
}
.marque{
    color: white;
}
.header{
    background-color: #fffbf4;
}
.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: 16px;
    font-family: "Jost", serif;
    font-weight: 500;
    color: black;
    position: relative;
}
.drop_con::before{
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    border-radius: 10px;
    background-color: #ed1e24;
    bottom: 8px;
    transition: all 400ms ease-in-out;
}
.drop_con:hover:before,
.drop_con.active:before
{
    width: 50%;
}
/* .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: #894900;
    border: none;
    font-size: 24px;
}
@media (max-width:1196px){
    /* .drop_con{
        font-size: 13px;
    } */
    .nevbar_con > li > a{
        font-size: 13px;
    }
}
@media (max-width:993px){
    .send_btn{
        padding: 14px 30px !important;
    }
    .nevbar_con > li > a{
        font-size: 8px;
    }
}
.send_btn{
    background: #f73a40;
    position: relative;
    color: white;
    border-radius: 8px;
    z-index: 0;
    display: inline-block;
    border: none;
    padding: 15px 50px;
  } 
  .send_btn.brd{
    border: 1px solid white;
    overflow: hidden;
  }
 .send_btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #ba0208;
    border-radius: 5px;
     box-shadow:inset 1px 1px 1px 0px rgba(255,255,255,.5),
     5px 5px 10px 0px rgba(116, 116, 116, 0.1),
     4px 4px 5px 0px rgba(95, 95, 95, 0.1);
    transition: all 0.5s ease;
  } 
  .send_btn:hover {
    color: #fff;
  }
  .send_btn:hover:after {
    left: 0;
    width: 100%;
  }
/* .about{
    background-image: url(../img/about_img_.png);
    background-repeat: no-repeat;
    background-size: Cover;
} */
/* .Feature{
    background-color: #F7F5F0;
} */
 .main_heading{
    text-align: center;
    font-family: system-ui;
    font-size: 34px;
    font-weight: 700;
 }
.Featu_bor{
    border-right: 1px solid;
}
@media (max-width:568px) {
    .Featu_bor{
        border: none;
    }
}
.container{
    max-width: 1350px;
}
.cusion {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.cusion-2{
    overflow: hidden;
    border-top: 20px solid #ffe3e3;
    /* border-bottom: 10px solid #45391f; */
    /* border: 5px solid red; */
    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_bg.png);
    padding: 11rem;
    background-repeat: no-repeat;
    background-size: contain;
}
.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:;
} */
.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 img{
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}
.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:#ffeded;
}
.footer{
    background-color: #393939;
    background-image: url(../img/footer_bg.png);
}
.footer_head{
    font-family: system-ui;
    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: 500;
    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: 18px;
    padding: 10px 15px;
    border-bottom: 1px solid;
    margin-bottom: 5px;
}
#sidemenu ul li a{
    color: black;
}
#sidemenu ul li:hover{
    background-color: rgb(169, 1, 1);
    color: white !;
    border-radius: 5px 5px 0 0;
}
#sidemenu ul li:hover a{
    color: white;
}
.bottom{
    background-color: rgb(169, 1, 1)  !important;
}
.bottom i{
    color: white;
    margin-right: 10px;
    font-size: 20px;
}
.banner_text2{
    background-color: rgb(221, 221, 221);
    padding: 10px;
}
.our_vision {
    /* background-color: #f8fdfc; */
    background-image: url("img/our_mision_bg.png");
    padding: 60px 0;
}
.our_vision h4 {
    color: #724f03;
    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: #45391fc4 !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 #45391f;
    align-items: center;
    justify-content: center;
    display: flex;
}
.head_add i{
    font-size: 20px;
    color: #45391f;
}
.con_box .d-flex{
    box-shadow: 0 2px 5px 2px #e4e4e4;
    border-radius: 5px;
    padding: 7px;
    gap: 1rem;
}
.form_inquiry{
    background-color: #a40000;
}
.plantation{
    background-image: url(../img/plantation_bg.png);
    /* padding: 100px; */
    background-size: cover;
    background-repeat: no-repeat;
}
.believ{
    background-image: url(../img/belive-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width:568px){
    .believ{
        background-image: none;
    }
}

select.form-control{
    appearance: revert;
}
.plant{
    background-image: url(../img/plantation.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px;
    justify-content: center;
}
.plant h5 , .plant2 h5 {
    font-size: 60px;
    color: #ffffff;
    font-weight: 700;
}
.banner_con a{
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
}
.banner_con span{
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
}
@media(max-width:568px){
    .plant h5{
        font-size: 35px;
    }
    .banner_con a{
        font-size: 17px;
    }
    .banner_con span{
        font-size: 17px;
    }
}
.form_style2{
    background-color: #F2F0EC;
    border-radius: 5px;
}
.form-style{
    height: 100%;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px dashed grey;
}
.plant2{
    background-image: url(../img/women_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px;
    justify-content: center;
}
.plant3{
    background-image: url(../img/santan_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px;
    justify-content: center;
}
.plant4{
    background-image: url(../img/gallery_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px;
    justify-content: center;
}
.gallery1{
    columns: 4;
}