@font-face {
    font-family:'Montserrat';
    src: url("assets/fonts/Montserrat-Bold.ttf") format('truetype');
}
@font-face {
    font-family:'Numans' ;
    src: url("assets/fonts/Numans-Regular.ttf") format('truetype');
}
@font-face {
    font-family:'Lora' ;
    src: url("assets/fonts/Lora-Bold.ttf") format('truetype');
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --black:black;
    --white:white;
    --gray:gray;

    --primary-color:#d4a276;
    --secondary-color:#f8793c;
    --action-color:#2C2860;

    --bg1:#F8F3EF;
    --bg2:pink;

    --gradient1:background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);

    --heading:'Montserrat', sans-serif;
    --sub-heading: 'Numans', sans-serif;
    --content:'Lora', serif;
}

a{
    text-decoration: none;
    color:var(--action-color)
}
li{
    list-style: none;
}
ul{
    margin: 0;
    padding: 0;
}
p{
    /*font-family: var(--content);*/
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    word-break: break-word;
    margin-top: 10px;
    font-weight: 400 !important;
}

/* ================== class ================= */


/* background color  */
.bg-black{
    background: var(--black);
}
.bg-white{
    background:var(--white) ;
}
.bg-primary{
    background:var(--primary-color) ;
}
.bg-secondary{
    background:var(--secondary-color) ;
}
.bg-action{
    background:var(--action-color) ;
}
.bg1{
    background: var(--bg1);
}
.bg2{
    background: var(--bg2);
}
.bg{
    background: #f6eee4;
}
.bg-gradient1{
    background:var(--gradient1);
}
.bg-gradient2{
    background:var(--gradient2);
}
.white{
    color: var(--white);
}
.black{
    color: var(--black);
}
.primary{
    color: var(--primary-color);
}
.secondary{
    color: var(--secondary-color);
}
.action{
    color: var(--action);
}


/* text color  */

section{
padding: 0;
margin: 0;
}
.container-fluid{
    position: relative;
    padding: 0;
    margin: 0;
}
.section-item{
    position: relative;
    padding: clamp(15px, 6vw, 60px);
}

.container{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.align-item{
    display: flex;
    align-items: center;
}


/* -------------- button ------------- */

.c-button {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 0.9em 1.6em;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.c-button--gooey {
  color: var(--action-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 4px solid var(--action-color);
  border-radius: 0;
  position: relative;
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs {
  height: 100%;
  filter: url(#goo);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -3px;
  right: -1px;
  z-index: -1;
}

.c-button--gooey .c-button__blobs div {
  background-color: var(--action-color);
  width: 40%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  transform: scale(1.4) translateY(125%) translateZ(0);
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs div:nth-child(1) {
  left: -5%;
}

.c-button--gooey .c-button__blobs div:nth-child(2) {
  left: 30%;
  transition-delay: 60ms;
}

.c-button--gooey .c-button__blobs div:nth-child(3) {
  left: 66%;
  transition-delay: 25ms;
}

.c-button--gooey:hover {
  color:var(--secondary-color);
  border-color:  var(--secondary-color);
}

.c-button--gooey:hover .c-button__blobs div {
  transform: scale(1.4) translateY(0) translateZ(0);
}


/* -------------- heading ------------- */

.heading-body{
    display: flex;
    flex-direction: column;
}
 .heading-body .small-heading {
    color: var(--secondary-color);
    font-family: var(--sub-heading);
 }
 .heading-body .small-heading  span{
    background-color: #2c2860b2;
    padding: 1px 6px;
 }
 .heading-body .big-heading {
    font-size: clamp(25px, 4vw , 50px);
    font-weight: bolder;
    font-family: var(--heading);
    color: var(--action-color);
 }
  .heading-body .content-heading {
    width: 70%;
  }
.center{
    align-items:center;
}
.start{
    align-items: start;
}
.end{
    align-items: end;
}

/* ================ header ====================== */
.myheader{
    color: var(--white);
    text-align: center;
    padding: 0px 10px;
    background:var(--action-color);
}
.myheader span{
    color: var(--secondary-color);
}
.logo{
    height: 65px;
    display: flex;
    align-items: center;
}
.logo p{
    font-size: 25px;
    margin: 0;
   margin-left: 10px;
 color:var(--action-color);
 font-weight: 500;
}
.logo img{
    height: 100%;
}
.top-contact-section{
    display: flex;
    align-items: center;
}
.socail-line-top{
    display: flex;
}
.top-contact-section .s-link{
    color: var(--action-color);
    margin-right: 25px;
    font-size: 18px;
      transition: all 0.2s;
      position: relative;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color:whitesmoke;
      overflow: hidden;
      /* border: 1px solid var(--primary-color); */
}
.top-contact-section .s-link i{
    z-index: 5;
    position: relative;
}
.top-contact-section .s-link::before{
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
  background-color: var(--primary-color);
    left: 0;
    bottom: -90%;
    transition: all linear .1s;
    
}
.top-contact-section .s-link:hover::before{
    bottom: 0;
}
.top-contact-section .s-link:hover{
    color: var(--white);
}

.top-contact-btn{
    padding: 10px 25px;
   
    background: var(--primary-color);
    color: var(--action-color);
    font-weight: 500;
    transition: all 0.2s;

}
.top-contact-btn:hover{
    background: var(--action-color);
    color: var(--primary-color);
}

/* ============== navbar =========== */

.navbar-body{
    display: flex;
    /*align-items: center;*/
    justify-content: center;
        position: fixed;
    z-index: 100;
     margin: auto !important;
     padding: 0 20px;
      backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, .15);
     
}
.new-navbar{
    background-color: transparent !important;
    padding: 0;
    width: 90% ;
   
  
     
}
.navbar-nav{
    display: flex;
    justify-content: space-around !important;
     width: 80%;
     margin: 0;
     padding: 0;
     /* background-color: var(--action-color); */
}
.nav-item {
    width: 100%;
}
.nav-item .nav-link{
    padding: 20px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-family: var(--sub-heading);
    color: var(--action-color);
    font-weight: 600;
}
.nav-item .nav-link:hover{
    /*background-color: #e6ccb2;*/
    color: var(--white) !important;
}
.nav-link.active {
  color: var(--white) !important;
 /*background-color: #e6ccb2;*/
}

/* dropdown-menu */

.dropdown-menu{
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 500px;
    overflow-y: auto;
    width: 400px;
    background: transparent;
 backdrop-filter: blur(2px); 
  background-color: rgba(255, 255, 255, 0.3)
    
}
.dropdown-menu::-webkit-scrollbar{
    width: 8px;
    background-color:whitesmoke;
}
.dropdown-menu::-webkit-scrollbar-thumb{
    background-color: var(--primary-color);
}
.dropdown-menu::-webkit-scrollbar-thumb:hover{
    background-color: #ddb18a;
}
.dropdown-menu li a {
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
}
.dropdown-menu li a i{
    font-size: 11px;
}
.dropdown-item:hover{
    background: linear-gradient(var(--primary-color),#ddb18a,var(--primary-color));
    /* color: var(--white); */
}
.dropdown-item:hover i{
    margin-left: 4px;
    transition: linear 0.3s;
}
.dropdown:hover .dropdown-menu{
    display: block;
}

/* Remove default Bootstrap icon */
.navbar-toggler-icon {
  display: none;
}

/* Custom toggler base styles */
.custom-toggler {
  border: none ;
  box-shadow: none !important;
  outline: none !important;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  position: relative;
}


.toggler-icon {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--action-color); /* Uses Bootstrap primary */
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}
.custom-toggler:hover{
    border: none;
    box-shadow: none;
}

/* Animation when menu is open */
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
  
  .sticky{
    top: 0px !important;
    animation:  navbar linear 1s;
    background-color: var(--white);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
     padding: 5px;
}
  .sticky.nav-item .nav-link:hover{
      color:var(--primary-color) !important;
  }
  
 .sticky .nav-item .nav-link:hover{
    /*background-color: #e6ccb2;*/
    color: var(--primary-color) !important;
}
.sticky .nav-link.active {
  color: var(--primary-color) !important;
 /*background-color: #e6ccb2;*/
}
.sticky .dropdown-menu{
    background: white;
}
 

@keyframes navbar {
    0%{
       transform: translateY(-100%);
    }
    100%{
      transform: translateY(0%);
    }
}

/* ============ banner-slider =============== */

.banner-slider{
    width: 100%;
}
.banner-slider .swiper-slide{
    width: 100%;
}
.banner-slider .swiper-slide img{
    width: 100%;
}

   /* <!--================= marquee section ================= --> */

   .marquee-body{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: var(--action-color);
   }
   .marquee-item{
    padding: 10px;
    color: #e6ccb2;
    font-size: clamp(25px ,3vw,30px);
    font-weight: bold;
    color: #ffdab9;
    text-align: center;
   transition: linear 0.5s;
     
   }
   .marquee-item:hover{
    color: transparent; 
  -webkit-text-stroke: 1px white;
  cursor: pointer;
   }
   .even{
  color: transparent; 
  -webkit-text-stroke: 1px white; 
   transition: linear 0.5s;

   }
    .even:hover{
        color: #ffdab9;
  -webkit-text-stroke: 0px white; 
  cursor: pointer;

    }
    
    /*marquee section */
    
    marquee p{
        margin: 0;
        word-spacing: 5px;
        font-family: none;
        font-size: 18px;
        padding: 10px;
        color: var(--action-color);
    }

   /* =============== Top Products section =============== */

   .top-prod-card{
    width: 100%;
    height: auto;
    position:relative;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border-bottom :5px solid var(--primary-color);
    overflow: hidden;
   }
   .top-prod-card .top-prod-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
   }
   .top-prod-card .top-prod-img img{
    width: 100%;
    height: auto;
     transition: all linear  1s;
   }
   .top-prod-card .top-prod-content{
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    background:linear-gradient(to right ,#a47148,transparent);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px;
    overflow: hidden;
    transition: linear  .8s;
   }
      .top-prod-card .top-prod-content .top-prod-name{
        font-size: 25px;
        font-weight: 600;
        width: fit-content;
        /* margin-bottom: 10px; */
        color: var(--white);
        text-transform: capitalize;
        padding: 10px;
        font-family: var(--heading);
        z-index: 2;
        /* text-shadow: 0 0 1px white; */
        position: relative;
      }
          .top-prod-card .top-prod-content .top-prod-des{ 
        padding: 10px;
    color: whitesmoke;
      }
      .top-prod-card:hover .top-prod-content{
        left: 0;
      }
         .top-prod-card:hover .top-prod-img img{
            /*transform: scale(1.1);*/
         }

         .top-prod-card .top-prod-content .top-prod-name::before{
            background-color: var(--primary-color);
            width: 0%;
            height: 3px;
            left: 10px;
            bottom: 10px;
            position: absolute;
            content: '';
            transition: linear .5s;

         }
          .top-prod-card .top-prod-content .top-prod-name:hover::before{
            width: 90%;
          }

/* ================ Company profile ============= */

.top-about-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-top-left-radius: 80px;
}

.top-about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: linear 1s;
}
.top-about-img:hover img{
    /*transform: scale(1.1);*/
}
.about-heading-left{
    display: none;
}
.ponit{
    font-size: 16px;
    text-align: center;
    font-family: var(--sub-heading);
    padding: 15px 10px;
    background-color:#e6ccb2;
    font-weight: 550 ;
}
.ponit i{
    font-size: 25px;
    color: var(--action-color);
}
.point-left{
    border-top-left-radius: 30px;
}
.point-right{
    border-top-right-radius:30px ;
}
.download-btn{
    background: var(--action-color);
    color:var(--primary-color);
border-radius: 3px;
}
.download-btn i{
    color: var(--primary-color);
}
.bottom-about-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-bottom-right-radius: 80px;
    margin-top: 45px;
}
.bottom-about-img img{
    width: 100%;
    height: 100%;
    transition: linear 1s;
    object-fit: cover;
}
.bottom-about-img:hover img{
    /*transform: scale(1.1);*/
}

.banner-center{
    width: 100%;
    height: auto;
}
.banner-center img{
    width: 100%;
}
 
/* ==============SREVED SECTION ================= */

.served-card{
    width: 100%;
    height: auto;
    padding: 10px;
    transition: linear 0.3s;
}
.ser-img{
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.ser-img img{
    width: 100%;
}
.served-card .ser-icon{
    font-size: 40px;
    color: var(--primary-color);
    transform: translateY(-50%);margin-left: 10px;
    background: var(--action-color);
    width: fit-content;
    padding: 0px 15px;
}
.served-card .ser-name{
    font-size: 28px;
    font-weight: 600;
    color: var(--action-color);
}
.served-card:hover{
    background-color: var(--action-color);
}
.served-card:hover .ser-name{
    color: var(--primary-color);
}
.served-card:hover .ser-des{
    color: var(--white);
}

.scroll-body{
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(
     to left, rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)  , rgba(0, 0, 0, 0.5)
      ,transparent
    ),
    url('../../images/bg/banner-for-bg.jpg');
      background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.marquee1{
    width: 100%;
    transform: rotate(-135deg)  translateY(70px);
 }
.marquee2{
    width: 100%;

    transform: rotate(45deg) translateY(0px);
}
.marquee3{
    width: 100%;

    transform: rotate(45deg) translateY(-500px);
}
.marquee4{
    width: 100%;

    transform: rotate(-135deg) translateY(800px);
}
.mar-body{
    display: flex;
   /* box-shadow:0 0 4px gray */
}
.mar-img{
    margin: 10px;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}
.mar-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-body{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    background:linear-gradient(to right,var(--primary-color),transparent,transparent);
    top:0;
    left:0;
    padding: 20px;
}
.overlay-body .content-heading{
    text-shadow: 2px 2px 4px black;
}
  
/* ================== All product section ============== */

.product-body{
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    margin-bottom: 50px ;
}
.prod-card{
    width: 100%;
    height: auto;
    padding: 15px;
}
.prod-card .prod-img {
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;

    /*border-top: 5px solid var(--action-color);*/
}
.prod-card .prod-img img {
    width: 100%;
    transition: all linear 1.5s;
}
.prod-name{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--action-color);
    font-family: var(--content);
    font-size: 18px;
    /*border-top: 4px solid var(--action-color);*/
    position: relative;
    text-align: center;
}
.prod-name::before{
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--action-color);
    transition:  linear .5s;
}
.prod-name span{
    z-index: 4;
    transition: all .5s;
}
.prod-card:hover .prod-img img{
/*transform: scale(1.1);*/
}
.prod-card:hover .prod-name::before{
    width: 100%;
}

.prod-card:hover .prod-name span{
    color: var(--primary-color);
}
.prod-name span:hover{
    text-decoration: underline;
}

.custom-prev, .custom-next {
  background: #fff;
  border: 2px solid #241f50;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #241f50;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
}

.custom-prev {
  left: -50px;
}

.custom-next {
  right: -50px;
}



/* =================== why choose us ================== */
.why-section{
    position: relative;
}
.why-back-img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
clip-path: polygon(100% 36%, 100% 39%, 100% 100%, 0% 100%);

z-index: -1;
    background:linear-gradient(#241f50f1,#241f50f1), url('../../images/products/Restaurant-Interior-Works-and-Designing.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-img{
    width: 100%;
    height: 300px;
    background:linear-gradient(#a471484a,#a4714874), url('../../img/bg/bg1.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}.why-body{
    width: 80%;
    padding: 0px;
    background: #e6ccb2;
    transform: translateY(-150px);
    border-radius: 4px;
    overflow: hidden;
}
.why-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.why-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: linear 1s;
}
.why-img:hover img{
    /*transform: scale(1.1);*/
}
.why-body .heading-body{
    padding: 15px;

}
.why-body .heading-body .big-heading{
     font-size: clamp(35px, 4vw , 40px);
}.why-content{
    padding: 15px;
}
.why-point{
    width: 100%;
    height: 90px;
    margin-top: 15px;
    display: flex;
    align-items: center;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
padding: 10px;
background: whitesmoke;
border-radius: 3px;
}
.why-point .why-num{
    width: 50px !important;
    height: 50px;
background-color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
font-weight: bolder;
font-family: var(--heading);
color: var(--white);
transition: linear .5s;
border-radius: 10px;
}
.why-point .why-des{
    padding-left: 10px;
    width: 90%;
}
.why-des .des{
    font-size: 13px;
}
.why-point:hover .why-num{
    text-shadow: 4px 3px 0px gray;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    cursor: pointer;
}


/* ============== Faq section ======================= */

.faq-img{
    width: 100%;
    height: 100%;
    position: relative;
}
.faq-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
     transition: linear 1s;
}
.faq-top-img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
   
}
.faq-top-img img{
     width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
     transition: linear 1s;
}
.faq-top-img:hover img{
    opacity: 1;
}
.faq-top-img:hover .faq-img img{
    opacity: 0;
}
.faq-section  h5{
    color: var(--action-color);
    font-family: var(--heading);
    font-size:25px;
}
.accordion {
  background-color: var(--primary-color);
  color: var(--action-color);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-bottom: 1px solid var(--action-color);
  font-weight: 600;
  font-size: var(--sub-heading);
}


.accordion.active, .accordion:hover {
  background-color: var(--action-color);
  color: var(--primary-color);
}

.accordion:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color:white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.test-heading{
    padding: 30px 10px;
}
.test-body{
    width: 100%;
    height: auto;
    background-color: #241f50;
    background: linear-gradient(#2c2860c4,#2c2860c4),url('../../images/bg/testi\ bg.jpg');
  
   
}
.test-right{
  max-width: 1400px;
    width: 100%;
}
.test-img{
    width: 100%;
    height: 510px;
    overflow: hidden;
}

.testimonial-body{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

.test-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.test-card {
   position: relative;
   margin: 0px 20px 50px 20px; 
}
.test-card .test-img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    transform: translateY(50%);
}
.test-card .test-img img{
    width: 100%;
    height: 100%;
}
.test-sec{
    background-color: wheat;
    padding: 10px 20px;
    border-radius: 10px;
}
.test-sec .test-content{
    margin-top: 40px;
    text-align: center;

}
.test-rating{
    display: flex;
    align-items: center;
    justify-content: space-between;
  margin-top: 10px;
}
.test-rating .name{
    font-weight: 700;
}


/* Container Styling */
.slick-dots {
  position: absolute;
  bottom: -20px;
  display: flex !important;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Individual Dot */
.slick-dots li {
  margin: 0 6px;
}

/* Dot Button */
.slick-dots li button {
  font-size: 0; /* hide number */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  transition: all 0.3s ease;
}

/* Active Dot */
.slick-dots li.slick-active button {
  background: var(--primary-color);
  transform: scale(1.3);
  outline: 1px solid var(--primary-color);
  outline-offset: 1px;
}

.contact-img{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}
.contact-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: linear 1s;
}
.contact-img:hover img{
    /*transform: scale(1.1);*/
}
.contact-box{
    width: 250px;
    height: 150px;
    background-color: var(--action-color);
    position: absolute;
    top: 50px;
    left: -20px;
    color: var(--primary-color);
    font-family: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;

    font-size: clamp(30px ,6vw,60px);
    border: 3px solid var(--primary-color);
}
.contact-heading{
    font-size:40px ;
    font-weight: 700;
}
.contact-body{
    width: 90%;
    display: block;
    margin: auto;
}
.inquiry-form {
  /* max-width: 500px; */
  width: 100% ;

  margin: auto;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
}



.inquiry-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
 
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  /* margin-top: 20px; */
}
.inquiry-form select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  /* margin-top: 20px; */
}


.inquiry-form button {
  width: 100%;
  padding: 12px;
  background-color: var(--action-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.inquiry-form button:hover {
  background-color: var(--primary-color);
  color: var(--action-color);
}


/*------------- gallery  section----------------*/
.gallery-body{
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    margin-bottom: 50px ;
}
.gallery-card {
    width: 100%;
    height: auto;
    margin: 10px;
    overflow: hidden;
    border: 5px solid var(--action-color);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.gallery-card img{
    width: 100%;
    transition: linear 1s;
}
.gallery-card:hover img{
    /*transform: rotate(0deg) ;*/
}

/*================== Video section ================*/
.video-body{
    display: flex;
align-items: center;
justify-content: space-evenly;
/*background: red;*/
}
.video-body .video-item{
    margin: 20px;
}


/*================== Footer section ================*/
footer {
    background: linear-gradient(-135deg,#a47148e4,#a47148e4,#a47148e4);
    background-position: center;
    background-size: cover;
}

.f-heading {
  font-size: 21px;
  font-weight: 600;
  color: var(--action-color);
  font-family: var(--heading);
  position: relative;
  margin-bottom: 20px;
}

.f-heading::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--action-color);
  transform: skewX(50deg);
}

.f-heading::before {
  position: absolute;
  content: '';
  left: 50px;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--action-color);
  transform: skewX(50deg);
}

.f-about-des {
  color: white;
  overflow-wrap: break-word;
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
}

.f-logo {
  height: 120px;
  width: fit-content;
  padding: 10px;
  border-radius: 50%;
  /* margin: 5px 20px 10px 0px; */
  /* background-color: rgb(228, 226, 226); */
  float: left;
}

.f-logo img {
  height: 100%;
}
.company-name{
    font-size: 25px;
    width: fit-content;
    margin-top: 20px;
    font-family: var(--heading);
    color: var(--action-color);
    font-weight: bolder !important;
    position: relative;
}
.company-name::before{
    width: 0%;
    height: 4px;
    content: '';
    position: absolute;
    background: var(--action-color);
    left: 0;
    bottom: 0;
    transition: linear .2s;
}
.company-name:hover::before{
    width: 100%;
}
.company-name:hover{
    
    cursor: pointer;
}
.company-img{
    width: 80px;
    border-radius: 50%;
    
}
.company-img img{
    width: 100%;
}

.f-body ul {
  height: 280px;
  overflow-y: auto;
}

.f-body ul::-webkit-scrollbar {
  width: 6px;
  background-color: whitesmoke;
  border-radius: 10px;
  overflow: hidden;
}

.f-body ul::-webkit-scrollbar-thumb {
  /* width: ; */
  background-color: var(--primary-color);
  border-radius: 10px;
}

.f-body ul::-webkit-scrollbar-thumb:hover {
  background-color:#ecc5a4;
}

.f-body ul li {
  margin-bottom: 10px;

}

.f-body ul li a {
  color: white;
  position: relative;
  /* padding: 10px; */
}

.f-body ul li a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: '';
  left: 0;
  bottom: 0;
  background: var(--action);
  transform: scale(0);
  transition: all 0.5s;
}

.f-body ul li a:hover {
  color: var(--action);
}

.f-body ul li a:hover::after {
  transform: scale(1);
}

.q-link-body {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.q-link-body ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.q-link-body ul li{
  margin-bottom: 10px;
}
.q-link-body ul li a {
  color: var(--white);
  padding: 0px 15px 0 15px;
  text-transform: capitalize;
  border-left: 2px solid var(--white);
}

.f-link {
  border: none !important;
}

.q-link-body ul li a:hover {
  color: var(--action);
}
.f-social-body{
  display: flex;
  align-content: center;
  justify-content: space-evenly;
}
.f-social-body a{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background-color: var(--white);
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
  
  
}
.f-social-body a i{
  z-index:5 ;
}
.f-social-body a::after{
  width: 100%;
  height: 100%;
  background:li;
  color:var(--action-color);
  position: absolute;
  top:-100%;
  left: 0;
  content: '';
  transition: all .6s;
  background: linear-gradient(var(--primary-color),var(--primary-color),#a47148);
}
.f-social-body a:hover::after{
  top:0;
  
}
.f-social-body a:hover{
  color: var(--action-color);
}

.copy-right {
  padding: 10px;
  background-color: var(--action-color);
  text-align: center;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: var(--content);
}
.copy-right p{
    text-align: center;
}

.copy-right a {
color: var(--secondary-color);
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
}

.copy-right a:hover {
  color: var(--primary-color);
}
