/* banner css start */

/* BANNER / HERO SLIDER */
.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  position: relative;
  padding: 130px 0 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 15, 13, .78) 0%, rgba(18, 15, 13, .55) 50%, rgba(18, 15, 13, .8) 100%);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-sub {
  display: inline-block;
  color: var(--gold-2);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 4.3rem);
  line-height: 1.13;
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--gold-2);
  font-style: italic;
}

.hero-text {
  color: rgba(255, 255, 255, .82);
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 1.02rem;
}

.hero-line {
  width: 90px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 26px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  opacity: .45;
  margin: 0 6px;
}

.carousel-indicators .active {
  background: var(--gold);
  opacity: 1;
  width: 30px;
  border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
  opacity: .7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Hero slider background images */
.hero-slide-1 {
  background-image: url('../images/index/banner-img1.webp');
}

.hero-slide-2 {
  background-image: url('../images/index/banner-img2.webp');
}

.hero-slide-3 {
  background-image: url('../images/index/banner-img3.webp');
}
/* banner css end */


/* ABOUT section css start */
.about-img-main {
  border-radius: var(--radius);
  width: 100%;
  height: 430px;
  object-fit: cover;
  box-shadow: 0 22px 45px rgba(0, 0, 0, .13);
}

.about-img-small {
  border-radius: var(--radius);
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .15);
  margin-top: -70px;
}

.about-badge {
  position: absolute;
  right: 6%;
  top: 8%;
  background: var(--gold);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(200, 161, 101, .4);
}

.about-badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-badge span {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #4b453e;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.about-text {
  color: var(--muted);
  line-height: 1.9;
}


/* SERVICES */
.svc-card {
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  height: 100%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
  transition: .45s;
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .14);
}

.svc-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: .6s;
}

.svc-card:hover img {
  transform: scale(1.07);
}

.svc-img-wrap {
  overflow: hidden;
}

.svc-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  margin-bottom: 16px;
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}

.svc-icon svg {
  width: 24px;
  height: 24px;
}

.svc-card h5 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.svc-card p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 14px;
}

.link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .4px;
}

.link-gold:hover {
  color: #a8861c;
}


/* STATS */
.stats-sec {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 80px 0;
}

.stats-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, .85);
}

.stats-sec .container {
  position: relative;
  z-index: 2;
}

.stat-box {
  text-align: center;
  padding: 18px 10px;
}

.stat-num {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-num small {
  color: var(--gold);
  font-size: 1.6rem;
}

.stat-box p {
  color: rgba(255, 255, 255, .7);
  margin: 0;
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-sep {
  border-right: 1px solid rgba(255, 255, 255, .14);
}

@media (max-width: 767.98px) {
  .stat-sep {
    border-right: 0;
  }
}

.stats-bg {
  background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1920&q=80');
}


/* CATEGORIES */
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  display: block;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.cat-card:hover img {
  transform: scale(1.12);
}

.cat-card .cat-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 10, .85), rgba(15, 12, 10, .15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: .4s;
}

.cat-card:hover .cat-ov {
  background: linear-gradient(to top, rgba(200, 161, 101, .9), rgba(15, 12, 10, .2));
}

.cat-card h5 {
  color: #fff;
  margin: 0;
  font-size: 1.15rem;
}

.cat-card small {
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
  letter-spacing: 1px;
}


/* GALLERY */
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 270px;
  cursor: pointer;
}

.gal-item.tall {
  height: 270px;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.gal-item:hover img {
  transform: scale(1.12);
}

.gal-item .gal-ov {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .45s;
}

.gal-item:hover .gal-ov {
  opacity: 1;
}

.gal-ov span {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .8);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}


/* PROCESS */
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 0 0 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
  transition: .4s;
  overflow: hidden;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .12);
}

.step-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: -27px auto 18px;
  position: relative;
  z-index: 2;
  border: 4px solid #fff;
}

.step-card h5 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  font-size: .9rem;
  padding: 0 22px;
  margin: 0;
}


/* TESTIMONIALS */
.testi-sec {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 95px 0;
}

.testi-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, .9);
}

.testi-sec .container {
  position: relative;
  z-index: 2;
}

.testi-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.testi-card .quote {
  font-family: Georgia, serif;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: .6;
  margin-bottom: 18px;
}

.testi-card p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
}

.testi-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 22px auto 12px;
}

.testi-card h6 {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  letter-spacing: .5px;
}

.testi-card small {
  color: var(--gold-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .7rem;
}

.testi-sec .carousel-indicators {
  position: static;
  margin-top: 30px;
}

.testi-bg {
  background-image: url('../images/index/background-img-2.webp');
}




/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .14);
  border: 6px solid #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}


/* CONTACT / CTA */
.contact-sec {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 95px 0;
}

.contact-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, .9);
}

.contact-sec .container {
  position: relative;
  z-index: 2;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.contact-info-item.mb-0 {
  margin-bottom: 0 !important;
}

.ci-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 161, 101, .16);
  border: 1px solid rgba(200, 161, 101, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.ci-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item h6 {
  color: #fff;
  margin: 0 0 4px;
  font-size: .95rem;
  letter-spacing: .5px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, .65);
  margin: 0;
  font-size: .9rem;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .3);
}

.contact-form h4 {
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.contact-form p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 22px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #e8e1d7;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .93rem;
  background: #fdfbf8;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(200, 161, 101, .16);
  background: #fff;
}

.contact-form label {
  font-size: .82rem;
  font-weight: 600;
  color: #4b453e;
  margin-bottom: 6px;
  letter-spacing: .3px;
}

.contact-bg {
  background-image: url('../images/index/background-img.webp');
}

.contact-text {
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
}

.section-title.text-white {
  color: #fff !important;
}