* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary: #dab75b;
  --primary-dark: #b4861c;
  --secondary: #736648;
  --bg-color: #b6b6b61a;
}

html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.section {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.squre-effect {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.squre-effect::after {
  position: absolute;
  height: 200%;
  width: 0%;
  content: "";
  left: 47%;
  top: -45%;
  transition: all 0.5s ease;
  transform: rotate(45deg);
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);

}

.squre-effect:hover::after {
  width: 152%;
  left: -39%;
  top: -68%;
  opacity: 0;
}

/* btn-main start */
.btn-main {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #fff;
  background: transparent;
  /* IMPORTANT: transparent */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: color .35s ease, border-color .35s ease;
  text-decoration: none;
}

.btn-main span i {
  color: white;
}

/* Base background (primary color) */
.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  z-index: -1;
}

/* Sliding background (secondary color) */
.btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: black;
  transform: translateX(-100%);
  /* left se start */
  transition: transform .35s ease;
  z-index: -1;
}

/* Text wrapper */
.btn-main span {
  position: relative;
  z-index: 1;
}

/* Hover effects */
.btn-main:hover::after {
  transform: translateX(0);
  /* left → right swipe */
  border: 1px solid black;
}

.btn-main:hover {
  color: white;
  border-color: black;
}


/* btn-sec end */

/* btn-sec start */
.btn-sec {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--primary-dark);
  background: transparent;
  /* IMPORTANT: transparent */
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: color .35s ease, border-color .35s ease;
  text-decoration: none;
}

.btn-sec span i {
  color: var(--primary-dark);
}

.btn-sec:hover span i {
  color: white;
}

/* Base background (primary color) */
.btn-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  z-index: -1;
}

/* Sliding background (secondary color) */
.btn-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  transform: translateX(-100%);
  /* left se start */
  transition: transform .35s ease;
  z-index: -1;
}

/* Text wrapper */
.btn-sec span {
  position: relative;
  z-index: 1;
}

/* Hover effects */
.btn-sec:hover::after {
  transform: translateX(0);
  /* left → right swipe */
}

.btn-sec:hover {
  color: white;
  border-color: white;
}

/* btn-sec end */

/* thir-btn start */
.thir-btn {
  color: var(--primary-dark);
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;

}

.thir-btn i {
  color: var(--primary-dark);
  font-size: 14px;
  margin-left: 2px;
  transition: 0.5s;


}

.thir-btn:hover i {
  margin-left: 5px;
  color: black;


}

.thir-btn:hover {
  color: black;
}

/* thir-btn end */

.sub-head {
  color: var(--primary-dark);
  font-size: 18px;

}

.sub-head i {
  color: var(--primary-dark);
  font-size: 18px;
  margin-right: 5px;

}

.heading {
  color: black;
  font-size: 43px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: popins;

}

.heading span {
  color: var(--primary-dark);


}



/* btn-sec end */

.combo {
  position: relative;
}

/* header start */
#header {
  /* position: absolute; */
  width: 100%;
  z-index: 2;
}

.navbar-nav .nav-link {
  color: black;
  font-size: 18px;
  font-weight: 500;
}

.dropdown-item {
  font-size: 17px !important;
  color: black !important;
  font-weight: 500 !important;
  transition: 0.5s !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent !important;
  color:var(--primary-dark) !important;
}

.nav-link:focus,
.nav-link:hover {
  color:var(--primary-dark) !important;
}

.nav-link:focus,
.nav-link.active {
  color:var(--primary-dark) !important;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar .navbar-toggler .fa-solid {
  color: black;
  font-size: 22px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar .dropdown-menu {
  border-radius: 0 !important;
}

/* header end */

/* home banner start */
/* Carousel full viewport height */
#home-banner {
  position: relative;
}

.home-banner-2 {
  display: none;
}

/* Carousel ko full screen height do */
#home-banner .carousel,
#home-banner .carousel-inner,
#home-banner .carousel-item {
  /* height: 100vh; */
}

/* Har slide pe background image (yaha tum alag-alag slide pe bhi laga sakte ho) */
#home-banner .carousel-item {
  /* background-image: url('img/banner.jpg'); */
  /* yaha apni image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#home-banner .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  /* thoda dark overlay */
  z-index: 1;
}

.carousel-indicators [data-bs-target] {
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
  background-color: white;
}

.carousel-indicators .active {
  background-color: var(--primary) !important;
}

.carousel-caption {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  text-align: left !important;
  height: fit-content;

}


.carousel-caption h5 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.carousel-caption h6 {
  color: var(--primary);

}

.carousel-caption h6 i {
  color: var(--primary);

}

.carousel-caption p {
  font-size: 18px;
  max-width: 650px;
}

.carousel-caption .btn-main,
.carousel-caption .btn-sec {
  margin-right: 10px;
  margin-top: 10px;
}

/* ---------- RESPONSIVE PART ---------- */



/* home banner end */

/* about start */
#about-sec .main-wraper {
  position: relative;
  height: 580px;
  width: 100%;

}

#about-sec .main-wraper .top-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;

}

/* #about-sec .main-wraper .top-img::after{
  content: "";
  background-color: white;
  height: 100%;
  top:0;
  right: 0;
  position: absolute;
 animation-name: img-ani;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;

} */

@keyframes img-ani {
  0% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

#about-sec {
  background-image: url(img/bg.svg);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;

}

#about-sec .main-wraper .bottom-img {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 2;


}

/* #about-sec .main-wraper .bottom-img::after{
    content: "";
  background-color: white;
  height: 100%;
  top:0;
  left: 0;
  position: absolute;
 animation-name: img-ani;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  
} */
/* Circle badge */
.about-badge-circle {
  position: absolute;
  left: 40%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 8px solid #f3f5f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  z-index: 2;
}

.about-badge-circle span.big {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-badge-circle span.small {
  font-size: 13px;
  line-height: 1.3;
}

/* Vertical feedback badge */
.about-feedback {
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  z-index: 2;
  background: white;
}

.about-feedback .badge-pill {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 8px 6px;
  /* background: #f5f7f4; */
  border-radius: 999px;
  font-size: 20px;
  color: black;
  font-weight: 500;
}

.about-feedback .badge-round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  transform: rotate(270deg);
}

#about-sec .left {
  padding: 20px;
}

#about-sec .bottom-content-left .main-box .icon-box {
  margin-bottom: 20px;
}

#about-sec .bottom-content-left .main-box .icon-box {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
}

#about-sec .bottom-content-right .main-box .con-box a {
  text-decoration: none;
}

#about-sec .bottom-content-left .main-box .icon-box i {
  color: white;
  font-size: 12px;
}

#about-sec .bottom-content-left {
  border-right: 1px solid rgba(128, 128, 128, 0.726);
}

#about-sec .bottom-content-right .main-box .icon-box {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
}

#about-sec .bottom-content-right .main-box .con-box span {
  color: black;
  font-size: 24px;
  font-weight: 600;
}

#about-sec .bottom-content-right .main-box .icon-box i {
  color: white;
  font-size: 18px;
}

/* about end */

/* why-choose us start */

#why-choose {
  background-color: var(--bg-color);
}

#why-choose .bottom-content-right .main-box .icon-box {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
}

#why-choose .bottom-content-right .main-box .con-box span {
  color: black;
  font-size: 24px;
  font-weight: 600;
}

#why-choose .bottom-content-right .main-box .icon-box i {
  color: white;
  font-size: 18px;
}

#why-choose .content .main-box .icon-box i {
  color: white;
  transition: 0.5s;
}

#why-choose .content .main-box {
  display: flex;
  margin: 0px 5px;
  border-radius: 20px;
  transition: 0.5s;
  position: relative;
}

#why-choose .content .main-box h5 {
  font-size: 22px;
  margin-bottom: 8px;
}

#why-choose .content .main-box .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  background: #e1e0df;
  position: relative;
}


#why-choose .content .main-box i {
  color: var(--primary);
  font-size: 30px;
  z-index: 1;
}

#why-choose .content .main-box .icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--secondary);
  height: 0%;
  width: 0%;
  transition: 0.5s;
  border-radius: 50%;
}

#why-choose .content .main-box:hover .icon::after {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#why-choose .left {
  height: 100%;
}


/* why-choose us end */


/* services-sec start */



/* ===== SERVICE CARD ===== */
#services-sec {
  background-image: url(img/bg.svg);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

/* Image */
.service-card .img-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

/* Hover zoom */
.service-card:hover .img-wrap img {
  transform: scale(1.12);
}

/* Dark gradient overlay */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .85) 0%,
      rgba(0, 0, 0, .5) 40%,
      rgba(0, 0, 0, 0) 75%);
  z-index: 1;
  pointer-events: none;
}

/* Top-right round icon button */
.card-arrow {
  position: absolute;
  right: 26px;
  top: 26px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  outline: none;
  background: var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  transition: 0.5s;

}

.service-card:hover .card-arrow {
  transform: rotate(0deg);
}

.service-card .card-arrow {
  transform: rotate(-45deg);
}

/* Bottom content overlay */
.service-card .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px 26px;
  z-index: 2;
  color: #fff;
}

.service-card .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card .content p {
  line-height: 1.6;
  margin-bottom: 0;
  color: white;
}

/* Agar icon nahi chahiye to .icon ko comment kar sakte ho */
.service-card .icon {
  display: none;
  /* screenshot jaisa clean look */
}

/* product-sec start */

#product-sec .tab .tablinks {
  margin: 20px;
  color: black;
  background-color: transparent;
  border: none;
  position: relative;
}

#product-sec .tab .tablinks::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  background-color: black;
  width: 0%;
  height: 2px;
  transition: 0.5s;
}

#product-sec .tab .tablinks:hover::after {
  width: 100%;
}

#product-sec .tab .tablinks::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  background-color: black;
  width: 0%;
  height: 2px;
  transition: 0.5s;
}

#product-sec .tab .tablinks:hover::before {
  width: 100%;
}

/* active */

#product-sec .tab .tablinks.active::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  background-color: black;
  width: 100%;
  height: 2px;
  transition: 0.5s;
}

#product-sec .tab .tablinks.active::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  background-color: black;
  width: 100%;
  height: 2px;
  transition: 0.5s;
}

/* product-sec end */

/* we-work start */
#we-work {
  background-color: black;
}

#we-work .main-box .icon {
  margin-bottom: 20px;
}

#we-work .main-box .icon i {
  color: #ffffff8a;
  font-size: 40px;
}

#we-work .main-box p {
  color: white;

}

#we-work .heading {
  color: white;
}

#we-work p {
  color: white;
}

#we-work .main-box h5 {
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
  font-family: popins;
  font-weight: 600;
}

.trust {
  padding: 20px 0;
}

.trust .heading-second {
  color: white;
}

.trust .heading-second::before {
  top: -135%;
  color: black;

}

.trust .content {

  margin-bottom: 40px;
}

.trust .content p {
  font-size: 18px;
  color: var(--gray);
}

.trust .item-group {
  display: flex;
}

.trust .item-group img {
  width: 150px;
  margin: 0 20px;
  height: auto;
  border-radius: 5px;
}

/* we-work end */





/* blog start */
#blog-sec {
  background-image: url("img/bg.svg");
}

.blog-card {
  background: transparent;
}

.blog-img-wrap {
  width: 100%;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

/* hover scale */
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
.blog-page a{
  text-decoration: none;
}
.blog-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link span.arrow {
  font-size: 22px;
  transform: translateY(1px);
  transition: transform .25s ease;
}

.blog-link:hover span.arrow {
  transform: translate(3px, 1px);
}

.blog-link:hover {
  text-decoration: underline;
}



/* blog end */

/* footer start */

.footerJah {
  background-color: black;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footerJah .footer-topJah img {
  width: 50%;
}

.footerJah a {
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 14px;
  transition: 0.5s;
}

.footerJah a:hover {
  color: white;
  background-color: var(--primary);
}

/* Top row */
.footer-topJah {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.footerJah li a {
  color: white;
  font-size: 16px;
}

.footerJah li:hover a {
  color: var(--primary);
  background-color: transparent;
}


.footer-logoJah {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logoIconJah {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-logoTextJah {
  font-size: 22px;
  font-weight: 600;
}


.footer-socialsTitleJah {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: right;
  margin-right: 10px;

}

.footer-socialsJah {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-socialsJah a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-color: white;
  /* border: 1px solid var(--primary-dark); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Column headings */
.footer-headingJah {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--primary);
}

.footer-linksJah {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-linksJah li {
  margin-bottom: 12px;
  font-size: 14px;
}

/* Contact */
.footer-contactItemJah {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-contactIconJah {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footerJah .footer-contactItemJah a {
  color: white !important;
  font-size: 16px;
  transition: 0.5s;
}

.footerJah .footer-contactItemJah a:hover {
  color: var(--primary) !important;
  background-color: transparent;
}

/* Newsletter */
.footer-newsTextJah {
  font-size: 16px;
  margin-bottom: 20px;
  color: #d1d5db;
}

.footer-inputWrapJah {
  position: relative;
}

.footer-inputJah {
  width: 100%;
  /* border-radius: 999px; */
  border: 1px solid #4b5563;
  background: white;
  padding: 10px 42px 10px 16px;
  font-size: 14px;
  color: black;
}

.footer-inputJah i {
  color: black !important;
}

.footer-inputJah::placeholder {
  color: black !important;
  font-size: 16px;
}


.footer-inputArrowJah {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #9ca3af;
}

.footer-inputArrowJah i {
  color: black;
}

/* Bottom */
.footer-bottomJah {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: white;
}

.footer-bottomJah a {
  color: white;
}

.footer-bottomJah a:hover {
  color: var(--primary);
  background-color: transparent;
}

@media (max-width: 767.98px) {
  .footer-socialsTitleJah {
    text-align: left;
    font-size: 16px;
  }

  .footer-socialsJah {
    justify-content: flex-start;
  }

  .footer-bottomJah {
    margin-top: 20px;
  }
}

/* footer end */

/* video start */
#video .img-box-1 {
  display: block;
}

#video .img-box-2 {
  display: none;
}

/* about-page start */

#about-sec .about-page .main-box .icon-box i {
  color: white;
  transition: 0.5s;
}


#about-sec .about-page .main-box {
  display: flex;
  margin: 0px 5px;
  border-radius: 20px;
  transition: 0.5s;
  position: relative;
}


#about-sec .about-page .main-box h5 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

#about-sec .about-page .main-box .icon {


  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  background: #e1e0df;
  position: relative;
}


#about-sec .about-page .main-box i {
  color: var(--primary);
  font-size: 30px;
  z-index: 1;
}

#about-sec .about-page .main-box .icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--secondary);
  height: 0%;
  width: 0%;
  transition: 0.5s;
  border-radius: 50%;
}

#about-sec .about-page .main-box:hover .icon::after {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#about-sec .about-page .row-bottom {
  margin-top: 50px;
}


/* about-page end */


/* Vision-Mission start */
#Vision-Mission {
  background-color: black;
  margin-bottom: 180px;
}


#Vision-Mission .main-box .icon-box i {
  color: white;
  transition: 0.5s;

}


#Vision-Mission .main-box {
  display: flex;
  margin: 0px 5px;
  transition: 0.5s;
  position: relative;
  /* background-color: white !important; */
  flex-direction: column;
  padding: 30px 20px;
  border-right: 1px solid rgb(218, 218, 218);

}

#Vision-Mission .row-bottom .col-lg-4:nth-child(3) .main-box {
  border-right: none !important;
}


#Vision-Mission .main-box h5 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

#Vision-Mission .main-box .icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  background: #e1e0df;
  position: relative;
  margin-bottom: 15px;
}

#Vision-Mission .main-box i {
  color: var(--primary);
  font-size: 30px;
  z-index: 1;
}

#Vision-Mission .main-box .icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--secondary);
  height: 0%;
  width: 0%;
  transition: 0.5s;
  border-radius: 50%;
}

#Vision-Mission .main-box:hover .icon::after {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#Vision-Mission .heading {
  color: white;
}

#Vision-Mission .heading {
  color: white;
}

#Vision-Mission .row-bottom {
  background-color: #f8f8f8;
  width: 100%;
}

.Vision-Mission {
  position: relative;
  height: 600px;
}

.Vision-Mission .row-bottom {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vision-Mission end */

/* STATS / COUNTER SECTION STYLING */

/* about-2 start */

#about-2 .stat-box {
  text-align: left;
}

#about-2 .stat-number {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #111111;
  font-family: emoji;
}

#about-2 .stat-line {
  height: 1px;
  width: 100%;
  background-color: #dedede;
  margin: 16px 0 18px;
}

#about-2 .stat-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

#about-2 .stat-text {
  font-size: 16px;
  max-width: 260px;
}

/* Mobile alignment adjust if you want center on small screens */
@media (max-width: 575.98px) {
  #about-2 .stat-box {
    text-align: center;
  }

  #about-2 .stat-text {
    margin: 0 auto;
  }
}

/* about-2 start */


/* faq-sec start */
/* Remove Bootstrap default right arrow */
#faq-sec {
  background-image: url('img/faq.png');
  background-position: right;
  background-size: auto;
  background-repeat: no-repeat;

}

.accordion-button::after {
  display: none !important;
}

.faq-sec .left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* FAQ Styling */
.faq-btn {
  font-size: 20px;
  font-weight: 600;
  color: #0e2a47;
  background: transparent;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  /* Push icon to RIGHT END */
  align-items: center;
  padding-right: 15px;
  position: relative;
}

/* Yellow box icon */
.faq-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  transition: 0.3s;
  flex-shrink: 0;
}

/* Icon inside */
.faq-icon i {
  font-size: 16px;
  color: white;
  transition: 0.3s;
}

/* When open */
.faq-btn:not(.collapsed) .faq-icon {}

.faq-btn:not(.collapsed) .faq-icon i {
  color: white;
  transform: rotate(180deg);
}

/* Body text */
.accordion-body {
  font-size: 16px;
  color: #444;
  padding-left: 5px;
  padding-bottom: 20px;
}

/* Borders */
.accordion-item {
  border: none !important;
  border-bottom: 1px solid #e4e4e4 !important;
  background: transparent;
}

.accordion-button {
  font-size: 18px !important;
}

.accordion-button:not(.collapsed) {
  color: black !important;
}

.accordion-item:first-of-type .accordion-.accordion-item:first-of-type .accordion-button {
  background-color: transparent !important;
}

#faq-sec .accordion-button,
#faq-sec .accordion-button:not(.collapsed),
#faq-sec .accordion-button:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Body bhi transparent rahe (just in case) */
#faq-sec .accordion-body {
  background-color: transparent;
}

/* faq-sec end */

/* breadcrumb start */
#breadcrumb {
  background-image: url('img/breadcrum-bg.jpg');
  background-position: center;
  background-size: cover;
  padding: 200px 0 150px 0;
}

.breadcrumb {
  justify-content: center;
}

.breadcrumb-item.active {
  font-weight: 500;
  color: white !important;
  font-size: 20px;
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: white!important;
}

.breadcrumb-item a {
  font-weight: 500;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.5s;
}
.breadcrumb-item a:hover{
  color: var(--primary-dark);
}
#breadcrumb h2 {
  font-weight: 600;
  color: white !important;
  font-size: 60px;
  font-family: popins;
      text-align: center;
}

/* breadcrumb end */

.combo {
  position: relative;
}

.combo #header {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
}


/* contect-sec start */


.contect-sec {
  position: relative;
}

.contect-sec .buuter {
  position: absolute;
  top: 109px;
  left: 20px;
  height: auto;
  width: fit-content;
}

.contect-sec .buuter img {
  height: 178px;
  width: 178px;
  transform: rotate(141deg);
  opacity: 0.2;
  position: absolute;
  top: -49px;
  left: 48px;
  z-index: -1;
}

.contect-sec .btn-sec {
  color: white;
}

.contect-sec .left .content {
  padding: 20px;

}

.contect-sec .left .content p {
  font-size: 18px;
}

.form-control {
  padding: 0.70rem 1rem !important;
}

.form-control:focus {
  border-color: black !important;
  outline: 0;
  box-shadow: none !important;
}


@media (max-width:500px) {


  .section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }


}

/* ontact-page start */

.contact-page .left {
  background-color: var(--tolightwhite);
}

.contact-page .form h4 {
  font-size: 28px;
  font-weight: 500;
}

.contact-page .form input {
  padding: 14px 12px;
  border-radius: 3px;
  border: 1px solid rgba(128, 128, 128, 0.274);
  width: 100%;
}

.contact-page .form input:focus-visible {
  outline: 1px solid var(--primary-color);
}

.contact-page .form textarea {
  padding: 12px;
  border-radius: 4px;
  width: 100%;
  border: none;
  border-radius: 3px;
  border: 1px solid rgba(128, 128, 128, 0.274);
}

.contact-page .form textarea:focus-visible {
  outline: 1px solid var(--primary-color);
}

.contact-page .right .box {
  padding: 15px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-page .right .box .icon {
  /* padding: 8px 20px; */
  display: flex;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  background-color: #80bf00;
  margin-right: 20px;
  height: 84px;
  width: 84px;
}

.contact-page .right .box .icon i {
  font-size: 2.5rem;
  height: fit-content;
  color: white;
}

.contact-page .right .box h4 {

  color: #0d2329;
}

.contact-page .right .box p,
a {
  color: gray;

}

.contact-page .right .box a {
  font-size: 16px;
}

.contact-page .right .box .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-page .right .box .content p {
  margin-bottom: 0;
  line-height: normal;
}


/* contact-page end */

@media (max-width:425px) {
  .contact-page .right .box .icon {
    height: 70px;
    width: 70px;
  }

  .contact-page .right .box a {
    font-size: 16px;
  }

  .contact-page .right .box h4 {
    font-size: 20px;
  }

}


.contect-sec .row-first .main-box .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  background: #e1e0df;
  position: relative;
}


.contect-sec .main-box i {
  color: var(--primary);
  font-size: 30px;
  z-index: 1;
}

.contect-sec .main-box .icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--secondary);
  height: 0%;
  width: 0%;
  transition: 0.5s;
  border-radius: 50%;
}

.contect-sec .main-box a {
  color: black;
  text-decoration: none;
  font-size: 18px;

}

.contect-sec .main-box:hover .icon::after {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#contact {
  background-image: url('img/bg.svg');
  background-size: cover;
  background-position: center;
}

iframe {
  border: 5px solid #000000;
}

/* contect-sec end */

/* error-page start */

#error-page h2 {
  font-size: 60px;
  margin-bottom: 30px;
  font-family: popins;
}

/* error-page end */

/* service-details start */

#service-details a {
  text-decoration: none;
  color: black;

}

#service-details .left .cat-main {
  padding: 20px;
  border: 1px solid #80808029;
}

#service-details .left .cat-main h5 {
  font-weight: bold;
  font-family: popins;
  font-size: 24px;
}

#service-details .left .cat-main h5:hover a {
  color: var(--primary-dark);
}

#service-details .left .cat-main .box .icon i {
  transform: rotate(-45deg);
  transition: 0.5s;
}

#service-details .left .cat-main .box:hover .icon i {
  transform: rotate(0deg);

}

#service-details .left .cat-main .box p {
  font-weight: 500;
  transition: 0.5s;
  font-size: 18px;
}

#service-details .left .cat-main .box:hover p {
  color: var(--primary-dark);
}

#service-details .left .list-group-flush .main-box {
  display: flex;
  margin: 0px 5px;
  transition: 0.5s;
  position: relative;
  padding: 15px 5px;
}

#service-details .left .list-group-flush .main-box a {
  text-decoration: none;
  color: #212529;
}

#service-details .left .list-group-flush .main-box h5 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

#service-details .left .list-group-flush .main-box .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  background: #e1e0df;
  position: relative;
}


#service-details .left .list-group-flush .main-box i {
  color: var(--primary);
  font-size: 25px;
  z-index: 1;
}

#service-details .left .list-group-flush .main-box .icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--secondary);
  height: 0%;
  width: 0%;
  transition: 0.5s;
  border-radius: 50%;
}

#service-details .left .list-group-flush .main-box:hover .icon::after {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#service-details .faq-heading {
  font-size: 38px;
  font-weight: 700;
}

#service-details .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  position: relative;

}

#service-details .accordion-button {
  font-size: 20px;
  font-weight: 600;
  padding-left: 0;
  background: none !important;
  box-shadow: none !important;
}

#service-details .accordion-button:not(.collapsed) {
  color: #000;
}

.faq-icon {
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

#service-details .accordion-button:not(.collapsed)+.faq-icon {
  transform: rotate(45deg);
  color: black;

}

#service-details .accordion-body {
  font-size: 16px;
  color: #555;
  padding-left: 0;
  margin-top: -10px;
}

#service-details .right .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}

#service-details .right .box i {
  color: var(--primary);
  font-size: 30px;

}

#service-details .right .box P {
  color: black;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

#service-details .right h3 {
  font-weight: bold;
  font-family: popins;

}

/* service-details start */

/* blog-page start */
.blog-page {
  padding: 60px 0;
}

.blog-page .blog-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 10px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee; */
}

.blog-page .blog-badge {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #888;
}

.blog-page .blog-title {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0 15px;
  color: #222;
}

 .blog-page .blog-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.blog-page .blog-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 25px;
}

.blog-page .blog-meta span {
  margin-right: 15px;
}

.blog-page .blog-content h2,
.blog-page .blog-content h3 {
  font-weight: 600;
  color: #222;
  margin-top: 28px;
  margin-bottom: 5px;
  font-size: 22px;
  font-family:popins;
}

.blog-page .blog-content h3 {
  font-size: 18px;
}

.blog-page .blog-content p {
  margin-bottom: 12px;
}

.blog-page .blog-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.blog-page .highlight-box {
  background: #b4861b1a;
    border-left: 4px solid #b4861b;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 18px;
}

.blog-page .section-divider {
  border-top: 1px dashed #ddd;
  margin: 30px 0;
}
.blog-page .right .recent-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.blog-page .right .main-box {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.blog-page .right .main-box:last-child {
    border-bottom: none;
}


.blog-page .right{
padding: 35px 10px;
}
    
.blog-page .right .img-box {
    width: 120px;
    height: 100px;
    overflow: hidden;
        flex-shrink: 0;
}

.blog-page .right .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-page .right .date {
    font-size: 16px;
    margin-bottom: 4px;
        color: black;
}

.blog-page .right .post-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.blog-page .right .main-box:hover .post-title {
    color: #000;
    transition: 0.5s;
}
.blog-page .right .main-box:hover .post-title:hover{
  color:var(--primary-dark);
}
/* blog-page end */


/* gallery-sec start */

/* gallery-sec end */
#gallery-sec{
  padding-bottom: 100px;
}

#gallery-sec .gallery-img-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 6px;
}

#gallery-sec .gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#gallery-sec .gallery-img-box:hover img {
  transform: scale(1.08);
}

/* Lightbox background */
#imgLightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

/* active */
#imgLightbox.active {
    opacity: 1;
    visibility: visible;
}

/* image */
#imgLightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* close icon */
.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}
