:root {
  --gold: #c9a04a;
  --gold-soft: #d9b76a;
  --dark-olive: #2e2d1f;
  --cream: #faf8f1;
  --foreground: #2b2620;
  --muted: #6e6960;
  --border: #e8e3d6;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, .2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, .2) 50%,
      rgba(255, 255, 255, .2) 75%,
      transparent 75%,
      transparent)
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--foreground);
  background: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
.brand-name,
.display-2,
.display-5 {
  font-family: "Playfair Display", Georgia, serif;
}

/* Utility colors */
.text-gold {
  color: var(--gold) !important;
}

.text-cream {
  color: var(--cream) !important;
}

.text-cream-70 {
  color: rgba(250, 248, 241, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.text-cream-60 {
  color: rgba(250, 248, 241, .55);
}

.bg-secondary-soft {
  background: #f4efe3;
}

.opacity-85 {
  opacity: .85;
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.border-cream-15 {
  border-color: rgba(250, 248, 241, .15) !important;
}


/* Default Header */


/* Sticky Header */
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.4s ease forwards;
  z-index: 9999;
}

/* Smooth slide effect */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}


/* Topbar */
.topbar {
  background: var(--dark-olive);
  color: var(--cream);
}

.topbar .text-cream {
  color: var(--cream);
}

/* Logo */
.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.logo-img-cus {
  width: 100px;
}

.logo-img-cus img {
  width: 100%;
}

.brand-name {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.1;
  letter-spacing: .04em;
  /* color: #fff; */
}

.brand-tag {
  font-size: 26px;
  color: var(--gold);
}




/* .wrap-header-hero-sec {
  position: relative;
}

.hero-cus-sec {
  position: absolute;
  height: 100vh;
}

.header-parent-cus {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
.header-parent-cus .navbar{
    border-bottom: 1px solid #e4e3e363;
}

.hero-cus-sec .hero-inner {
  position: absolute;
  top: 50%;
  left: 50px; 
  transform: translateY(-50%);
} */





/* Nav */
.navbar .nav-link {
  color: var(--foreground);
  font-weight: 500;
  font-size: .95rem;
  /* color: #fff; */
}

.navbar .nav-link:hover {
  color: var(--gold);
}

.navbar .nav-link.active-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}

/* Buttons */
.btn-gold {
  background: var(--gold);
  color: var(--cream);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: .65rem 1.25rem;
  font-size: 16px;
}

.btn-gold:hover {
  background: var(--gold-soft);
  color: var(--dark-olive);
}

.btn-outline-cream {
  background: rgba(255, 255, 255, .08);
  color: var(--cream);
  border: 1px solid rgba(250, 248, 241, .4);
  font-weight: 600;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  font-size: 16px;
}

.btn-outline-cream:hover {
  background: rgba(255, 255, 255, .18);
  color: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  /* height: calc(100vh - 147px); */
}

.hero-cus-sec {
  position: relative;
  height: calc(100vh - 147px);
}

.hero-cus-sec .hero-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0), rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .15));
}

.hero-inner {
  padding: 6rem 0 7rem;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--cream);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 74, .6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.stat-num {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 32px;
}

.stat-text {
  font-size: .75rem;
  opacity: .8;
}

.floating-actions {
  background: var(--cream);
  border-radius: 12px;
  padding: 10px 25px 10px 10px;
  display: inline-flex;
  flex-direction: column;
  gap: .25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  margin-left: auto;
  position: absolute;
  z-index: 999;
  right: -15px;
  top: 30%;
}

.floating-actions a {
  width: 90px;
  padding: .75rem .5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  color: var(--dark-olive);
  text-decoration: none;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 500;
}

.floating-actions a i {
  color: var(--gold);
  font-size: 1.1rem;
}

.floating-actions a:hover {
  background: #efe9d8;
}

/* Eyebrow */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .7rem;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* Service card */
.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
  height: 100%;
  padding: 0;
}

.inner-page-wrap-parent .service-card {
  padding: 50px 0 0 0;
}

.service-card:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.service-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card .body {
  padding: 2rem 1rem 1.25rem;
  text-align: center;
  position: relative;
}

.service-card .badge-icon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .15);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .75rem;
}

.learn-more {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
}

/* Filters */
.filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.filter-btn:hover {
  border-color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* Project tile */
.project-tile {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.project-tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s;
}

.project-tile:hover img {
  transform: scale(1.06);
}

/* About */
.about-list li {
  padding: .35rem 0;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--dark-olive);
  border: 4px solid var(--gold);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.badge-num {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}

.badge-text {
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* Stats bar */
.stats-bar {
  background: var(--dark-olive);
  border-radius: 14px;
  padding: 2rem 1rem !important;
  color: var(--cream);
  margin: 0;
}

.stat-big {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--gold);
}

.stat-label {
  font-size: .85rem;
  opacity: .8;
}

/* Process */
.process-step {
  text-align: center;
  position: relative;
}


.process-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 1px;
  background: #d4af37;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  height: 10px;
  width: 10px;
  background: #000;
  border-radius: 50%;
  z-index: 4;
  border: 3px solid #cba456;

  animation: moveDot 3s ease-in-out infinite;
}

/* Step 1 */
#process-grid>div:nth-child(1) .process-step::before {
  animation-delay: 0s;
}

/* Step 2 */
#process-grid>div:nth-child(2) .process-step::before {
  animation-delay: 1s;
}

/* Step 3 */
#process-grid>div:nth-child(3) .process-step::before {
  animation-delay: 2s;
}

/* Step 4 */
#process-grid>div:nth-child(4) .process-step::before {
  animation-delay: 3s;
}

@keyframes moveDot {
  0% {
    top: 0;
  }

  50% {
    top: calc(100% - 16px);
  }

  100% {
    top: 0;
  }
}

#process-grid>div:last-child .process-step::after {
  display: none;
}

#process-grid>div:last-child .process-step::before {
  display: none;
}

.process-step .step-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
}

.step-circle i {
  color: var(--gold);
  font-size: 2rem;
}

.step-num {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-olive);
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.process-step p {
  font-size: .85rem;
  color: var(--muted);
  max-width: 220px;
  margin: 0 auto;
}

/* Testimonial */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  height: 100%;
}

.testimonial .stars {
  color: var(--gold);
  margin-bottom: .75rem;
}

.testimonial p {
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 160, 74, .2);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.author-name {
  font-size: .85rem;
  font-weight: 600;
}

.author-loc {
  font-size: .75rem;
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--dark-olive);
  color: var(--cream);
}

.footer-title {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list li {
  padding: .35rem 0;
  color: rgba(250, 248, 241, .75);
}

.footer-list a {
  color: rgba(250, 248, 241, .75);
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--gold);
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s;
}

.social:hover {
  background: var(--gold-soft);
  color: var(--dark-olive);
}

.footer .text-cream-60 a {
  color: rgba(250, 248, 241, .6);
  text-decoration: none;
}

.footer .text-cream-60 a:hover {
  color: var(--gold);
}

@media (max-width: 991px) {
  .hero-inner {
    padding: 3rem 0 4rem;
  }

  .experience-badge {
    left: 10px;
    bottom: -10px;
  }
}


/* ============================================================= */

/* =========================
   DESKTOP
========================= */

@media (min-width: 992px) {

  .header-parent-cus .dropdown-hover:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .header-parent-cus .dropdown-submenu {
    position: relative;
  }

  .header-parent-cus .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 5px;
    display: none;
  }

  .header-parent-cus .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }
}

/* =========================
   MOBILE + TABLET
========================= */

@media (max-width: 991.98px) {

  .header-parent-cus .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    padding-left: 15px;
    margin-top: 0;
  }

  .header-parent-cus .dropdown-submenu>.dropdown-menu {
    display: none;
    margin-left: 10px;
    padding-left: 12px;
    border-left: 2px solid #c9a45c;
  }

  .header-parent-cus .dropdown-submenu.open>.dropdown-menu {
    display: block;
  }

  .header-parent-cus .dropdown-submenu>.dropdown-toggle::after {
    transition: .3s;
  }

  .header-parent-cus .dropdown-submenu.open>.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* =========================
   COMMON STYLING
========================= */

.header-parent-cus .navbar .dropdown-menu {
  min-width: 260px;
  border: none;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.header-parent-cus .navbar .dropdown-item {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 500;
  transition: .3s;
}

.header-parent-cus .navbar .dropdown-item:hover {
  background: #c9a45c;
  color: #fff;
}

.header-parent-cus .dropdown-toggle::after {
  display: inline-block;
  margin-left: .5rem;
  vertical-align: middle;
  content: "\F282";
  font-family: "bootstrap-icons" !important;
  border: none;
}

.header-parent-cus .dropdown-submenu>.dropdown-toggle::after {
  transition: all 0.3s ease;
}

.header-parent-cus .dropdown-submenu:hover>.dropdown-toggle::after,
.header-parent-cus .dropdown-submenu:focus-within>.dropdown-toggle::after {
  transform: rotate(270deg);
}

.header-parent-cus .dropdown-menu[data-bs-popper] {
  top: unset;
  left: unset;
}


/* =====================review slider ======================= */
/* ==========================================
   Reviews Slider
========================================== */

#reviews .reviews-slider {
  position: relative;
}

/* Card Gap */
#reviews .slick-slide {
  padding: 5px;
  box-sizing: border-box;
}

#reviews .slick-list {
  margin: 0 -15px;
  overflow: hidden;
}

/* ==========================================
   Navigation Buttons
========================================== */

#reviews .slick-prev,
#reviews .slick-next {
  width: 65px;
  height: 65px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .12);
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all .35s ease;
}

/* Left Button */
#reviews .slick-prev {
  left: -85px;
}

/* Right Button */
#reviews .slick-next {
  right: -85px;
}

/* Remove Slick Default Arrow */
#reviews .slick-prev:before,
#reviews .slick-next:before {
  display: none;
}

/* Bootstrap Icons */
#reviews .slick-prev i,
#reviews .slick-next i {
  font-size: 24px;
  color: #222;
  transition: all .35s ease;
}

/* Hover Effect */
#reviews .slick-prev:hover,
#reviews .slick-next:hover {
  background: linear-gradient(135deg,
      #c8a165,
      #e6c892);
  transform: translateY(-50%) scale(1.08);
  box-shadow:
    0 15px 40px rgba(200, 161, 101, .35);
}

#reviews .slick-prev:hover i,
#reviews .slick-next:hover i {
  color: #fff;
}

/* Disabled State */
#reviews .slick-disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ==========================================
   Dots (Optional)
========================================== */

#reviews .slick-dots {
  bottom: -50px;
}

#reviews .slick-dots li button:before {
  font-size: 12px;
  color: #c8a165;
}

#reviews .slick-dots li.slick-active button:before {
  color: #c8a165;
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 991px) {

  #reviews .slick-prev {
    left: -15px;
  }

  #reviews .slick-next {
    right: -15px;
  }

  #reviews .slick-prev,
  #reviews .slick-next {
    width: 55px;
    height: 55px;
  }

  #reviews .slick-prev i,
  #reviews .slick-next i {
    font-size: 20px;
  }
}

@media (max-width: 767px) {

  #reviews .slick-prev,
  #reviews .slick-next {
    width: 48px;
    height: 48px;
  }

  #reviews .slick-prev {
    left: 5px;
  }

  #reviews .slick-next {
    right: 5px;
  }
}




/* =============================service section slider (what we do) start================================ */

/* =============================service section slider (what we do) end================================ */
/* =============================about us start================================ */
.inner-page-wrap-parent {}

/* Inner Banner */

.inner-page-wrap-parent .inner-banner {
  position: relative;
  background: url('../images/New-Project-2.webp') center center/cover;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.inner-page-wrap-parent .inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.inner-page-wrap-parent .inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-page-wrap-parent .inner-banner-content h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 15px;
}

.inner-page-wrap-parent .inner-banner .breadcrumb-item,
.inner-page-wrap-parent .inner-banner .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.inner-page-wrap-parent .about-img-wrap img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.inner-page-wrap-parent .about-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.inner-page-wrap-parent .about-feature-box i {
  color: var(--gold);
  font-size: 20px;
}

@media(max-width:991px) {

  .inner-page-wrap-parent .inner-banner {
    min-height: 280px;
  }

  .inner-page-wrap-parent .inner-banner-content h1 {
    font-size: 42px;
  }

  .inner-page-wrap-parent .about-img-wrap img {
    height: auto;
  }

}

/* =============================about us end================================ */
/* =============================Contact us start================================ */
.inner-page-wrap-parent .contact-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  height: 100%;
  transition: .4s;
}

.inner-page-wrap-parent .contact-card:hover {
  transform: translateY(-8px);
}

.inner-page-wrap-parent .contact-card i {
  font-size: 42px;
  color: #c79a4a;
  margin-bottom: 20px;
}

.inner-page-wrap-parent .contact-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, .08);
}

.inner-page-wrap-parent .contact-form-box .form-control,
.inner-page-wrap-parent .contact-form-box .form-select {
  height: 58px;
  border-radius: 12px;
}

.inner-page-wrap-parent .contact-form-box textarea.form-control {
  height: auto;
}

.inner-page-wrap-parent .contact-cta {
  background: #111;
}

.inner-page-wrap-parent .contact-cta h2,
.inner-page-wrap-parent .contact-cta p {
  color: #fff;
}

.inner-page-wrap-parent .cta-box {
  max-width: 800px;
  margin: auto;
}

/* =============================Contact us end================================ */
/* =============================blog css start================================ */
.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: .4s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .5s;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-image span {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #b8925e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-meta {
  color: #888;
  margin-bottom: 15px;
}

.blog-details h1 {
  font-size: 54px;
  margin-bottom: 25px;
}

.blog-details h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-details p {
  line-height: 1.9;
  color: #666;
}

.blog-details blockquote {
  border-left: 5px solid #b8925e;
  padding: 25px;
  margin: 40px 0;
  background: #f8f8f8;
  font-size: 24px;
  font-style: italic;
}

@media(max-width:991px) {

  .blog-details h1 {
    font-size: 38px;
  }

}

/* =============================blog css end================================ */
/* =============================blog-details css start================================ */
.fbn-blog-hero {
  padding: 120px 0 90px;
  background: #111;
  color: #fff;
  text-align: center;
}

.fbn-blog-breadcrumb {
  color: #cfcfcf;
  margin-bottom: 20px;
}

.fbn-blog-category {
  display: inline-block;
  background: #c7a26a;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.fbn-blog-title {
  font-size: 58px;
  font-weight: 700;
  max-width: 900px;
  margin: auto;
}

.fbn-blog-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  color: #ddd;
}

.fbn-blog-details-section {
  padding: 100px 0;
}

.fbn-blog-featured-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 40px;
}

.fbn-blog-content {
  font-size: 18px;
  line-height: 1.9;
}

.fbn-dropcap:first-letter {
  font-size: 70px;
  float: left;
  line-height: 1;
  padding-right: 12px;
  font-weight: 700;
}

.fbn-blog-content h2 {
  margin: 50px 0 20px;
  font-weight: 700;
}

.fbn-blog-quote {
  background: #f8f8f8;
  border-left: 5px solid #c7a26a;
  padding: 35px;
  margin: 40px 0;
  font-size: 24px;
  font-style: italic;
}

.fbn-blog-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.fbn-blog-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.fbn-blog-tags {
  margin-top: 50px;
}

.fbn-blog-tags a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ddd;
  margin: 5px;
  text-decoration: none;
  color: #333;
  border-radius: 40px;
}

.fbn-blog-share {
  margin-top: 50px;
}

.fbn-blog-share a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
}

.fbn-author-box {
  display: flex;
  gap: 25px;
  margin-top: 60px;
  background: #f7f7f7;
  padding: 35px;
  border-radius: 20px;
}

.fbn-author-box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.fbn-blog-sidebar {
  position: sticky;
  top: 100px;
}

.fbn-sidebar-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.fbn-sidebar-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fbn-sidebar-card li {
  margin-bottom: 15px;
}

.fbn-sidebar-card a {
  text-decoration: none;
  color: #333;
}

.fbn-related-posts {
  padding: 100px 0;
  background: #f8f8f8;
}

.fbn-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.fbn-section-heading span {
  color: #c7a26a;
}

.fbn-related-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.fbn-related-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.fbn-related-content {
  padding: 25px;
}

.fbn-newsletter-cta {
  padding: 100px 0;
  background: #111;
}

.fbn-newsletter-inner {
  text-align: center;
  color: #fff;
}

.fbn-newsletter-inner h2 {
  margin-bottom: 30px;
}

.fbn-newsletter-inner form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fbn-newsletter-inner input {
  width: 500px;
  height: 60px;
  border: none;
  padding: 0 20px;
  border-radius: 50px;
}

.fbn-newsletter-inner button {
  height: 60px;
  border: none;
  background: #c7a26a;
  color: #fff;
  padding: 0 35px;
  border-radius: 50px;
}

@media(max-width:991px) {

  .fbn-blog-title {
    font-size: 40px;
  }

  .fbn-blog-featured-img {
    height: 450px;
  }

  .fbn-blog-gallery {
    grid-template-columns: 1fr;
  }

  .fbn-blog-meta {
    flex-direction: column;
    gap: 10px;
  }

  .fbn-author-box {
    flex-direction: column;
  }
}

/* =============================blog-details css end================================ */
/* =============================project css start================================ */
/* ===== SECTION ===== */

.fbn-project-showcase {
  padding: 3rem 0;
  background: #faf8f4;
}

.fbn-project-heading {
  text-align: center;
  /* max-width: 800px; */
  margin: auto auto 48px;
}

.fbn-project-heading span {
  display: inline-block;
  color: #b89463;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.fbn-project-heading h2 {
  font-size: 58px;
  margin-bottom: 20px;
}

.fbn-project-heading p {
  max-width: 650px;
  margin: auto;
}

/* ===== CARD ===== */

.fbn-project-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.fbn-project-item a {
  display: block;
  position: relative;
}

.fbn-project-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 1s;
}

/* ===== OVERLAY ===== */

.fbn-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .85),
      rgba(0, 0, 0, .1));

  opacity: 0;
  transition: .5s;
}

.fbn-project-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;

  transform: translateY(30px);
  transition: .5s;
}

.fbn-project-info span {
  color: #d8c3a0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.fbn-project-info h4 {
  color: #fff;
  font-size: 30px;
  margin-top: 10px;
}

/* ===== ICON ===== */

.fbn-project-icon {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 25px;

  transform: scale(.5);
  opacity: 0;

  transition: .5s;
}

.fbn-project-icon i {
  font-size: 30px;
  color: #111;
}

/* ===== HOVER ===== */

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

.fbn-project-item:hover .fbn-project-overlay {
  opacity: 1;
}

.fbn-project-item:hover .fbn-project-info {
  transform: translateY(0);
}

.fbn-project-item:hover .fbn-project-icon {
  transform: scale(1);
  opacity: 1;
}

/* ===== LARGE CARD ===== */

.fbn-project-item.large img {
  height: 600px;
}

/* ===== MOBILE ===== */

@media(max-width:991px) {

  .fbn-project-heading h2 {
    font-size: 40px;
  }

  .fbn-project-item img,
  .fbn-project-item.large img {
    height: 320px;
  }

}

/* =============================project css end================================ */
/* =============================Service details page start================================ */
.service-sec-cus-parent {
  padding: 80px 0;
  background: #fafafa;
}

.service-sec-cus-parent h1,
.service-sec-cus-parent h2,
.service-sec-cus-parent h3,
.service-sec-cus-parent h4,
.service-sec-cus-parent h5 {
  font-weight: 700;
  color: #111;
}

.service-sec-cus-parent p {
  color: #666;
  line-height: 1.8;
}

.service-sec-cus-parent .service-hero {
  margin-bottom: 80px;
}

.service-sec-cus-parent .service-tag {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 14px;
}

.service-sec-cus-parent .service-btn {
  padding: 14px 32px;
  margin-top: 20px;
}

.service-sec-cus-parent .service-content-sec {
  margin-bottom: 80px;
}

.service-sec-cus-parent .service-side-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.service-sec-cus-parent .service-side-card ul {
  padding-left: 20px;
  margin: 0;
}

.service-sec-cus-parent .service-side-card li {
  margin-bottom: 12px;
}

.service-sec-cus-parent .service-features {
  margin-bottom: 80px;
}

.service-sec-cus-parent .feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.service-sec-cus-parent .service-image-content {
  margin-bottom: 80px;
}

.service-sec-cus-parent .service-list {
  padding-left: 20px;
}

.service-sec-cus-parent .service-list li {
  margin-bottom: 10px;
}

.service-sec-cus-parent .service-benefits {
  margin-bottom: 80px;
}

.service-sec-cus-parent .benefit-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.service-sec-cus-parent .service-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.service-sec-cus-parent .service-faq .accordion-button {
  font-weight: 600;
}

.service-sec-cus-parent .sec-title {
  margin-bottom: 50px;
}

@media(max-width:991px) {

  .service-sec-cus-parent .service-hero,
  .service-sec-cus-parent .service-content-sec,
  .service-sec-cus-parent .service-features,
  .service-sec-cus-parent .service-image-content,
  .service-sec-cus-parent .service-benefits {
    margin-bottom: 60px;
  }

  .service-sec-cus-parent .service-side-card {
    margin-top: 30px;
  }

}

/* =============================Service details page end================================ */
/* =============================Service page start================================ */
.service-card-sec-cus-parent {
  padding: 100px 0;
  background: #f8f8f8;
  position: relative;
}

.service-card-sec-cus-parent .service-subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: #e4c46b;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card-sec-cus-parent .service-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.service-card-sec-cus-parent .service-desc {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.service-card-sec-cus-parent .service-card-cus {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, .25);
  transition: .4s ease;
  position: relative;
  overflow: hidden;
}

.service-card-sec-cus-parent .service-card-cus:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: #d4af37;
  transform: scaleX(0);
  transition: .4s;
}

.service-card-sec-cus-parent .service-card-cus:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.service-card-sec-cus-parent .service-card-cus:hover:before {
  transform: scaleX(1);
}

.service-card-sec-cus-parent .service-icon {
  width: 80px;
  height: 80px;
  background: #d4af37;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  transition: .4s;
}

.service-card-sec-cus-parent .service-card-cus:hover .service-icon {
  transform: rotateY(180deg);
}

.service-card-sec-cus-parent .service-card-cus h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.service-card-sec-cus-parent .service-card-cus p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media(max-width:991px) {

  .service-card-sec-cus-parent {
    padding: 70px 0;
  }

  .service-card-sec-cus-parent .service-title {
    font-size: 34px;
  }

  .service-card-sec-cus-parent .service-card-cus {
    padding: 35px 25px;
  }

  .service-card-sec-cus-parent .service-card-cus h3 {
    font-size: 22px;
  }
}

@media(max-width:767px) {

  .service-card-sec-cus-parent .service-title {
    font-size: 28px;
  }

  .service-card-sec-cus-parent .service-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

/* =============================Service page end================================ */