@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

  /* Colors */

  --theme-color: #000;
  --theme-color-second: #b5935a;
  --theme-white-substitute: #fafaf8;
  --color-text-muted: #8a8a84;
  --color-bg-secondary: #F2F0EC;

  /* Fonts */

  --heading-font: "Cormorant Garamond", serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: "Inter", sans-serif;

  /* Shadows */

  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

  --color-bg: #FAFAF8;
  --color-bg-secondary: #F2F0EC;
  --color-surface: #E8E5DF;
  --color-surface-elevated: #FFFFFF;
  --color-text-primary: #1A1A18;
  --color-text-secondary: #4A4A46;
  --color-text-muted: #8A8A84;
  --color-text-on-accent: #FAFAF8;
  --color-accent: #2A2A26;
  --color-accent-warm: #B5935A;
  --color-accent-hover: #3D3D38;
  --color-accent-subtle: #D4C4A8;
  --color-border: #D0CDC6;
  --color-border-subtle: #E2DFD8;
  --color-focus-ring: #B5935A;
  --color-overlay: rgba(26, 26, 24, .55);
  --color-glass: rgba(250, 250, 248, .72);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --section-padding-y: 88px;
  --section-padding-x: 80px;
  --content-max-width: 1280px;
  --content-narrow: 720px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(26, 26, 24, .06);
  --shadow-md: 0 4px 16px rgba(26, 26, 24, .08);
  --ease-out: cubic-bezier(.25, .46, .45, .94);
  --ease-enter: cubic-bezier(0, 0, .2, 1);
  --ease-elegant: cubic-bezier(.16, 1, .3, 1);
  --duration-fast: .2s;
  --duration-base: .4s;
  --duration-slow: .7s;
  --duration-reveal: 1s;
  --background: 48 20% 98%;
  --foreground: 48 5% 7%;
  --card: 48 20% 98%;
  --card-foreground: 48 5% 7%;
  --popover: 0 0% 100%;
  --popover-foreground: 48 5% 7%;
  --primary: 48 5% 10%;
  --primary-foreground: 48 20% 98%;
  --secondary: 40 10% 93%;
  --secondary-foreground: 48 5% 10%;
  --muted: 40 10% 93%;
  --muted-foreground: 45 3% 52%;
  --accent: 40 10% 93%;
  --accent-foreground: 48 5% 10%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 40 8% 82%;
  --input: 40 8% 82%;
  --ring: 37 34% 53%;
  --radius: .5rem
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

body {
  margin: 0;
  padding: 0;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  overflow-x: hidden;
  font-family: var(--paragraph-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: 0.6s ease;

}

a:hover {
  text-decoration: none;
  transition: 0.6s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-family: var(--heading-font);
}

h1 {
  font-size: clamp(48px, 8vw, 70px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  opacity: 1;
  transform: none;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 14px;
}

ul li {
  margin-bottom: 0px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-fluid {
  width: 100%;
}


ul {
  list-style: none;
  padding: 0;
}




.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}

a.navbar-brand img {
  width: 196px;
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}


.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 500px;
  width: 14.3rem;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: rgba(181, 147, 90, 0.35) 0px 4px 24px;
  border: var(--theme-color-second);
  transform: scale(1);
}


a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff;
  transform: scale(1.02);

}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
  background-color: rgba(250, 250, 248, 0.12);
  color: rgb(250, 250, 248);
  border: 1.5px solid rgba(250, 250, 248, 0.4);
  backdrop-filter: blur(8px);
}

a.btn-white:hover {
  background-color: rgba(250, 250, 248, 0.12);
  color: rgb(250, 250, 248);
  border: 1.5px solid rgba(250, 250, 248, 0.4);
  backdrop-filter: blur(8px);
}

a.top-btn {
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: rgba(250, 250, 248, 0.12);
  color: rgb(250, 250, 248);
  border: 1.5px solid rgba(250, 250, 248, 0.4);
  backdrop-filter: blur(8px);
}

.header_menu li a {
  text-transform: capitalize;
  padding: 29px 13px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
}

.header_menu li.active a {
  font-weight: 600;
  color: rgb(250, 250, 248);
}

a.phone-top {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999;
}

/* banner */
.banner_sec {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.banner_sec a.comon-btn {
  width: 15rem;
}

.banner_sec .container {
  position: relative;
  z-index: 111;
}

.banner_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(26 26 24 / 11%) 0%, rgba(26, 26, 24, 0.342) 40%, rgb(26 26 24 / 59%) 100%);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}

.banner_sec p.eyebrow {
  color: rgba(250, 250, 248, 0.8);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.banner_sec p.eyebrow img {
  height: 22px;
}

.banner_sec .eyebrow-dot::before {
  content: "●";
  color: var(--theme-color-second);
  margin-right: 8px;
}

.banner_sec h1.text-hero {
  color: #fafaf8;
}

.banner_sec .review-box {
  background-color: rgba(250, 250, 248, 0.12);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(250, 250, 248, 0.3);
  border-radius: 9999px;
  display: inline-flex;
}

.banner_sec .review-box span,
.banner_sec .review-box .rating {
  font-size: 13px;
  color: #fafaf8;
}

.banner_sec .review-box .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: #ffe100;
}

.banner_sec .font-body {
  font-size: 16px;
  color: rgba(250, 250, 248, 0.85);
  line-height: 1.6;
}







.review-box {
    background: rgba(120, 120, 120, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    margin-bottom :20px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.review-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.review-box .rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-box .rating li {
    color: #ffc107;
    font-size: 14px;
    line-height: 1;
}

.review-box img {
    vertical-align: middle;
    margin: 0 3px;
}

.review-box span {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 991px) {
    .review-box {
        padding: 10px 18px;
        font-size: 14px;
    }

    .review-box p {
        font-size: 14px;
    }
}






.home_sec_2 {
  background: linear-gradient(135deg,
      rgb(249, 245, 238) 0%,
      rgb(240, 232, 216) 40%,
      rgb(237, 224, 200) 100%);
  border-top: 0.5px solid rgba(181, 147, 90, 0.3);
  border-bottom: 0.5px solid rgba(181, 147, 90, 0.3);
  padding: 20px 0;
  overflow: hidden;
}

.home_sec_2 p.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
}


.home_sec_2 .logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.home_sec_2 .logo-track {
  display: flex;

  animation: marquee 25s linear infinite;
}

.home_sec_2 .logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.home_sec_2 .logo-item {
  display: flex;
  align-items: center;
  margin-left: 2rem;
  margin-right: 2rem;

}

.home_sec_2 .logo-item img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 200ms;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 767px) {}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home_sec_3 .img-box {
  opacity: 1;
  transform: none;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.home_sec_3 .img-box .img-cap {
  position: absolute;
  background-color: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--color-border);
  bottom: 20px;
  left: 20px;
  border-radius: 12px;
}

.home_sec_3 .img-box p {
  margin-bottom: 0;
}

.home_sec_3 .img-box p.font-body.text-xs {
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  font-size: .75rem;
  line-height: 1rem;
  margin-bottom: 5px;
}

.home_sec_3 .img-box p.font-body.font-medium {
  font-size: 15px;
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1;
}

.home_sec_3 .img-box img {
  height: clamp(360px, 45vw, 560px);
  object-fit: cover;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
}

.eyebrow-dot:before {
  content: "●";

  margin-right: 8px;
  color: var(--theme-color-second);
}

.home_sec_3 .heading p {
  font-size: 16px;
  color: #4a4a46;
  line-height: 1.75;
  opacity: 1;

}

.home_sec_3 .heading p.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
}

.home_sec_3 .heading p.eyebrow-dot:before {
  content: "●";

  margin-right: 8px;
  color: var(--theme-color-second);
}

a.arrow-btn {
  font-size: 14px;
  color: var(--theme-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.6s;
}

a.arrow-btn i {
  position: relative;
  top: 2px;

}

a.arrow-btn:hover {
  gap: 8px;
  transition: 0.6s;
  color: var(--theme-color-second);
}



.home_sec_4 .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home_sec_4 .service-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  transform: translateY(0);
}

.home_sec_4 .service-card:hover {
  transition: 0.4s;

  transform: translateY(-8px);
}

.home_sec_4 .service-img {
  height: 180px;
  overflow: hidden;
}

.home_sec_4 .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  transform: scale(1.1);
}

.home_sec_4 .service-card:hover .service-img img {
  transform: scale(1.05);
}

.home_sec_4 .service-content {
  padding: 24px;
}

.home_sec_4 .service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(181, 147, 90, 0.1);
  border: 1px solid rgba(181, 147, 90, 0.2);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5935a;
}

.home_sec_4 .service-content h4 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 500;
  font-style: italic;
  color: #111;
}

.home_sec_4 .service-content p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}


/*===========  25-05-2026 ==============  */


/* home_sec_5 */

.home_sec_5 {
  background: #fff;
}

.home_sec_5 .projects-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}

.home_sec_5 .projects-heading h2 {
  line-height: 1.1;
  margin-top: 15px;
  color: #1a1a18;
}

.home_sec_5 .projects-heading h2 em {
  font-style: italic;
}

.home_sec_5 .projects-text {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}


.home_sec_5 .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.home_sec_5 .project-card a {
  text-decoration: none;
  display: block;
}

.home_sec_5 .project-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/5;
}

.home_sec_5 .project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.home_sec_5 .project-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.82) 0%, rgba(26, 26, 24, 0.1) 60%);
  opacity: 0;
  transition: 0.4s ease;
}

.home_sec_5 .project-overlay h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 5px;
}

.home_sec_5 .project-overlay span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.home_sec_5 .project-location {
  color: #d8a85c;
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home_sec_5 .project_location_name {
  color: #8a8a84;
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home_sec_5 .project-card:hover img {
  transform: scale(1.05);
}

.home_sec_5 .project-card:hover .project-overlay {
  opacity: 1;
}

.home_sec_5 .project-content {
  padding: 15px 0 10px;
}

.home_sec_5 .project-content h3 {
  font-size: 18px;
  color: #1a1a18;
  margin-bottom: 4px;
  transition: 0.3s ease;
}

.home_sec_5 .project-content span {
  font-size: 13px;
  color: #888;
}

.home_sec_5 .project-card:hover .project-content h3 {
  color: #b88646;
}

.home_sec_5 .projects-btn {
  text-align: center;
}

.home_sec_5 .theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid #b88646;
  border-radius: 999px;
  text-decoration: none;
  color: #1a1a18;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.home_sec_5 .theme-btn:hover {
  transform: scale(1.02);
}

/* home_sec_6 */

.home_sec_6.testimonial-section {
  background: #f7f5f1;
}

.home_sec_6 .testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 50px;
}

.home_sec_6 .testimonial-heading h2 {
  line-height: 1.1;
  margin-top: 15px;
  color: #1a1a18;
}

.home_sec_6 .testimonial-heading h2 em {
  font-style: italic;
}


.home_sec_6 .rating-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.home_sec_6 .rating-number {
  font-size: 42px;
  font-weight: 300;
  color: #1a1a18;
  line-height: 1;
  font-family: var(--heading-font);
}

.home_sec_6 .rating-text {
  font-size: 12px;
  color: #777;
}

.home_sec_6 .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.home_sec_6 .stars i {
  color: #c69b5d;
  font-size: 14px;
}

.home_sec_6 .stars.small i {
  font-size: 11px;
}

.home_sec_6 .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 35px;
}

.home_sec_6 .testimonial-card {
  background: #fff;
  border: 1px solid #e5e1d9;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.home_sec_6 .testimonial-card:hover {
  transform: translateY(-5px);
}

.home_sec_6 .quote-icon {
  margin-bottom: 15px;
}

.home_sec_6 .quote-icon i {
  font-size: 24px;
  color: #c69b5d;
}

.home_sec_6 .testimonial-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 30px;
}

.home_sec_6 .testimonial-bottom h4 {
  font-size: 16px;
  color: #1a1a18;
  margin-bottom: 3px;
}

.home_sec_6 .testimonial-bottom span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.home_sec_6 .testimonial-btn {
  text-align: center;
}

.home_sec_6 .testimonial-btn a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: 0.3s ease;
}

.home_sec_6 .testimonial-btn a:hover {
  color: #b88646;
}

/* home_sec_7 */

.home_sec_7.how-work-section {
  background: #fff;
}

.home_sec_7 .work-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 60px;
}

.home_sec_7 .work-heading h2 {
  line-height: 1.1;
  margin-top: 15px;
  color: #1a1a18;
}

.home_sec_7 .work-heading h2 em {
  font-style: italic;
}



.home_sec_7 .work-btn a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #777;
  font-size: 14px;
  transition: 0.3s ease;
}

.home_sec_7 .work-btn a:hover {
  color: #b88646;
}

.home_sec_7 .work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e5e1d9;
  border-bottom: 1px solid #e5e1d9;
}

.home_sec_7 .work-card {
  padding: 27px 35px;
  position: relative;
}

.home_sec_7 .work-card:not(:last-child) {
  border-right: 1px solid #e5e1d9;
}

.home_sec_7 .work-title {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}

.home_sec_7 .work-title span {
  font-size: 52px;
  font-family: var(--heading-font);
  font-weight: 300;
  line-height: 1;
  color: #d8d2c8;
}

.home_sec_7 .work-title h3 {
  font-size: 18px;
  color: #1a1a18;
  font-weight: 500;
}

.home_sec_7 .work-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}


/* home_sec_8 */

.home_sec_8.coverage-section {
  background: #f7f5f1;
}

.home_sec_8 .coverage-heading h2 {
  line-height: 1.1;
  margin-top: 15px;
  color: #1a1a18;
}

.home_sec_8 .coverage-heading h2 em {
  font-style: italic;
}


.home_sec_8 .coverage-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 30px 0;
}

.home_sec_8 .coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.home_sec_8 .coverage-tags span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #E8E5DF;
  border: 1px solid #d0cdc6;
  font-size: 13px;
  color: #666;
  transition: 0.3s ease;
}

.home_sec_8 .coverage-tags span:hover {
  background: #b88646;
  color: #fff;
  border-color: #b88646;
}

.home_sec_8 .coverage-note {
  font-size: 14px;
  line-height: 1.7;
  color: #888;
  font-style: italic;
}

.home_sec_8 .coverage-image {
  overflow: hidden;
  border-radius: 28px;
}

.home_sec_8 .coverage-image img {
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  object-fit: contain;
  transition: 0.6s ease;
}

/* 
.home_sec_8 .coverage-image:hover img {
  transform: scale(1.05);
} */


/* home_sec_9 */

.home_sec_9.cta-section {
  background: #2A2A26;
}

.home_sec_9 .cta-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.home_sec_9 .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.home_sec_9 .cta-content h2 {
  line-height: 1.1;
  color: #fafaf8;
  margin-bottom: 25px;
}

.home_sec_9 .cta-content h2 em {
  font-style: italic;
}

.home_sec_9 .cta-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

.home_sec_9 .cta-box {
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.home_sec_9 .cta-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px 25px;
  border-radius: 999px;
  background: #b5935a;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  transition: 0.3s ease;
  box-shadow: 0 4px 20px rgba(181, 147, 90, 0.3);
}

.home_sec_9 .cta-btn:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.home_sec_9 .cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home_sec_9 .cta-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.home_sec_9 .cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home_sec_9 .cta-icon i {
  color: #b88646;
  font-size: 18px;
}

.home_sec_9 .cta-contact-item h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
  transition: 0.3s ease;
}

.home_sec_9 .cta-contact-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home_sec_9 .cta-contact-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}

.home_sec_9 .cta-contact-item:hover h4,
.home_sec_9 .cta-contact-item:hover p {
  color: #b88646;
}

/* footer */

.site-footer {
  background: #2A2A26;
  padding-top: 70px;
}

/* top */

.site-footer .footer-top {
  padding-bottom: 45px;
  margin-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-footer .footer-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.site-footer .footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer .footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 100px;
  background: #b5935a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: .3s ease;
}

.site-footer .footer-cta-btn:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* grid */

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.site-footer .footer-title {
  font-size: 12px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.site-footer .small-title {
  margin-top: 30px;
}

.site-footer .footer-text p {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, .6);
}

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer .footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: .3s ease;
}

.site-footer .footer-links a:hover {
  color: #fff;
}

.site-footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer .footer-social a {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  transition: .3s ease;
}

.site-footer .footer-social a:hover {
  background: #b5935a;
  border-color: #b5935a;
  color: #fff;
}

/* services */

.site-footer .footer-services {
  padding: 45px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-footer .footer-services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.site-footer .footer-services-wrap a {
  font-size: 12px;
  color: rgba(255, 255, 255, .42);
  transition: .3s ease;
}

.site-footer .footer-services-wrap a:hover {
  color: #fff;
}

/* bottom */

.site-footer .footer-bottom {
  padding: 28px 0;
}

.site-footer .footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer .footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.site-footer .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer .footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  transition: .3s ease;
}

.site-footer .footer-bottom-links a:hover {
  color: #fff;
}






/* Tablet */
@media (max-width: 991px) {
  .home_sec_4 .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_sec_5 .projects-top {
    flex-direction: column;
    align-items: start;
  }

  .home_sec_5 .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_sec_5 .projects-heading h2 {
    font-size: 42px;
  }

  .home_sec_6 .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_sec_7 .work-grid {
    grid-template-columns: 1fr;
  }

  .home_sec_7 .work-card {
    padding: 22px 0;
  }

  .home_sec_7 .work-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e5e1d9;
  }

  .home_sec_8 .coverage-image {
    margin-top: 10px;
  }

  .home_sec_9 .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer .footer-top-wrap,
  .site-footer .footer-bottom-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home_sec_4 .services-grid {
    grid-template-columns: 1fr;
  }

  .home_sec_5 .projects-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home_sec_6 .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home_sec_8 .coverage-image img {
    height: 320px;
  }

  .home_sec_9 .cta-box {
    padding: 25px;
    border-radius: 22px;
  }

  .site-footer .site-footer {
    padding-top: 55px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer .footer-services {
    margin-top: 45px;
  }

  .site-footer.footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}


/* =========================
   FOOTER
========================= */

.footer {
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.footer .ft-logo {
  width: 150px;
}

.footer .side-img {
  object-fit: cover;
  object-position: left;
}

.footer .list-link li {
  margin-bottom: 15px;
}

.footer .list-link li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer .socila-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer .socila-box h6 {
  text-transform: capitalize;
  color: #D7CDAE;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer .list-page {
  display: flex;
  align-items: center;

  gap: 25px;
}

.footer .list-page a {
  color: #fff;
  font-size: 13px;
}

.footer a {
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 400;
}

.footer-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-icon li a {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
}

.footer-icon li:nth-child(1) a {
  background: #1877f2;
}

.footer-icon li:nth-child(2) a {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.footer-icon li:nth-child(3) a {
  background: #0a66c2;
}

.footer-icon li:nth-child(4) a {
  background: #000;
}

.footer-icon li:nth-child(5) a {
  background: #ff0000;
}

.footer-icon li:nth-child(6) a {
  background: #ffffff;
  color: #4285f4;
  border: 1px solid #ddd;
}

.footer .heading p {
  font-size: 13px;
}

.footer-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-icon li a {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
}

.footer-icon li:nth-child(1) a {
  background: #1877f2;
}

.footer-icon li:nth-child(2) a {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.footer-icon li:nth-child(3) a {
  background: #0a66c2;
}

.footer-icon li:nth-child(4) a {
  background: #000;
}

.footer-icon li:nth-child(5) a {
  background: #ff0000;
}

.footer-icon li:nth-child(6) a {
  background: #ffffff;
  color: #4285f4;
  border: 1px solid #ddd;
}

.footer .heading p {
  font-size: 13px;
}

.faq_Sec .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 15px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  box-shadow: none !important;
}

.faq_Sec .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-btn-color);
  background-color: var(--bs-accordion-btn-bg);
  box-shadow: none !important;
}

.faq_Sec .accordion-item {
  text-align: justify;
  font-size: 15px;
}

.faq_Sec .accordion-item p {
  font-size: 15px;
}

.faq_Sec .accordion-button::after {
  width: 23px;
  height: 23px;
  margin-left: auto;
  content: "+";
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-second);
  color: #fff;
  border-radius: 600px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  background-image: none !important;
  transform: none !important;
}


/* Project Section */
.coverage-section .project_sec_2 {
  border-radius: 20px;
}

/* Heading span weight */
.coverage-section .project_sec_2 .heading :is(h2, h3) span {
  font-weight: 300;
}

/* Area Box */
.coverage-section .area-box {
  position: relative;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Link inside Area Box */
.coverage-section .area-box a {
  border-radius: 15px;
  display: block;
  /* ensures radius applies properly */
}

.coverage-section .area-box p {
  font-size: 13px;
}

/* Hover Effect */
.coverage-section .area-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

a.fit-btn {
  width: fit-content;
}


#main_header.header-2 a.navbar-brand img {
  width: 196px;
  height: 44px;
  width: auto;
  filter: brightness(1) invert(0);
  transition: filter 0.3s;
}


#main_header.header-2 .header_menu li a {

  color: #4a4a46;
}

#main_header.header-2 a.phone-top {

  color: #4a4a46;

}

#main_header.header-2 a.top-btn {
  background: #2a2a26;
  backdrop-filter: blur(0px);
}

.our_project_sec_1 {
  background-color: var(--color-bg-secondary);
  padding: 120px 0 80px;
}


.our_project_sec_1 h1 em {
  font-style: italic;
}

@media (max-width: 767px) {
  .our_project_sec_1 {
    padding: 90px 0 60px;
  }

  .our_project_sec_1 h1 {
    font-size: 42px;
  }
}


.our_project_sec_2 .project-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  border-radius: 24px;
  background-color: #e8e5df;
}

.our_project_sec_2 .project-image img {
  width: 100%;
  height: clamp(280px, 30vw, 420px);
  object-fit: cover;
  display: block;
}

.our_project_sec_2 .project-content {
  padding: 40px;
}




.our_project_sec_2 h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.4;
}

.our_project_sec_2 .project-category {

  color: #b5935a;
}


@media (max-width: 991px) {
  .our_project_sec_2 .project-wrapper {
    grid-template-columns: 1fr;
  }

  .our_project_sec_2 .project-content {
    padding: 30px 25px;
  }
}


.our_project_sec_3 .project-filter-nav {
  gap: 10px;
  border: 0;
}

.our_project_sec_3 .project-filter-nav .nav-link {
  border-radius: 100px;
  padding: 10px 18px;
  background-color: var(--color-surface);
  color: var(--color-text-secondary);
  border: 0.5px solid var(--color-border);
  transition: 0.3s ease;
  font-size: 14px;
}

.our_project_sec_3 .project-filter-nav .nav-link.active {
  background-color: var(--color-accent);
  color: var(--color-text-on-accent);
  border-color: var(--color-accent);
}

.our_project_sec_3 .project-card {
  text-decoration: none;
}

.our_project_sec_3 .project-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
}

.our_project_sec_3 .project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.our_project_sec_3 .project-card:hover img {
  transform: scale(1.05);
}

.our_project_sec_3 .project-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  opacity: 0;
  transition: 0.4s ease;
  background: linear-gradient(to top,
      rgba(26, 26, 24, 0.82) 0%,
      rgba(26, 26, 24, 0.1) 60%);
}

.our_project_sec_3 .project-card:hover .project-overlay {
  opacity: 1;
}

.our_project_sec_3 .project-overlay .eyebrow {
  color: var(--color-accent-warm);
  margin-bottom: 0;

}

.our_project_sec_3 .project-overlay h3 {
  color: #fafaf8;
  font-style: italic;
  line-height: 1.3;
  font-size: 18px;
  margin-bottom: 0;
}

.our_project_sec_3 .overlay-category {
  color: rgba(250, 250, 248, 0.7);
}

.our_project_sec_3 .project-content {
  padding: 14px 0 8px;
}

.our_project_sec_3 .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our_project_sec_3 .eyebrow-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.our_project_sec_3 .eyebrow-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: currentColor;
  display: inline-block;
}

.our_project_sec_3 .project-content h3 {
  color: var(--color-text-primary);
  transition: 0.3s ease;
  font-family: var(--paragraph-font);

  font-size: 16px;
  margin-bottom: 0;
}


.our_project_sec_3 .project-category {
  color: var(--color-text-muted);
}


.banner_sec .font-body span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


#main_header .navbar .dropdown-menu {
  left: 0;
  right: 0;
}

#main_header .list-unstyled li a {
  padding: inherit;
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
}

#main_header .list-unstyled li a:hover {
  color: #000;
}

.inner_banner_sec {
  height: 70svh;
  display: flex;
  align-items: end;
  position: relative;
}

.inner_banner_sec .container {
  position: relative;
  z-index: 11;
}

.inner_banner_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(26 26 24 / 11%) 0%, rgba(26, 26, 24, 0.342) 40%, rgb(26 26 24 / 59%) 100%);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}


.home_sec_1.inner_service_sec_1 .inner-service-box .pos-img {
  width: 40%;
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 1111111;
}

.home_sec_1.inner_service_sec_1 .inner-service-box .pos-img1 {
  width: 40%;
  position: absolute;
  height:20% !important;
  top: 30%;
  left: 0;
  z-index: 1111111;
} 
.home_sec_1.inner_service_sec_1 .inner-service-box {
  position: relative;
}

.home_sec_1.inner_service_sec_1 .inner-service-box .new-img-2 {
  width: 80%;
  margin-left: auto;
}

.home_sec_1.inner_service_sec_1 .inner-service-box img {
  border-radius: 20px;
}

section.pb-0.download-file {
  text-align: center;
}



section.pb-0.download-file a.btn-new:hover {
  background-color: var(--theme-color);
  color: #fff;
  transition: 0.6s;
}

section.pb-0.download-file a.btn-new {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #000;
  padding: 15px;
  border: 1px solid #9b8234;
  border-radius: 800px;
  margin: 0 auto;
  transition: 0.6s;
}


#main_header {
  z-index: 9999999;
}


a.btn-fit {
  width: fit-content;
}

.inner-service-box-2 img {

  width: 100%;
  object-fit: cover;
  height: 390px;
  object-fit: cover;
  border-radius: 20px;
}


.footer .content a {
  color: #fff;
}

p a {
  color: var(--theme-color-second);
  text-decoration: underline;
}

/* SCROLL ACTIVE MENU COLOR */
.fixed-top.scrolled .header_menu li a {
  color: #000;
}

/* HOVER COLOR */
.header_menu li a:hover {
  color: var(--theme-color-second) !important;
}

.inner_contact_page .contact-rate {
  display: inline-flex;

  align-items: center;
  gap: 5px;
}

.inner_contact_page .contact-rate ul {
  display: flex;
  align-items: center;
  gap: 2px;
  color: orange;
  font-size: 13px;
}

.inner_contact_page .contact-rate span {
  display: inline-flex;

  align-items: center;
  gap: 10px;
}

.inner_contact_page .font-body {
  font-size: 16px;

  line-height: 1.6;
}


@media (max-width: 576px) {
  .inner_contact_page .font-body span {
    display: inline;
    align-items: center;
    gap: 6px;
  }
}



.contact_sec_1 .contact_text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.contact_sec_1 .contact_info_wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact_sec_1 .contact_info_item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.contact_sec_1 .icon_box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_sec_1 .icon_box svg {
  color: #c79a52;
}

.contact_sec_1 .contact_info_item h5,
.contact_sec_1 .contact_info_item h6 {
  margin: 0;
  color: #111;
  transition: 0.3s;
}

.contact_sec_1 .contact_info_item h5 {
  font-size: 20px;
  font-weight: 600;
}

.contact_sec_1 .contact_info_item h6 {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--paragraph-font);
  color: #4a4a46;
}

.contact_sec_1 .contact_info_item span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 4px;
  line-height: 1.6;
}

.contact_sec_1 .contact_info_item:hover h5,
.contact_sec_1 .contact_info_item:hover h6 {
  color: #c79a52;
}

.contact_sec_1 .address_text p {
  margin-bottom: 4px;
  color: #666;
  font-size: 15px;
}

.contact_sec_1 .contact_form_box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact_sec_1 .contact_form_box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
}

.contact_sec_1 .form-control {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.contact_sec_1 .form-control:focus {
  border-color: #c79a52;
  box-shadow: none;
}

.contact_sec_1 textarea.form-control {
  resize: vertical;
}

.contact_sec_1 .form-check-label {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
}

.contact_sec_1 .form-check-input:checked {
  background-color: #c79a52;
  border-color: #c79a52;
}

.contact_sec_1 .submit_btn {
  width: 100%;
  border: 0;
  padding: 15px 20px;
  border-radius: 50px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.contact_sec_1 .submit_btn:hover {
  transform: translateY(-2px);
  background: #c79a52;
}

@media(max-width: 991px) {



  .contact_sec_1 .contact_form_box {
    padding: 30px;
  }

}


.inner_about_page {
  height: 80vh;
  display: flex;
  align-items: end;
  position: relative;
}

.inner_about_page .container{
  position: relative;
  z-index: 11;
}

.inner_about_page::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #150D0A;
background: linear-gradient(180deg,rgba(21, 13, 10, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
left: 0;
}


.our_team {
  background: #f8f7f4;
}




.our_team .team_text {
  max-width: 850px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 50px;
}

.our_team .team_card {
  background: #fff;
  border: 1px solid #D0CDC6;
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  transition: 0.4s ease;
}

.our_team .team_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.our_team .team_icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #D0CDC6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}
.our_team .team_icon span {

  color: #4a4a46;
}

.our_team .team_card h5 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: #111;
    margin-bottom: 0;
    font-family: var(--paragraph-font);
    margin: 0;
}
@media (max-width: 991px) {

  .our_team {
    padding: 70px 0;
  }

  .our_team .team_heading h2 {
    font-size: 38px;
  }

}

@media (max-width: 767px) {

  .our_team .team_heading h2 {
    font-size: 32px;
  }

  .our_team .team_card {
    padding: 25px;
  }

}


.about_sec_2 .about_card{
  background-color: var(--color-bg-secondary);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}

.about_sec_2 .about_number{
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--color-border);
  display: inline-block;
  font-family: var(--heading-font);
}

.about_sec_2 .about_card h3{
  font-size: 30px;
  font-style: italic;
  color: var(--color-text-primary);
  margin: 20px 0;
}

.about_sec_2 .about_card p{
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 767px){

  .about_sec_2 .about_card{
    padding: 30px;
  }

  .about_sec_2 .about_number{
    font-size: 32px;
  }

  .about_sec_2 .about_card h3{
    font-size: 24px;
  }

}



.about_sec_3{
  background-color: var(--color-bg-secondary);
}

.about_sec_3 .about_heading h2{
  color: var(--color-text-primary);
  margin-top: 15px;
}

.about_sec_3 .about_heading h2 em{
  font-style: italic;
}

.about_sec_3 .accreditation_card{
  background-color: var(--color-surface-elevated);
  border: 0.5px solid var(--color-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.about_sec_3 .accreditation_icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about_sec_3 .accreditation_icon i{
  color: var(--color-accent-warm);
  font-size: 14px;
}

.about_sec_3 .accreditation_content h5{
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--color-text-primary);
  font-family: var(--paragraph-font);
}

.about_sec_3 .accreditation_content p{
  font-size: 12px;
  margin-bottom: 0;
  color: var(--color-text-muted);
}
.about_sec_4 .about_heading h2{
  color: var(--color-text-primary);
  margin-top: 15px;
}

.about_sec_4 .about_heading h2 em{
  font-style: italic;
}

.about_sec_4 .about_text{
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 30px 0;
}

.about_sec_4 .about_list{
  padding: 0;
  margin: 0;
  list-style: none;
}

.about_sec_4 .about_list li{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.about_sec_4 .about_list li:last-child{
  margin-bottom: 0;
}

.about_sec_4 .about_list li i{
  color: var(--color-accent-warm);
  font-size: 14px;
  flex-shrink: 0;
}

.about_sec_4 .about_list li span{
  font-size: 15px;
  color: var(--color-text-secondary);
}


.inner_review_page .review_box{
  margin-top: 40px;
}

.inner_review_page .review_rating{
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-text-primary);
  font-family: var(--heading-font);
}

.inner_review_page .review_stars{
  display: flex;
  gap: 4px;
}

.inner_review_page .review_stars i{
  color: var(--color-accent-warm);
  font-size: 18px;
}

.inner_review_page .review_text{
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.inner_review_page .review_link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  font-size: 14px;
  text-decoration: none;
  color: var(--color-text-primary);
  transition: 0.3s;
}

.inner_review_page .review_link .arrow{
  transition: 0.3s;
}

.inner_review_page .review_link:hover{
  color: var(--color-accent-warm);
}

.inner_review_page .review_link:hover .arrow{
  transform: translateX(5px);
}

.review_sec_2 {
  background: var(--color-bg-primary);
}

.review_sec_2 .review_card {
  padding: 32px;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border-subtle);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.4s ease;
  height: 100%;
}

.review_sec_2 .review_card:hover {
  transform: translateY(-6px);
}

.review_sec_2 .review_star i {
  color: var(--color-accent-warm);
  font-size: 15px;
}

.review_sec_2 .review_text {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 30px;
}

.review_sec_2 .review_bottom {
  padding-top: 20px;
  border-top: 1px solid var(--color-border-subtle);
}

.review_sec_2 .review_initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(181, 147, 90, 0.12);
  border: 1px solid rgba(181, 147, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-warm);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.review_sec_2 .review_bottom h6 {
    margin-bottom: 2px;
    font-size: 15px;
    color: var(--color-text-primary);
    font-family: var(--paragraph-font);
}

.review_sec_2 .review_bottom span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
}