@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Dancing+Script:wght@400..700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --primary: #e7aa04;
  --secondary: #2e2e2e;
  --light: #fdf5eb;
  --main-font-family: "Roboto", sans-serif;
  --style-font-family: "Libre Baskerville", serif;
  --cursive-font-family: "Dancing Script", cursive;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  border: none;
}

.btn.btn-primary:hover {
  background: var(--primary);
}

.btn.btn-secondary {
  background: var(--primary);
  border: 0;
  transition: all 0.3s;
}

.btn.btn-secondary:hover {
  background: var(--primary);
  color: var(--primary);
  border-radius: 10px;
  transform: scale(1.1);
}
/*** Topbar Start ***/
.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--secondary);
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
  transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
  color: var(--secondary);
}

.navbar .navbar-nav .nav-link {
  position: relative;
  padding: 10px;
  font-weight: 400;
  font-family: var(--main-font-family);
  font-size: 17px;
  transition: 0.5s;
  z-index: 99;
}

.navbar .navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: 0.5s;
  z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
  top: 0;
  left: 0;
  border-bottom: 0;
  border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
  bottom: 0;
  right: 0;
  border-top: 0;
  border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
  width: 50%;
  height: 50%;
  opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

.navbar .navbar-toggler {
  padding: 8px 15px;
  color: var(--bs-dark);
  background: var(--primary);
}

.nav-bar .navbar-toggler {
  color: var(--bs-dark);
  box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

.navbar .nav-item .dropdown-menu {
  background: var(--bs-light);
  transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
  transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
  background: var(--primary);
  color: var(--bs-white);
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    margin-top: 15% !important;
    transform: rotateX(-75deg);
    transform-origin: 0 0;
    border: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9;
  }
}

@media (max-width: 991px) {
  .navbar .nav-item .dropdown-menu {
    position: relative;
    margin-top: 0;
    transition: 0.5s;
  }

  .navbar .navbar-nav .nav-item::after,
  .navbar .navbar-nav .nav-item::before {
    display: none;
  }

  .navbar .navbar-nav .nav-item:hover::after,
  .navbar .navbar-nav .nav-item:hover::before,
  .navbar .navbar-nav .nav-item.active::after,
  .navbar .navbar-nav .nav-item.active::before {
    display: none;
  }

  .navbar .navbar-nav .nav-link {
    padding: 12px 0;
  }

  .navbar .navbar-nav .nav-item {
    margin: 0;
  }

  .navbar .navbar-nav .nav-item.nav-link {
    padding: 12px 0;
  }
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgb(231 170 4 / 0%), rgb(255 193 7 / 44%)),
    url(../img/bg-main.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
}
.bg-breadcrumb h4 {
  font-family: var(--cursive-font-family);
  font-size: 62px;
}
.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
  position: relative;
  overflow: hidden;
  height: 75vh;
}

/* .carousel .carousel-inner .carousel-item img {
    animation-name: image-zoom ;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
} */
/* 
@keyframes image-zoom {
    0%  {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}

    25% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}

    50% {width: 130%; height: 130%; -webkit-filter: blur(10px); opacity: 0.7;}

    75% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}

    100% {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}
} */

@media (min-width: 992px) {
  .carousel .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-item .carousel-caption h1 {
    font-size: 36px;
  }

  .carousel-item .carousel-caption p.fs-5 {
    font-size: 15px;
  }
}

/* .carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
} */

.carousel .carousel-inner .carousel-item .carousel-caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.carousel .carousel-indicators {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
  margin-right: 30px !important;
  width: 10px;
  height: 10px;
  border: 6px solid var(--primary);
  background: var(--bs-white);
  transition: 0.5s;
}

.carousel .carousel-indicators li.active {
  border: 10px solid var(--secondary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  left: 0;
  padding: 25px 30px;
  background: var(--secondary);
}

.carousel .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  right: 0;
  padding: 25px 30px;
  background: var(--secondary);
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: var(--primary);
  color: var(--bs-white);
}
/*** Carousel End ***/

/*** About Start ***/
.about .about-item-content-img {
  border: 4px solid;
  border-color: var(--bs-secondary) var(--secondary) var(--secondary)
    var(--primary);
}

.about .about-item-image .img-1 {
  margin-bottom: 250px;
  margin-right: 0;
  border: 4px solid;
  border-color: var(--bs-secondary) var(--bs-light) var(--bs-light)
    var(--primary);
  z-index: 3;
}

.about .about-item-image .img-2 {
  margin-top: 250px;
  margin-left: 0;
  border: 4px solid;
  border-color: var(--bs-light) var(--bs-secondary) var(--bs-secondary)
    var(--bs-light);
  z-index: 3;
}

.about .about-item-image::before {
  width: 80%;
  height: 80%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-style: dotted;
  border-color: var(--bs-white);
  background: var(--secondary);
  z-index: 2;
}

.about .about-item-image .about-item-image-content {
  width: 55%;
  height: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  border: 4px solid var(--secondary);
  opacity: 0.9;
  z-index: 4;
}

.about .about-item-image .about-item-image-effect {
  position: absolute;
  top: 0;
  right: 0;
}
/*** About End ***/

/*** Features Start ***/
/* .feature .feature-item {
    position: relative;
    transition: 0.5s;
}
.feature .feature-item:hover {
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
    transition: 0.5s;
}

.feature .feature-item:hover a:hover {
    color: var(--primary);
}

.feature .feature-item .feature-img img {
    border: transparent;
    transition: 0.5s;
} 

.feature .feature-item:hover .feature-img img {
    border: 1px solid var(--primary);
}   */
/*** Features End ***/

/*** Services Start ***/
/* .service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: var(--primary);
}

.service .service-item .service-tytle {
    position: absolute;
    width: 100%;
    height: 80px; 
    bottom: 0; 
    right: 0;
    background: var(--bs-white);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-tytle {
    margin-right: -100%;
} */
/*** Services End ***/

/*** Fact Counter ***/
.counter {
  /* background: var(--secondary)  */
  background-image: url(/img/bg-main.png);
}

.counter .counter-btn:hover {
  background: var(--bs-white);
  color: var(--primary);
}

.counter .counter-box {
  padding-right: 20px;
  padding-bottom: 20px;
}

.counter .counter-item {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter .counter-item .counter-item-style {
  position: absolute;
  width: calc(100% - 20px);
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary);
  z-index: 2;
}

.counter .counter-item .counter-item-inner {
  position: relative;
  top: 20px;
  left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  background: var(--light);
  box-shadow: 20px 20px var(--primary);
  z-index: 3;
}

.counter .counter-item .counter-counting {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--secondary);
  font-size: 30px;
}
/*** Fact Counter ***/

/*** Projects Start ***/
.project .project-item .project-img {
  position: relative;
}

.project .project-item .project-img::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  background: var(--primary);
  z-index: -1;
}

.project .project-item .project-content a.h4 {
  transition: 0.5s;
}

.project .project-item:hover .project-content a.h4:hover {
  color: var(--primary);
}
/*** Projects End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  z-index: 1;
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}

.team .team-item .team-img .team-icon {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scale(-1);
  margin-bottom: 100%;
  background: transparent;
  transition: 0.5s;
  opacity: 0;
  z-index: 5;
}

.team .team-item:hover .team-img .team-icon {
  transform: scale(1);
  margin-bottom: 0;
  opacity: 1;
}

.team .team-item .team-border-style-1,
.team .team-item .team-border-style-2 {
  width: 50%;
  height: 50%;
  position: absolute;
  background: var(--primary);
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-1 {
  top: 0;
  left: 0;
}

.team .team-item .team-border-style-2 {
  right: 0;
  bottom: 0;
}

.team .team-item .team-border-style-3,
.team .team-item .team-border-style-4 {
  width: 0;
  height: 0;
  position: absolute;
  background: var(--primary);
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-3 {
  top: 0;
  right: 0;
}

.team .team-item .team-border-style-4 {
  left: 0;
  bottom: 0;
}

.team .team-item:hover .team-border-style-1,
.team .team-item:hover .team-border-style-2 {
  width: 0%;
  height: 0%;
}

.team .team-item:hover .team-border-style-3,
.team .team-item:hover .team-border-style-4 {
  width: 50%;
  height: 50%;
}
/*** Team End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
  color: var(--primary);
}
/*** Blog End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  color: var(--secondary);
  padding: 5px 25px;
  border: 1px solid var(--primary);
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--primary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  color: var(--secondary);
  padding: 5px 25px;
  border: 1px solid var(--primary);
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--primary);
  color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border: 1px solid var(--primary);
  background: var(--secondary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border: 1px solid var(--secondary);
  background: var(--bs-secondary) !important;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

@media (max-width: 992px) {
  .owl-carousel.testimonial-carousel {
    padding-top: 30px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}
/*** testimonial End ***/

/*** Contact Start ***/
.contact .contact-map {
  position: relative;
  overflow: hidden;
  padding: 20px;
  z-index: 1;
}

.contact .contact-map::before {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--secondary);
  z-index: -1;
}

.contact .contact-map::after {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  z-index: -1;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: var(--secondary);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .footer-item a {
  line-height: 35px;
  color: var(--light);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: bold;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--primary);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--secondary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--secondary);
}
/*** copyright end ***/

/* NEW FOR MY SIDE  */
.navbar-brand img {
  max-height: 60px; /* Logo ki maximum height fix hogi */
  width: auto; /* Width automatically adjust hogi */
}

.navbar-brand h2 {
  font-family: var(--main-font-family);
  margin-top: 5px;
}
.navbar-btn {
  background: var(--secondary);
  color: var(--primary);
}
.navbar-btn a {
  background: var(--secondary);
  color: var(--primary);
}
.text-secondary {
  color: var(--primary) !important;
}
.navbar-icon .btn-square {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
}
.display-6 {
  font-family: var(--style-font-family);
}
.che-service {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(46, 46, 46, 0.08);
  font-family: var(--main-font-family);
}

.che-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.che-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
}

.che-title {
  font-size: 1.1rem;
  margin: 0;
  color: var(--secondary);
  font-weight: 700;
  font-family: var(--style-font-family);
}

.che-corner-icon {
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  font-size: 1.2rem;
}

.che-overlay {
  position: absolute;
  inset: 0;
  background: rgba(231, 170, 4, 0.95); /* primary color with transparency */
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
}

.che-overlay-inner {
  max-width: 86%;
  font-family: var(--main-font-family);
}
.che-overlay-inner a:hover {
  background: var(--secondary);
  border-radius: 12px;
  color: #fff;
}
.che-icon-wrap {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
  background: #ffffff20;
  border: 2px solid #ffffff33;
  display: grid;
  place-items: center;
  border-radius: 0.35rem;
  font-size: 2rem;
  color: #fff;
}

.che-desc {
  color: var(--light);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.che-service:hover .che-img {
  transform: scale(1.06);
}

.che-service:hover .che-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .che-img {
    height: 240px;
  }
}

#services h2 {
  font-family: var(--style-font-family);
  font-size: 40px;
}
#why-choose-us {
  background: var(--light);
}

.che-box {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 6px 16px rgba(46, 46, 46, 0.08);
  transition: all 0.3s ease;
  font-family: var(--main-font-family);
}

.che-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(46, 46, 46, 0.15);
}

.che-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info div h4 {
  font-family: var(--style-font-family);
}
.border-secondary {
  border-color: var(--primary) !important;
  border-radius: 12px;
}
.filter-btn {
  border: 1px solid #c9a646;
  border-radius: 6px;
  padding: 0.4rem 1rem;
  background: #fff;
  font-weight: 600;
  color: #222;
}
.filter-btn.active {
  background: #c9a646;
  color: #000;
}
.gallery-img {
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.25s ease;
  width: 100%;
  height: 220px; /* fixed height for uniform look */
  object-fit: cover; /* crop properly */
}
.gallery-img:hover {
  transform: scale(1.05);
}
 
.carousel-item img {
  max-height: 90vh;
  object-fit: contain;
  margin: auto;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(231, 170, 4, 0.5);
}
.service-card:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c9a646, #ebd197);
  transition: all 0.5s ease;
  z-index: 0;
}
.service-card:hover:before {
  top: 0;
}
.service-card i {
  font-size: 3rem;
  color: #c9a646;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.service-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.service-card:hover i,
.service-card:hover h4,
.service-card:hover p {
  color: #fff !important;
}
.service-card .btn {
  margin-top: 20px;
  border-radius: 25px;
  padding: 8px 22px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.service-card:hover .btn {
  background: #fff;
  color: #000;
  border: none;
}
.contact-cta {
  background: linear-gradient(135deg, #c9a646, #eb591b);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.contact-cta h2 {
  font-weight: 700;
  font-family: var(--main-font-family);
  margin-bottom: 15px;
  color: var(--light);
}
.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.contact-cta .btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.contact-cta .btn-light {
  color: #eb591b;
}
.contact-cta .btn-light:hover {
  background: #fff3e6;
}
.contact-cta .btn-outline-light:hover {
  background: #fff;
  color: #eb591b;
}
.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(231, 170, 4, 0.5);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.feature-box h5 {
  font-family: var(--main-font-family);
  font-size: 22px;
}
.feature-box:hover,
.feature-box:hover .service-icon,
.feature-box:hover h5 {
  transform: translateY(-8px);
  background: var(--primary);
  color: var(--light);
}
.service-icon {
  font-size: 3rem;
  color: #c9a646;
  margin-bottom: 15px;
}
.service-heading {
  font-family: var(--style-font-family);
}

.whats_link {
  position: fixed;
  bottom: 13%;
  right: 1%;
  z-index: 999;
}
.whats_link img {
  width: 75px;
  border-radius: 50%;
}

/* Smooth animation */
.modal-content {
  border-radius: 1rem;
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}
.modal.show .modal-content {
  transform: scale(1);
}
.bg-primary{
  background: var(--secondary) !important;
}
 .category-box {
    background: #fff;
    border-radius: 14px;
    padding: 25px 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  .category-box i {
    font-size: 1.8rem;
    color: #c9a646;
    margin-bottom: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .category-box p {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
  }
  .category-box:hover {
    background: linear-gradient(135deg, #c9a646, #ebd197);
    color: #fff;
    transform: translateY(-6px);
  }
  .category-box:hover i {
    color: #fff;
    transform: scale(1.2);
  }