@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');




/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #1E1E1E;
	--secondary-color		: #FFFFFFCC;
	--text-color			: #898989;
	--arrow-color			: #dcc77e;
	--accent-color			: #612e11;
	--white-color			: #FFFFFF;
	--divider-color			: #EAEAEA;
	--dark-divider-color	: #FFFFFF1A;
	--btn-color			: #FFFFFFCC;
	--btn6-color			: #efb708;
	--btn1-color			: #a78b76;
	--othr-color			: #612e11;
	--default-font			: "Inter", sans-serif;
	--accent-font			: "Onest", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
    font-size: 20px;
}

html{
    font-size: 100%;
}

p{
	line-height: 1.8em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

/* img{
	max-width: 100%;
} */

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

/* .container{
	max-width: 1320px;
} */



.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    /* visibility: hidden; */
    overflow: hidden;
}
.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
    transition: transform 1s ease-out, visibility 0s 0s; 
    transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
    transform: translateX(0); /* Move to normal position */
    visibility: visible;
}

.header1{
    width: 100%;
    height: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 4;
    border-bottom: 1px solid #ffffff72;
}
header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
}
  
header.sticky {
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.3s ease;
}
  
  .navbar-expand-lg .navbar-collapse {
    justify-content: end !important;
  }
  .logo{
    color: #fff;
  }
  
  .logo img {
    width: 120px;
    height: auto;
  }
  
  .navbar-light .navbar-nav .nav-link {
    /* font-family: "Khand", Sans-serif !important; */
    font-size: 85% !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    color: var(--white-color) !important;
    padding-right: 0rem !important;
    padding-left: 0rem !important;
    margin-right: 1rem !important;
    margin-left: 1rem !important;
    font-family: "Inter", serif !important;
  }
  
  .rg-no p {
    /* font-family: "Khand", Sans-serif ; */
    font-size: 75%;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
  }
  
  /* .head{
      height: 70px;
  } */
  .navbar {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  
  
  #primary li {
    position: relative;
  }
  
  #primary li a {
    /* text-decoration: none; */
    /* padding: 5px 0; */
    /* font-family: "Khand", Sans-serif ; */
    /* font-size: 80%; */
    position: relative;
    z-index: 1;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(   #204a63 100%); */
    /* background-size: 200% 100%;
      background-position: -100%;
      transition: all 0.3s ease-in-out; */
  }
  
  #primary li a:before {
    content: "";
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 0;
    bottom: -5px;
    z-index: 0;
    position: absolute;
    background: var(--white-color);
    transition: all 0.3s ease-in-out;
  }
  
  #primary li a:hover {
    background-position: 0%;
  }
  
  #primary li a:hover:before {
    width: 100%;
  }
  
  /* Show dropdown menu on hover */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  
  }

  .btn-don{
    margin-left: 20px;
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--btn-color);
    font-size: 16px;
    font-weight: 500;
    font-family: "Cinzel", serif;
    padding: 0.45em 0.85em;
    /* margin: 1rem; */
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer; /* Add pointer cursor for button hover */
    border-radius: 30px;
  
  }
  .btn-don:hover{
    background-color: #612e11;
  }
  
  .dropdown-item{
     text-transform: capitalize !important;
    }





  .ban{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .ban-sec {
    width: 100%;
    height: 100%;
    /* background-image:url(../img/MANDAL\ RESIDENCE_page-0019-min.jpg); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    position: relative;
    padding-top: 260px;
    padding-bottom: 180px;
    z-index: 1;
    /* animation: zoomEffect 20s linear infinite alternate; */
  }
  .ban-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 2;
  }
  
  .ban-sec > * {
    position: relative;
    z-index: 3; /* content above overlay */
  }
  /* Zoom effect */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
    transform-origin: center top;
  }
  100% {
    transform: scale(1.2);
    transform-origin: center top;
  }
}

.ban-txt{
  position: relative;
  z-index: 2;
}

  .sub-head-bn{
    font-size: 95%;
    color: var(--btn-color);
    font-family: "Cinzel", serif;
  }

  /* .heading-bn{
    font-size: 60px;
    line-height: 58px;
    color: var(--white-color);
    font-weight: 500;
    font-family: "Cinzel", serif;
    width: 60%;
    padding-top: 10px;
  } */
  .heading-bn{
    font-size: 51px !important;
    line-height: 53px !important;
    color: var(--white-color);
    font-weight: 500 !important;
    font-family: "Cinzel", serif;
    /* width: 60% !important; */
    width: 75% !important;
    padding-top: 10px !important;
  }
  /* .para-bn{
    font-size: 95%;
    color: var(--white-color);
    font-weight: 400;
    font-family: "Inter", serif;
    width: 45%;
    padding-top: 10px;
    padding-bottom: 15px;
} */
.para-bn{
  font-size: 95% !important;
  color: var(--white-color);
  font-weight: 400 !important;
  font-family: "Inter", serif;
  width: 55% !important;
  padding-top: 10px !important;
  padding-bottom: 15px !important;
  text-align: left;
}
.arr i{
    color: var(--btn-color);
    font-size: 100%;
}
.btn1 {
    position: relative;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid var(--btn-color);
    border-radius: 25px 0px 25px 0px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
  }

  .btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #612e11, #612e11);
    z-index: -1;
    transition: left 0.4s ease;
  }

  .btn1:hover::before {
    left: 0;
  }

  .btn1:hover {
    color: var(--white-color);
    box-shadow: 0 0 5px #612e11, 0 0 8px #612e11;
  }




  .ban1{
    width: 100%;
    height: auto;
    margin-top: 80px;
    /* background-color: red; */
  }
  .ban1-txt{
    /* padding-top: 80px; */
  }
  .bn1-mg1{
    border-radius: 30px;
  }

  .sub-head{
    font-size: 95%;
    color: var(--accent-color);
    font-family: "Cinzel", serif;
  }

  .title{
    font-size: 50px;
    line-height: 55px;
    color: var(--primary-color);
    font-weight: 500;
    font-family: "Cinzel", serif;
  }
  .title span{
    color: var(--accent-color);
  }
  .para{
    font-size: 95%;
    color: var(--primary-color);
    font-weight: 400;
    font-family: "Inter", serif;
}
.text-right{
    text-align: right;
}

.ban1-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
    margin-top: 30px;
}
.ban1-grid1{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    margin-top: 40px;
}
.ban1-mg{
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #612e11;
    color: var(--white-color);
    text-align: center;
    border-radius: 50%;
}
.ban1-mg i{
    font-size: 120%;
}
.ban1-mg1{
    padding-left: 10px;
}
.sub-txt{
    font-size: 120%;
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Cinzel", serif;
}
.sub-para{
    font-size: 90%;
    color: var(--primary-color);
    font-weight: 400;
    font-family: "Inter", serif;
}
.btn2 {
    position: relative;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    background: var(--btn1-color);
    border: 2px solid var(--btn1-color);
    border-radius: 25px 0px 25px 0px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    margin-top: 15px;
  }

  .btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #612e11, #612e11);
    z-index: -1;
    transition: left 0.4s ease;
  }

  .btn2:hover::before {
    left: 0;
  }

  .btn2:hover {
    border: 2px solid var(--btn-color);
    color: var(--white-color);
    box-shadow: 0 0 5px #a78b76, 0 0 8px #612e11;
  }
  .ban2{
    width: 100%;
    height: auto;
    background-image:url(../img/BACHAWAT\ RESIDENCE_pages-to-jpg-0009-min.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 80px;

  }
  .ban2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* You can change the color & opacity */
    z-index: 2;
  }
  .ban2 > * {
    position: relative;
    z-index: 3;
  }
  .white{
    color: var(--white-color);
  }
  .yellow{
    color: var(--btn-color);
  }
/*  figure.image-anime.reveal.show {
    height: 100% !important;
    }*/

    .ban2-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 15px;
        margin-top: 40px;
    }
    .ban2-grid-txt{
        display: flex;
        justify-content: start;
    }
    /* .ban2-grid-txt i{
        color: var(--white-color);
        padding-right: 10px;
        font-size: 150%;
        padding-top: 5px;
    } */
    ul.ban2-ul{
        margin-top: 10px;
    }
    ul.ban2-ul li{
        color: var(--primary-color);
        font-size: 100%;
        font-weight: 400;
        font-family: "Inter", serif;
    }

    .ban3{
        width: 100%;
        height: auto;
        margin-top: 80px;
    }
    .img-mg{
        border-radius: 100px 0px 200px 0px;
    }
    .ban3-sec {
        display: flex;
        justify-content: start;
    }
    .ban3-txt{
        padding-left: 20px;
        width: 65%;
    }
    .ban3-yt{
        width: 60px;
        height: 60px;
        line-height: 50px;
        border: 2px solid var(--btn1-color);
        text-align: center;
        border-radius: 50%;
        font-size: 25px;
    }
    .ban3-yt i{
        text-align: center;
    }
    .ban3-sec:hover .ban3-yt{
      background-color: var(--accent-color);
      border: 2px solid var(--btn-color);
      color: var(--white-color);
      
  }

    .ban4{
        width: 100%;
        height: auto;
        margin-top: 80px;
    }
    .ban4-grid{
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 20px;
    }
    .ban4-grid1{
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 30px;
    }
    .ban4-grid11{
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px;
    }
    .ban4-grid12{
        display: grid;
        grid-template-columns: repeat(1, 1fr); 
        gap: 40px;
    }
    .mg-img{
        height: 450px !important;
        border-radius: 40px 0px 60px 0px;
    }
    .mg-img1{
        height: 450px !important;
        border-radius: 0px 40px 0px 60px;
    }
    figure.image-anime.reveal.nw.show {
        height: auto !important;
        width: 100% !important;
    }
    .cen-ter{
        display: block;
        margin: auto;
    }
    .mid{
        width: 100%;
        height: auto;
        background-color: var(--accent-color);
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: 80px;
    }
    .mid-txt{
        width: 60%;
    }
    .process-grid{
        display: grid;
        grid-template-columns: repeat(5, 1fr); 
        gap: 15px;
        margin-top: 50px;
    }

    .mid1{
        width: 100%;
        height: auto;
        /* margin-top: 80px; */
        margin-bottom: 40px;
    }
    .mid1-txt{
      padding-top: 80px;
    }
    .quoto i{
      font-size: 100px;
      margin-top: -1rem;
      color: var(--btn1-color);
    }
    .quoto1 i{
      font-size: 60px;
      margin-top: -1rem;
      color: var(--btn1-color);
    }
    .quoto2 i{
      font-size: 60px;
      margin-top: -1rem;
      color: var(--btn1-color);
    }
    img.testi-mg {
      width: 180px !important;
      height: 180px !important;
      border-radius: 50%;
      margin-bottom: 30px;
  }
  .star-rating {
    font-size: 1.5rem;
    color: gold;
  }
  .ft-wt{
    font-weight: 700;
    
  }

  footer{
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 40px;
    /* margin-top: 80px; */
    background-color: var(--accent-color);
  }
  .fot-sec{
    border-bottom: 1px solid #ffffff72;
    margin-bottom: 60px;
  }

  /* .footer {
    background-color: #5B2C06;
    color: white;
    padding: 60px 40px 30px;
    position: relative;
  } */
  .footer h4 {
    margin-bottom: 24px;
    font-weight: 500;
    color: var(--white-color);
    font-family: "Cinzel", serif;
    font-size: 140%;
  }
  .footer a {
    color: var(--white-color);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: "Inter", serif;
    font-size: 100%;
  }
  .footer a:hover{
    color: var(--btn-color);
  }
  .footer .logo {
    font-size: 32px;
    font-weight: bold;
  }
  .socials {
    display: flex;
    justify-content: end;
    color: #fff;
    font-size: 24px;
    font-family: "Inter", serif;
}
a.huh {
  margin-bottom: 0px;
}
  .footer .socials {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-family: "Inter", serif;
    margin-top: 10px;
  }
  .footer .contact-info i {
    margin-right: 10px;
  }
  .footer .subscribe input[type="email"] {
    padding: 12px;
    border: none;
    border-radius: 10px;
    width: 100%;
    max-width: 380px;
    margin-top: 10px;
    font-family: "Inter", serif;
  }
  .footer .subscribe button {
    background: none;
    border: none;
    color: #5B2C06;
    font-size: 18px;
    position: relative;
    left: -35px;
    cursor: pointer;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 80px;
    font-size: 130%;
    color: var(--white-color);
    font-weight: 400;
    font-family: "Cinzel", serif;
  }
  .gene{
    color: #fff;
    font-size: 100%;
    font-family: "Inter", serif;
  }
  .gene-tf {
    display: flex;
    justify-content: start;
}
  img.img-mg2 {
    height: 650px;
}
.let{
  text-align: left;
  font-size: 300%;
  color: var(--white-color);
  font-weight: 400;
  font-family: "Cinzel", serif;
  margin-top: 30px;
}
.ban2-mid{
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.ban2-mid .nav{
  justify-content: center;
  gap: 20px;
}
.ban2-mid .nav-pills .nav-link{
  padding-top: 15px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: transparent !important;
  border: 1px solid var(--accent-color) !important;
  padding: 15px;
}
img.img-fluid-gd{
  width: 100%;
  height: 565px !important;
  position: relative;
  z-index: 1;
  display: block;
}
  .whiteIcon {
    color: #fff;
  }
  .custm{
  z-index: 2;
  position: relative;
  text-align: center;
  color: var(--white-color);
  font-family: "Cinzel", serif;
  font-size: 140%;
  font-weight: 500;
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 1;
  background-color: var(--accent-color);
  padding: 15px;
  border-radius: 10px;
  height: 80px;
  }  
  .ban2-mid button.owl-prev{
    width: 45px;
    height: 45px;
    background-color: #5B2C06 !important;
    color: var(--white-color) !important;
    border-radius: 50% !important;
  }
  .ban2-mid button.owl-prev {
    position: absolute;
    top: 40%;
    left: 0%;
}
.ban2-mid button.owl-next{
    width: 45px;
    height: 45px;
    background-color: #5B2C06 !important;
    color: var(--white-color) !important;
    border-radius: 50% !important;
  }
  .ban2-mid button.owl-next {
    position: absolute;
    top: 40%;
    right: 0%;
}


/* about page */

.about{
  width: 100%;
  height: 65vh;
  /* background-image:url(../img/page-header-bg.jpg); */
  background-image:url(../img/1-min.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding-top: 260px;
  padding-bottom: 100px;
  z-index: 1;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 2;
}
.about > * {
  position: relative;
  z-index: 3; /* content above overlay */
}
.cont{
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.form-label{
  color: var(--accent-color);
  font-size: 105%;
  font-weight: 500;
  font-family: "Inter", serif;
}
.form-control{
  padding: .75rem .75rem !important;
  border: 1px solid var(--btn1-color) !important;
}
.form-select{
  padding: .75rem .75rem !important;
  border: 1px solid var(--btn1-color) !important;
}
.form-control:focus{
  box-shadow: none !important;
}
.cont1{
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.responsive-map{
  overflow: hidden;
  padding-bottom:40.25%;
  position:relative;
  height:0;
  }
  .responsive-map iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
  }
  .cont1-sec{
    display: flex;
    justify-content: start;
  }
  .ic-n{
    width: 100%;
    max-width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--accent-color);
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 20px;
    font-size: 140%;
  }
  .cont1-sec:hover .ic-n{
    background-color: var(--primary-color);
  }
  .nbb{
    text-decoration: none;
    font-size: 100%;
  }
  a.para.nbb:hover{
    color: var(--btn-color);
  }

  /* about page */

  .about-mid{
    width: 100%;
    height: auto;
    margin-top: 80px;
  }
  .abut-mid-card{
    width: 100%;
    height: auto;
  }
  .abut-mid-card:hover .ic-n{
    background-color: var(--primary-color);
  }

  .about-mid1{
    width: 100%;
    height: 430px;
    margin-top: 80px;
    background-color: var(--accent-color);
    padding-top: 80px;
  }
  .about-mid1-sec{
    width: 100%;
    height: auto;
  }
  .about-mid1-sec1{
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    margin-top: -4rem;
    padding: 40px;
    
  }
  .about-mid1-sec-txt:hover .ic-n{
    background-color: var(--primary-color);
  }
  .bor-d{
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    border-color: #eaf0ec;
  }
  .about-mid2{
    width: 100%;
    height: auto;
    margin-top: 80px;
  }
  /* .img-mg-fluid{
    width: 100%;
    height: 300px !important;
    object-fit: cover;
  } */

  .about-mid3{
    width: 100%;
    height: auto;
    margin-top: 80px;
  }
  .gray{
    color: var(--text-color);
  }
  .about-mid3 button.owl-prev{
    width: 45px;
    height: 45px;
    background-color: #5B2C06 !important;
    color: var(--white-color) !important;
    border-radius: 50% !important;
  }
  .about-mid3 button.owl-prev {
    position: absolute;
    top: 40%;
    left: 0%;
}
.about-mid3 button.owl-next{
    width: 45px;
    height: 45px;
    background-color: #5B2C06 !important;
    color: var(--white-color) !important;
    border-radius: 50% !important;
  }
  .about-mid3 button.owl-next {
    position: absolute;
    top: 40%;
    right: 1%;
}
.vc{
  border-radius: 0px !important;
}

/*-------------------------------------------------------*/
/* FAQ
/*-------------------------------------------------------*/

.about-mid4{
  width: 100%;
  height: auto;
  margin-top: 80px;
}

.ab-faq-lhs .card {
  border-width: 0px 0px 1px;
  border-top-style: initial;
  border-right-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-left-color: initial;
  border-image: initial;
  border-bottom-style: solid;
  border-bottom-color: rgb(234, 238, 241);
  border-radius: 0px;
  padding: 20px;
  margin-bottom: 10px;
}

.ab-faq-lhs .card-header {
  background: rgb(255, 255, 255);
  border: 0px;
  
}

.ab-faq-lhs .card-header a {
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 20px;
  padding-right: 20px;
  display: block;
  text-decoration: none;
  font-family: "Cinzel", serif;
}

.ab-faq-lhs .card-header a::after {
  content: "-";
  position: absolute;
  font-size: 40px;
  color: rgb(30, 31, 48);
  font-weight: 200;
  right: 30px;
  top: 31px;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  line-height: 31px;
  text-align: center;
  transition: all 0.4s ease 0s;
}

.ab-faq-lhs .card-header a.collapsed::after {
  content: "+";
}

.ab-faq-lhs .card-body p {
  margin: 0px;
  font-size: 15px;
  line-height: 26px;
  font-family: "Inter", serif;
  color: var(--primary-color);
}

.ab-faq-rhs {
  margin-left: 25px;
  position: relative;
}

.ab-faq-rhs::before {
  position: absolute;
  left: 3%;
  top: 3%;
  width: 94%;
  height: 94%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}

.ab-faq-rhs img {
  width: 100%;
  border-radius: 5px;
}

.about-mid5{
  width: 100%;
  height: auto;
  margin-top: 80px;
  background-color: #f8f8f8;
  padding: 80px 0px 80px 0px;
}
.clt-log{
  width: 225px !important;
  height: 40px !important;
}
/* GALLERY PAGE */
.gall {
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.gall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.gall .nav {
  justify-content: center;
}
.gall .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: var(--accent-color) !important;
  border: 1px solid var(--accent-color) !important;
  padding: .5rem 1rem;
  font-size: 100%;
  font-weight: 500;
  
}
.gall .nav-link {
  color: var(--primary-color);
  font-family: "Cinzel", serif;
  font-size: 100%;
  font-weight: 500;
}
.gall .nav-link:hover {
  color: var(--primary-color);
}
/* TESTIMONIAL PAGE */
/* .mid1-pl {
  width: 100%;
  height: auto;
  margin-top: 80px;
} */

/* PORTFOLIO PAGE */

.port-kjh{
  width: 100%;
  height: auto;
  background-color: #bfaea4;
}
img.img-fluid-nw{
  width: 100%;
}
img {
  max-width: 100%;
}
.port-mid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-mid {
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.title {
  margin-bottom: 20px;
}
.ban-2-it .effect-layla figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  padding-top: 150px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.port-mid-sec1 {
  -ms-overflow-style: none;
}
.port-mid-sec1 {
  scrollbar-width: none;
}
.port-mid-sec1 {
  position: sticky;
  top: 20px;
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  height: 630px;
  overflow-y: scroll;
}
.port-mid-sec1 {
  -ms-overflow-style: none;
}
.port-mid-sec1::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
.portfolio {
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.ser-mid-sec {
  width: 100%;
  overflow-y: hidden;
}
.port-sec-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.ser-mid{
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.contact-us {
  width: 100%;
  height: auto;
  background-image: url(../img/background-image-1.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 80px;
}
figcaption {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: #fff;
  z-index: 10;
}
figcaption h2,p {
  color: #fff;
}
figcaption a {
  color: white;
  text-decoration: none;
  list-style: none;
}
/* .image-anime {
  overflow: hidden;
  position: relative;
}

.image-anime img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
} */

/*.image-anime:hover img {*/
/*  transform: scale(1.1); */
/*}*/

/* figure {
  position: relative;
} */
/* SERVICE PAGE */
.serv{
  margin-top: 80px;
}
ul.serv-ul li {
  text-decoration: none;
  list-style: none;
  font-size: 110%;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 8px;
}
ul.serv-ul li i {
  color: #5B2C06;
  font-size: 100%;
  padding-right: 10px;
}
.serv-card {
  width: 100%;
  height: auto;
  padding: 20px 0px 20px 0px;
  /* background: var(--btn1-color); */
  background-color: var(--accent-color);
  border: 2px solid var(--btn1-color);
}
.serv-card1 {
  width: 100%;
  height: auto;
  /* background: var(--btn1-color); */
  background-color: var(--accent-color);
  padding: 20px 0px 20px 0px;
  margin-top: 40px;
}
.ic-n1 {
  width: 100%;
  max-width: 30px;
  height: 30px;
  line-height: 30px;
  /* background-color: var(--primary-color); */
  background-color: #fff;
  text-align: center;
  /* color: var(--white-color); */
  color: black;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 80%;
}
.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime img {
  width: 100%;
  display: block;
}

.image-anime .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darken image */
  z-index: 1;
}

.image-anime figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
}
/* button.owl-prev {
  width: 45px;
  height: 45px;
  background-color: #5B2C06 !important;
  color: var(--white-color) !important;
  border-radius: 50% !important;
}
button.owl-next {
  width: 45px;
  height: 45px;
  background-color: #5B2C06 !important;
  color: var(--white-color) !important;
  border-radius: 50% !important;
}
 button.owl-prev {
  position: absolute;
  top: 40%;
  left: 0%;
}
button.owl-next {
  position: absolute;
  top: 40%;
  right: 0%;
} */
/* ----------------------------------MAIN PORTFOLIO------------------------------------------- */
.imgs{
height: 450px !important;
border-radius: 40px 40px 40px 40px;
}
.content-center {
  min-height: 100%;
  height: 100%;
  /* padding: 40px 20px; */
}
a {
  text-decoration: none !important;
}
.ser-mg2 {
  width: 100%;
  height: 350px !important;
}
.serv-crd-txt {
  display: flex;
}

/* blog */

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.grid-item img {
  width: 100%;
  display: block;
  /* border-radius: 12px; */
  transition: transform 0.9s ease, box-shadow 0.9s ease;
}

.grid-item img:hover {
  transform: scale(1.09);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.read {
  background-color: #FFFFFF00;
  padding: 0px 0px 0px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  color: var(--primary-color);
  fill: var(--primary-color);
  text-decoration: none;
}
.read:hover{
  color: var(--othr-color);
}
/* blog-details */
.blog-dt{
  width: 100%;
  height: auto;
  padding: 30px;
  background-color: var(--accent-color);
}
img.mg-img-details{
  width: 100%;
  height: 115px;
  border-radius: 12px;
}
.sub-txt-sm{
  font-size: 100%;
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Cinzel", serif;
}
a{
  color:transparent ;
  text-decoration: none !important;
}
.detil-prop{
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider-color);
}
.btn3 {
  position: relative;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  background: transparent;
  border: 2px solid var(--white-color);
  border-radius: 25px 0px 25px 0px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  margin-top: 15px;
}
.btn3::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #a78b76, #a78b76);
  z-index: -1;
  transition: left 0.4s ease;
}

.btn3:hover::before {
  left: 0;
}

.btn3:hover {
  border: 2px solid var(--btn1-color);
  color: var(--white-color);
  /* box-shadow: 0 0 5px #a78b76, 0 0 8px #efb708; */
}
a.para.nbb:hover{
  color: var(--accent-color);
}
.exp-p{
  display: block;
  margin: auto;
}
.ban1-mg.lpo {
    display: block;
    margin: auto;
    width: 85px;
    height: 85px;
    line-height: 85px;
    margin-bottom: 20px;
}
.ban1-mg.lpo i{
  font-size: 160%;
}
.card1 {
  width: 100%;
  height: auto;
  background-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* whatsapp float icon */

.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebc59;
  transform: scale(1.05);
  color: var(--white-color);
}
img.img-mg31{
  height: 280px;
}
.testimonial{
  margin-bottom: 80px;
}
.vid-m{
  height: 450px;
}

#likh {
  scroll-margin-top: 100px; /* Adjust according to your header height */
}
#brand {
  scroll-margin-top: 100px; /* Adjust according to your header height */
}
#univ {
  scroll-margin-top: 100px; /* Adjust according to your header height */
}
.img-fluid-op{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

  .likhai-tabs .nav-pills {
    justify-content: center;
  }

  .likhai-tabs .nav-pills .nav-link {
    color: #555;
    background-color: #f1f1f1;
    margin: 0 5px;
    border-radius: 20px;
    transition: 0.3s ease;
  }

  .likhai-tabs .nav-pills .nav-link:hover {
    background-color: #e0e0e0;
  }

  .likhai-tabs .nav-pills .nav-link.active {
    background-color: #343a40; /* or your brand color */
    color: #fff;
  }

  .likhai-tabs .sub-txt {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .likhai-tabs .para {
    color: #444;
    font-size: 1rem;
  }
  .likhai-tabs .nav-pills {
    justify-content: center;
  }

  .likhai-tabs .nav-pills .nav-link {
    color: #555;
    background-color: #f8f9fa;
    margin: 0 5px;
    border-radius: 25px;
    padding: 10px 20px;
    transition: 0.3s ease;
    border: 1px solid transparent;
  }

  .likhai-tabs .nav-pills .nav-link:hover {
    background-color: #eaeaea;
  }

  .likhai-tabs .nav-pills .nav-link.active,
  .likhai-tabs .nav-pills .show > .nav-link {
    background-color: transparent !important;
    border: 1px solid var(--othr-color) !important;
    color: var(--accent-color) !important;
 
    font-weight: 600;
  }
  .point-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    margin-top: 30px;
  }