@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #020202;
  --primary-color1: #333333;
  --secondary-color: #4a4848;
  /* --secondary-color1		: #d08c27; */
  --secondary-color1: #a87e00;
  --secondary-color2: #083f60;
  --secondary-color3: #c89d49;
  /* --secondary-color3		: #a78e59; */
  --secondary-color4: #c89d49;
  --text-color: #eadec8;
  --arrow-color: #eadec8;
  --accent-color: #ffc107;
  --white-color: #ffffffcf;
  /* --white-color: #ffffff; */
  --divider-color: #eaeaea;
  --dark-divider-color: #ffffff1a;
  --btn-color: #e7f4f9;
  --btn6-color: #efb708;
  --btn1-color: #a78b76;
  --othr-color: #612e11;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a30;
  --cream: #faf6ee;
  --dark: #1a1209;
  --dark2: #2c1f0a;
  --text: #3d2e10;
  --muted: #8a7050;
  --default-font: "Marcellus", serif;
  --default-font1: "Lato", sans-serif;
  --default-font2: "Source Serif 4", serif;
  --default-font3: "Cormorant Garamond";
  /* --default-font3: "Cormorant", serif; */
  /* --accent-font			: "Montserrat", sans-serif; */

  --center-width: 300px;
  --side-width: 200px;
  --gap: 20px;
  --duration: 0.8s;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

/* body {
    font-size: 20px !important;
    background: url("../img/Texturelabs_Paper_234L\ PNG\ 3.png") no-repeat center center fixed;
    background-size: cover; 
} */

body {
  font-size: 20px !important;
  /* background: var(--cream); */
}

html {
  font-size: 100%;
}
a {
  text-decoration: none !important;
}

p {
  line-height: 1.8em;
  margin-bottom: 0px !important;
  margin-top: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--default-font1);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 0px !important;
}

figure {
  margin: 0 !important;
}

/* img{
	max-width: 100%;
} */

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

/* .container{
	max-width: 1320px;
} */

.image-anime {
  position: relative;
  overflow: hidden;
  /* border: 2px solid var(--secondary-color1); */
}
.image-anime img {
  width: 100% !important;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.image-anime:hover {
  border: 2px solid transparent;
}

/* .fade-i {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.fade-i {
  opacity: 0;
  transition:
    opacity 3s ease,
    transform 3s ease;
}

.fade-i.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-anime.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* visibility: hidden; */
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition:
    transform 1s ease-out,
    visibility 0s 0s;
  transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
  transform: translateX(0); /* Move to normal position */
  visibility: visible;
}

.reveal1 {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.reveal1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: right;
  transform: translateX(100%);
  transition: transform 1s ease-out;
  visibility: hidden;
}

.reveal1.show img {
  transform: translateX(0);
  visibility: visible;
}

.header1 {
  width: 100%;
  height: auto;
  z-index: 999;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header.sticky {
  background-size: 100% 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* transform: translateY(0); */
  background: rgba(255, 255, 255, 0.8);
}

header.sticky .navbar-light .navbar-nav .nav-link {
  color: var(--primary-color) !important;
}
/* header.sticky .logo {
  filter: invert(1) brightness(0.1) contrast(2);
} */
header.sticky #primary li a:before {
  background: var(--primary-color);
}
header.sticky .nav-btn-text {
  /* background-image: linear-gradient(to right, #000, #23abd4 50%, #000 50%); */
  color: var(--primary-color) !important;
}
header.sticky .dropdown-toggle::after {
  color: var(--primary-color) !important;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: center !important;
}
.logo {
  color: #fff;
}

.logo-img {
  width: 160px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 90% !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: var(--primary-color) !important;
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
  font-family: var(--default-font3) !important;
  position: relative;
  z-index: 10;
  width: auto;
}
.navbar-light .navbar-nav .nav-link:hover {
  /* background-color: var(--white-color) !important; */
  color: var(--primary-color);
}
.navbar-expand-lg .navbar-nav {
  justify-content: center !important;
}

/* .navbar-light .navbar-nav .nav-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px 60px !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 50px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1) !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  text-transform: capitalize !important;
  transition: background 0.3s ease, color 0.3s ease !important;
} */

.navbar-light .navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  height: 100%;
  /* border: 1px solid var(--primary-color); */
  border-radius: 50px;
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.1); */
  color: var(--white-color);
  text-decoration: none;
}

/* INVISIBLE WIDTH HOLDER */
.nav-btn-spacer {
  visibility: hidden;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
}

/* ANIMATED TEXT */
.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  white-space: nowrap;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text-hover {
  transform: translateY(120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  color: #000 !important;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
  color: var(--white-color) !important;
}
.dropdown-toggle:hover::after {
  color: #000 !important;
}

.nav-btn-text-hover {
  transform: translateY(100%);
  opacity: 0;
}

.nav-link:hover {
  background-color: #fff;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-100%);
  opacity: 0;
  color: var(--primary-color) !important;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Dropdown Menu Styles */
/* Dropdown menu style */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Submenu positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.3rem;
  margin-top: -0.5rem;
  border-radius: 12px;
  display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Dropdown item styling */
.dropdown-item {
  color: #000;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    display: block;
    margin: 0;
    box-shadow: none;
  }
}

.dropdown-toggle::after {
  color: var(--primary-color) !important;
  position: absolute;
  right: 10px;
}

.logo-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--secondary-color3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--default-font);
  border: 1px solid var(--secondary-color3);
}
.logo-btn:hover {
  background-color: var(--secondary-color1);
  color: var(--white-color);
}

/* banner */

/* banner */

/* .ban {
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ban-sec {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: zoomEffect 15s ease-in-out infinite alternate;
  will-change: transform;
  background-image: url(../img/Dynamicviewwithpodium_1.webp);
}

.ban-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 75%
  );
  z-index: 2;
}
.bg-zoom::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: url(../img/banner-bg-shape-1.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 116px;
  z-index: 9;
}

.ban-sec > *:not(.bg-zoom) {
  position: relative;
  z-index: 3;
}

.ban-cont {
  padding-top: 30px;
  padding-bottom: 50px;
}
.ban-btn {
  display: flex;
  gap: 20px;
  justify-content: center;
} */

.title {
  font-size: 60px !important;
  color: var(--primary-color1);
  font-family: var(--default-font3);
  /* text-transform: capitalize; */
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}
.title span {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.sub-head {
  font-size: 16px;
  color: var(--secondary-color3);
  /* font-family: var(--default-font2); */
  font-weight: 500;
  font-style: italic;
  position: relative;
  display: inline-block;
  width: 100%;
  width: fit-content;
  border-radius: 100px;
  margin-bottom: 10px !important;
  font-family: "Cinzel", serif;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.cen {
  display: block;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.para {
  font-size: 85%;
  color: var(--secondary-color);
  font-weight: 500;
  font-family: var(--default-font1);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 26px;
  margin-top: 0px !important;
}

/* .hero-h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 54px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--default-font);
}

.hero-subheading {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--accent-font);
} */

.ban-img {
  width: 100%;
  height: auto;
}

.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

@keyframes fadeUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* extraordinary button */

.extraordinary-btn1 {
  position: relative;
  background: transparent;
  color: var(--white-color);
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--default-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* border-radius: 50px; */
  text-decoration: none;
  border: 2px solid var(--secondary-color3);
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* box-shadow: 0 4px 15px rgba(250, 94, 7, 0.2); */
  background-color: var(--secondary-color1);
}

/* Top-down fill effect */
.extraordinary-btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--dark);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 0 0 50% 50%;
}

/* Arrow icon */
.extraordinary-btn1 i {
  transition: transform 0.4s ease;
}

/* Glow effect */
.extraordinary-btn1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition:
    transform 0.6s,
    opacity 0.4s;
  z-index: -1;
}

/* Hover Effects */
.extraordinary-btn1:hover {
  color: white;
  /* transform: translateY(-5px); */
  /* box-shadow: 0 10px 25px rgba(250, 94, 7, 0.4); */
}

.extraordinary-btn1:hover::before {
  height: 200%;
  border-radius: 0;
}

.extraordinary-btn1:hover i {
  transform: rotate(45deg) scale(1.2);
}

/* Click effect */
.extraordinary-btn1:active {
  transform: translateY(-2px);
}

.extraordinary-btn1:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition:
    transform 0.3s,
    opacity 0.2s;
}

.olpo1 {
  display: flex;
  justify-content: center;
  width: 190px;
  margin: auto;
}

/* ***************** whatsapp icon *****************  */

.whatsapp-float {
  position: fixed;
  right: 20px;
  /* left side */
  bottom: 20px;
  /* distance from bottom */
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #25d366, #128c7e, #075e54, #34b7f1);
  background-size: 300% 300%;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: gradientMove 5s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
  box-shadow: 3px 3px 15px rgba(18, 140, 126, 0.5);
}

/* Bounce animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  /* bounce up 10px */
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background: var(--primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  transition:
    background 0.3s,
    transform 0.3s;
  border: 3px solid #fff;
  animation: bounce 2s infinite;
  /* apply animation */
}

/* ****************** */

.sticky-top::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(332deg, #901007, #113391, #901007);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  content: "";
  left: 0;
  right: 0;

  bottom: 0;
  z-index: 5;
  position: absolute;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Base Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  font-family: var(--default-font1);
}

/* White Variant */
.button.is-white {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-white:hover {
  background-color: #fff;
  color: #000;
}

/* Text Animation */
.button-block {
  position: relative;
  overflow: hidden;
}

.button-text,
.button-text-hover {
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.button:hover .button-text {
  transform: translateY(-100%);
  opacity: 0;
}

.button:hover .button-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Icon Animation */
.button-icon-block {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.button-icon,
.button-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.button:hover .button-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.button:hover .button-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
}

/* banner */

/* .ban-sec {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

.ban-cont {
  color: #fff;
  padding-top: 220px;
} */

.ban-sec {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

.ban-cont {
  color: #fff;
  padding-top: 220px;
  position: relative;
  z-index: 2;
}

.title-ban {
  font-size: 80px;
  line-height: 1.1;
  margin: 15px 0;
}

.ban-cont h5 {
  font-size: 18px;
  letter-spacing: 1px;
}

.loc-icon {
  margin-right: 8px;
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1399px) {
  .title-ban {
    font-size: 68px;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .ban-sec {
    min-height: 600px;
  }

  .ban-cont {
    padding-top: 180px;
    text-align: center;
  }

  .title-ban {
    font-size: 54px;
  }

  .ban-cont h5 {
    font-size: 17px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .ban-sec {
    height: 85vh;
    min-height: 520px;
  }

  .ban-cont {
    padding-top: 150px;
    text-align: center;
  }

  .title-ban {
    font-size: 38px;
    line-height: 1.2;
  }

  .ban-cont h5 {
    font-size: 15px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .ban-sec {
    min-height: 460px;
  }

  .ban-cont {
    padding-top: 130px;
  }

  .title-ban {
    font-size: 30px;
  }

  .ban-cont h5 {
    font-size: 14px;
  }
}

/* icon */

.icn-box {
  position: fixed;
  top: 50%;
  right: -59px;
  transform: rotate(270deg);
  z-index: 999;
  background-color: var(--gold);
  padding: 12px 22px;
  /* border-radius: 8px 8px 0 0; */
}

.icn-box a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--default-font3);
}

/* Mobile Bottom Fixed Bar */
.icn-box1 {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 2147483647 !important;
  background-color: var(--secondary-color3);
}

/* about sec  */

.about-sec {
  padding: 100px 0;
  background: var(--dark);
}

.container {
  max-width: 1460px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* align-items: center; */
}

.counter-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.counter-box h3 {
  font-size: 55px;
  margin-bottom: 5px;
  font-family: var(--default-font);
  font-weight: 500;
  color: var(--white-color);
}

.counter-box span {
  color: var(--gold-dark);
  font-family: var(--default-font3);
  font-size: 20px;
  font-weight: 400;
}

/* Responsive */

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-left h2 {
    font-size: 34px;
  }
}

/* .lux-flex {
  display: flex;
  gap: 20px;
  height: 380px;
}

.lux-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-item.active {
  flex: 2.5;
}

.lux-front,
.lux-back {
  position: absolute;
  inset: 0;
}

.lux-front {
  z-index: 2;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-item.active .lux-front,
.lux-item:hover .lux-front {
  transform: translateX(-100%);
}

.lux-front img,
.lux-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 25px;
  color: #fff;
}

@media (max-width: 992px) {
  .lux-flex {
    height: 300px;
    gap: 15px;
  }

  .lux-item.active {
    flex: 2;
  }
}

@media (max-width: 768px) {
  .lux-flex {
    flex-direction: column;
    height: auto;
  }

  .lux-item {
    height: 240px;
  }

  .lux-item.active {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .lux-item {
    height: 200px;
  }

  .lux-hover {
    padding: 15px;
  }
} */

/* footer */

.lux-footer {
  background: var(--dark);
  padding: 70px 0 40px;
  color: #8a6b3f;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: left;
  font-size: 14px;
}

.footer-grid p,
.footer-grid a {
  color: #8a6b3f;
  line-height: 1.8;
  text-decoration: none;
  font-size: 16px;
  margin-top: 0px !important;
  font-family: var(--default-font1);
}

.social a {
  margin-right: 15px;
  font-size: 18px;
}

.footer-line {
  margin: 60px 0 30px;
  border-top: 1px solid #c8b089;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-family: var(--default-font1);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* card-new  */

.lux-portfolio {
  padding: 0px 0px 80px 0px;
  /* margin-top: 100px; */
  background-color: var(--cream);
}

.lux-flex {
  display: flex;
  gap: 20px;
  height: 400px;
}

/* Card */

.lux-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #eee;
}

/* Active width */

.lux-item.active {
  flex: 2.5;
}

/* Image */

.lux-img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide image */

.lux-item.active .lux-img,
.lux-item:hover .lux-img {
  transform: translateX(-20%);
}

/* Content */

.lux-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -140px;
  background: #fff;
  padding: 18px 22px;
  transition: 0.4s ease;
}

/* Show content */

.lux-item.active .lux-content,
.lux-item:hover .lux-content {
  bottom: 0;
}

/* Subheading */

.lux-sub {
  font-size: 15px;
  /* letter-spacing: 2px; */
  text-transform: uppercase;
  color: var(--secondary-color3);
  font-family: var(--default-font1);
}

/* Title */

.lux-content h3 {
  margin: 6px 0;
  font-size: 24px;
  font-family: var(--default-font3);
  font-weight: 500;
}

/* Description */

.lux-content p {
  margin: 0 0 6px;
  font-size: 16px;
  color: #555;
  font-family: var(--default-font1);
}

.lux-content a {
  text-decoration: none;
  border-bottom: 1px solid #000;
  color: var(--primary-color);
  font-size: 16px;
}

/* Responsive */

@media (max-width: 768px) {
  .lux-flex {
    flex-direction: column;
    height: auto;
  }

  .lux-item {
    height: 280px;
  }

  .lux-item.active {
    flex: 1;
  }
}

.lux-flex {
  display: flex;
  gap: 20px;
  height: 500px;
}

/* IMAGE WRAPPER */

.lux-img-wrap {
  height: 70%;
  overflow: hidden;
  position: relative;
}

.lux-img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide image */

.lux-item.active .lux-img,
.lux-item:hover .lux-img {
  transform: translateX(-20%);
}

/* CONTENT AREA */

.lux-content {
  height: 30%;
  padding: 18px 22px;
  background: #fff;
  transition: 0.3s;
}

/* Responsive */

@media (max-width: 768px) {
  .lux-flex {
    flex-direction: column;
    height: auto;
  }

  .lux-item {
    flex: 1 !important;
  }

  .lux-img-wrap {
    height: 250px;
  }
}

.lux-marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--cream);
}

.lux-track {
  display: inline-block;
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--dark2); /* light luxury tone */
  animation: luxScroll 25s linear infinite;
  font-family: var(--default-font3);
}

/* animation */

@keyframes luxScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* responsive */

@media (max-width: 768px) {
  .lux-track {
    font-size: 48px;
  }
}

/*  */
.story-wrap {
  padding: 100px 0px 100px 0px;
  /* background: #faf8f3; */
  background: var(--dark);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT IMAGE */
.story-left {
  position: relative;
}

.gvf img {
  width: 100%;
  /* height: 520px; */
  object-fit: cover;
}

/* RIGHT SIDE */

.story-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Bottom image */

.st-img img {
  width: 100%;
  /* height: 520px; */
  object-fit: cover;
}

/* Responsive */

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-right {
    gap: 40px;
  }

  .story-left img,
  .story-image img {
    height: auto;
  }

  .story-text h2 {
    font-size: 30px;
  }
}

.circle-wrap {
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: 315px;
  right: -70px;
}

/* IMAGE */

.main-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* ROTATING TEXT */

.circle-text {
  position: absolute;
  inset: 0;
}

.circle-text svg {
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}

.circle-text text {
  font-size: 16px;
  letter-spacing: 3px;
  fill: var(--white-color);
  font-family: var(--default-font);
  font-weight: 600;
}

/* Rotation */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gvf {
  position: relative;
}

/* gjvgj */

.office-section-full {
  width: 100%;
  min-height: auto;
  position: relative;
  /* padding: 100px 40px 0px 40px; */
  /* border-radius: 16px; */
}

.office-bg {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  overflow: hidden;
  padding: 80px 0px;
  /* border-radius: 16px; */
}

/* IMAGE */
.office-image-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}
.office-image-full img.active {
  opacity: 1;
}

/* LEFT CARD */
.office-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  /* margin-left: 80px;
  margin-top: 80px; */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* HEADING */
.heading {
  margin-bottom: 20px;
}
.heading h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-family: var(--default-font);
  font-weight: 500;
}

/* TABS */
.office-tab {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  cursor: pointer;
}
.tab-top {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-family: var(--default-font3);
  font-size: 18px;
}
.tab-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s;
}
.office-tab.active .tab-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}
.office-tab .arrow {
  /* transition: .4s; */
  color: var(--white-color);
  background-color: var(--dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.4s,
    background-color 0.4s,
    border-color 0.4s,
    transform 0.4s;
  display: flex;
}
.office-tab.active .arrow {
  transform: rotate(90deg);
}

/* testimonial */

.pro-testimonial {
  padding: 100px 0;
  background: var(--cream);
  /* background: var(--dark); */
  overflow: hidden;
}

.pro-marquee {
  overflow: hidden;
}

.pro-track {
  display: flex;
  gap: 25px;
  animation: scroll 20s linear infinite;
  margin-top: 50px;
}

.pro-marquee:hover .pro-track {
  animation-play-state: paused;
}

/* Card */

.pro-card {
  min-width: 320px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* light / dark */

.pro-card.light {
  background: #fff;
}

.pro-card.dark {
  background: var(--dark2);
  color: #fff;
}
.pro-card.dark .user h4 {
  color: #fff;
}

/* Quote */

.quote {
  font-size: 40px;
  color: var(--secondary-color1);
}

/* Text */

.pro-card p {
  line-height: 1.6;
  font-size: 15px;
}

/* Stars */

.stars {
  color: #ffc107;
  margin: 10px 0;
}

.stars.white {
  color: #fff;
}

/* User */

.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user h4 {
  margin: 0;
  font-size: 15px;
}

.user small {
  opacity: 0.7;
}

/* Animation */

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */

@media (max-width: 768px) {
  .pro-card {
    min-width: 260px;
  }
}

/* gallery */

.image-gallery {
  /* background: #f3efe9; */
  background: var(--cream);
  padding: 100px 0;
  overflow: hidden;
}

/* FULL WIDTH ROW */

.row.row-full {
  /* margin-left: -100px;
  margin-right: -100px; */
  overflow: hidden;
  position: relative;
}

/* TOP FADE */

.row.row-full:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12%;
  background: linear-gradient(180deg, #f3efe9, transparent);
  z-index: 2;
}

/* BOTTOM FADE */

.row.row-full:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12%;
  background: linear-gradient(0deg, #f3efe9, transparent);
  z-index: 2;
}

/* COLUMN */

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp 18s linear infinite;
}

/* different speeds */

.col2 {
  animation: scrollDown 22s linear infinite;
}

.col3 {
  animation-duration: 20s;
}

/* PAUSE ON HOVER */

.gallery-column:hover {
  animation-play-state: paused;
}

/* IMAGE */

.gallery-column img {
  width: 100%;
  border-radius: 12px;
  transition: 0.35s ease;
}

.gallery-column img:hover {
  transform: scale(1.05);
}

/* ANIMATIONS */

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .gallery-column {
    animation: none;
  }

  .row.row-full {
    margin-left: 0;
    margin-right: 0;
  }
}

.reviews-admin {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
}
.reviews-admin img {
  border-radius: 50%;
}
.reviews-admin h5 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 3px;
  font-family: var(--default-font2);
  font-weight: 700;
}
.reviews-admin span {
  font-size: 17px;
  font-family: var(--default-font2);
}
.reviews + .reviews {
  margin-top: 18px;
}
.reviews {
  background-color: #fff;
  padding: 40px;
  border-radius: 30px;
  position: relative;
}
.reviews p {
  font-size: 18px;
  color: #666;
  font-family: var(--default-font2);
  font-weight: 400;
}
.reviews ul.star {
  color: #b4b4b4;
  position: absolute;
  top: 40px;
  right: 30px;
  font-size: 14px;
}
.row.row-full {
  /* margin-left: -100px;
  margin-right: -100px; */
  overflow: hidden;
  position: relative;
}
.row.row-full:before {
  content: "";
  width: 100%;
  height: 10%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(
    360deg,
    rgb(243 239 233) 0%,
    hsl(0deg 29.41% 93.33% / 0%) 100%
  );
  z-index: 1111;
}
.row.row-full:after {
  content: "";
  width: 100%;
  height: 10%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(
    360deg,
    rgb(243 239 233 / 0%) 0%,
    hsl(36deg 29.41% 93.33%) 100%
  );
  z-index: 1111;
}
.reviews-full {
  animation: marqueeTop 50s linear infinite;
  height: 550px;
}
.reviews-full.two {
  animation: marqueeBottom 45s linear infinite;
}
@keyframes marqueeTop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes marqueeBottom {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* 24. marquee */
.marquee-icon,
.marquee-box-one {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.marquee-content {
  animation: scroll-one 50s linear infinite;
}
@keyframes scroll-one {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-content {
  display: flex;
}
.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
}
.marquee-item {
  width: 200px;
  margin-left: 60px;
}
.marquee img {
  width: 250px !important;
  max-width: max-content;
}
.marquee-icon {
  margin-top: 30px;
  padding-top: 120px;
  border-top: 1px solid #c8c8c8;
}

/* contact  */

.contact-section {
  padding: 100px 0px 100px 0px;
  /* background: #f7f7f7; */
  background: var(--cream);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT SIDE */
/* .contact-left h2 {
  font-size: 38px;
  margin-bottom: 15px;
} */

.social-icons {
  display: flex;
  gap: 15px;
  margin: 25px 0 20px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  text-decoration: none;
  color: var(--white-color);
  font-weight: bold;
}
.social-icons a:hover {
  background-color: var(--gold);
}

.more-details h4 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: var(--default-font);
  font-weight: 500;
}

.contact-card {
  background: var(--white-color);
  border-radius: 18px;
  margin-top: 20px;
  padding: 60px 40px;
}

/* RIGHT FORM */
.contact-right h3 {
  font-size: 32px;
  margin-bottom: 8px;
  font-family: var(--default-font3);
  font-weight: 500;
}

.contact-form {
  margin-top: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: var(--default-font3);
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 15px;
  border: none;
  /* background: #f6f6f6; */
  background: var(--gold);
  font-size: 14px;
  outline: none;
  color: var(--white-color);
}
/* Placeholder color white */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-color);
}

.form-group textarea {
  height: 120px;
  border-radius: 18px;
  resize: none;
}

.submit-btn {
  background: #111;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 767.78px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.responsive-map {
  overflow: hidden;
  padding-bottom: 40.25%;
  position: relative;
  height: 0;
}
.responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.contact-left {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.responsive-map {
  flex: 1;
  margin-top: 40px;
}

.responsive-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* make row equal height */

.contact-section .row {
  align-items: stretch;
}

/* modal */

/* Modal Background Card */

.enquiry-modal {
  background: #c9a14a;
  border-radius: 18px;
  padding: 30px;
  color: #fff;
  position: relative;
}

/* Header */

.modal-header {
  position: relative;
  padding-bottom: 10px;
}

.modal-header h4 {
  font-weight: 500;
  margin: 0 auto;
}

/* Close Button */

.lux-close {
  position: absolute;
  top: -31px;
  right: -32px;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lux-close:hover {
  background: #fff;
  color: #c9a14a;
}

/* Subtitle */

.modal-subtitle {
  font-size: 16px;
  opacity: 0.9;
  font-family: var(--default-font1);
  margin-top: 0px;
}

/* Inputs */

.luxury-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 0;
  margin-bottom: 10px;
  color: #fff;
  outline: none;
  font-family: var(--default-font3);
}

.luxury-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.luxury-input:focus {
  border-color: #fff;
}

/* Submit Button */

.lux-submit-btn {
  width: 100%;
  background: #fff;
  color: #c9a14a;
  border: 0;
  padding: 12px;
  border-radius: 0px;
  font-weight: 500;
  transition: 0.3s;
}

.lux-submit-btn:hover {
  background: var(--secondary-color1);
  color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
  .enquiry-modal {
    padding: 20px;
  }
}

/* new service */

/* ── SECTION WRAPPER ── */
.services-section {
  position: relative;
  padding: 80px 20px 100px;
  overflow: hidden;
  background: var(--cream);
}

/* Decorative background pattern */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* ── HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.section-tag {
  font-family: "Cinzel", serif;
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 20px;
}
.start {
  justify-content: start;
  width: auto;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider-line.right {
  background: linear-gradient(to left, transparent, var(--gold));
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── MAIN CONTENT LAYOUT ── */
.services-layout {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 30px 80px rgba(26, 18, 9, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

/* ── IMAGE SIDE ── */
.services-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.services-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.services-image-wrap:hover img {
  transform: scale(1.04);
}

/* Gold overlay gradient */
.services-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 18, 9, 0.35) 0%,
    rgba(201, 168, 76, 0.1) 60%,
    rgba(26, 18, 9, 0.2) 100%
  );
}

/* Image caption badge */
.image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: rgba(26, 18, 9, 0.75);
  border: 1px solid var(--gold);
  padding: 10px 20px;
  backdrop-filter: blur(6px);
}

.image-badge span {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ── SERVICES LIST SIDE ── */
.services-list-wrap {
  background: var(--dark);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern inside dark panel */
.services-list-wrap::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  transform: rotate(45deg);
  pointer-events: none;
}

.services-list-wrap::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.list-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.list-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.5), transparent);
}

.services-list {
  list-style: none;
  position: relative;
  z-index: 1;
  padding-left: 0px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 0.5s forwards;
}

.services-list li:last-child {
  border-bottom: none;
}

/* stagger animation */
.services-list li:nth-child(1) {
  animation-delay: 0.05s;
}

.services-list li:nth-child(2) {
  animation-delay: 0.12s;
}

.services-list li:nth-child(3) {
  animation-delay: 0.19s;
}

.services-list li:nth-child(4) {
  animation-delay: 0.26s;
}

.services-list li:nth-child(5) {
  animation-delay: 0.33s;
}

.services-list li:nth-child(6) {
  animation-delay: 0.4s;
}

.services-list li:nth-child(7) {
  animation-delay: 0.47s;
}

.services-list li:nth-child(8) {
  animation-delay: 0.54s;
}

.services-list li:nth-child(9) {
  animation-delay: 0.61s;
}

.services-list li:nth-child(10) {
  animation-delay: 0.68s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.service-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
}

.service-text {
  font-family: "Lato", sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(250, 246, 238, 0.88);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.service-text strong {
  display: block;
  font-weight: 400;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* ── BOTTOM ACCENT ── */
.services-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
}

.services-footer p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-image-wrap {
    min-height: 280px;
  }

  .services-list-wrap {
    padding: 36px 28px;
  }
}

/* gallery */

/* ── SECTION ── */
.image-gallery {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Background texture */
.image-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 100%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* Decorative corner lines */
.image-gallery::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 120px;
  height: 120px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.corner-br {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

/* .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
} */

/* ── HEADER ROW ── */
.gallery-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.gallery-desc {
  font-family: "Jost", sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.6);
  line-height: 1.85;
  padding-top: 10px;
}

/* ── MASONRY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

/* Individual items */
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}

/* Varied heights for masonry feel */
.gallery-item:nth-child(1) {
  grid-row: span 2;
}
.gallery-item:nth-child(5) {
  grid-row: span 2;
}
.gallery-item:nth-child(8) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
  filter: brightness(0.88) saturate(0.9);
}

/* Overlay */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(16, 14, 10, 0) 40%,
    rgba(201, 168, 76, 0.18) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Gold border reveal on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 168, 76, 0.6);
  z-index: 2;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Zoom icon */
.gallery-item .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  background: rgba(16, 14, 10, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item .zoom-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

/* Caption */
.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px 16px;
  background: linear-gradient(
    to top,
    rgba(16, 14, 10, 0.85) 0%,
    transparent 100%
  );
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item .caption span {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold2);
  text-transform: uppercase;
}

/* ── HOVER STATES ── */
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover .caption {
  transform: translateY(0);
}

/* ── FADE IN ANIMATION ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  animation: fadeUp 0.6s ease both;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.05s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.12s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.19s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.26s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.33s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.47s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.54s;
}
.gallery-item:nth-child(9) {
  animation-delay: 0.61s;
}

/* ── VIEW ALL BUTTON ── */
.gallery-cta {
  text-align: center;
  margin-top: 56px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--default-font3);
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary-color1);
  text-decoration: none;
  border: 1px solid var(--secondary-color1);
  padding: 14px 28px;
  position: relative;
  overflow: hidden;
  transition:
    color 0.35s ease,
    border-color 0.35s ease;
}
.wht {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}
.sticky .wht {
  border: 1px solid var(--secondary-color1);
  color: var(--secondary-color1);
}

.btn-view::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

.btn-view:hover::before {
  transform: scaleX(1);
}
.btn-view:hover {
  color: var(--dark);
  border-color: var(--gold);
}

.btn-view span,
.btn-view svg {
  position: relative;
  z-index: 1;
}

.btn-view svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.btn-view:hover svg {
  transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-row: span 1;
  }
  .gallery-item:nth-child(5) {
    grid-row: span 1;
  }
  .gallery-item:nth-child(8) {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .image-gallery {
    padding: 60px 0 80px;
  }
}

.modal-backdrop.show {
  opacity: 0 !important;
}
.modal-backdrop {
  z-index: auto !important;
}

/* hjvgjvj */

/* faq */
.mid {
  padding: 100px 0px;
}
.faq {
  padding: 100px 0px 100px 0px;
  position: relative;
  background-color: var(--white-color);
  z-index: 2;
}
div#accordion {
  margin-top: 30px;
}

.faqs-image-box {
  position: relative;
}

.faqs-image figure {
  display: block;
  border-radius: 20px;
}

.faqs-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.4;
  object-fit: cover;
  border-radius: 20px;
}

.faqs-cta-box-item p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
  color: var(--white-color);
  font-size: 16px;
}

.faqs-cta-box-item p a:hover {
  color: var(--primary-color);
}

.faqs-content {
  margin-left: 15px;
  margin-top: 40px;
}

.faq-accordion .accordion-item {
  background: #f6f6f7;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35em;
  background-color: transparent;
  color: var(--secondary-color1);
  padding: 22px 55px 22px 25px;
  transition: all 0.3s ease-in-out;
  font-family: var(--default-font);
}

.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.faq-accordion
  .accordion-item:last-child
  .accordion-header
  .accordion-button.collapsed {
  border-bottom: none;
}

.faq-accordion .accordion-item .accordion-button {
  padding-left: 55px; /* icon জায়গা দেওয়ার জন্য */
  padding-right: 20px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "+";
  font-family: "Font Awesome 7 Free";
  position: absolute;
  left: 20px; /* 🔥 LEFT side */
  top: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-50%);
  border: 2px solid var(--secondary-color1);
  color: var(--secondary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  /* no animation needed? keep or remove */
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.faq-accordion .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  padding: 25px;
}

.faq-accordion .accordion-item .accordion-body p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--default-font);
}
span.tdt {
  padding-left: 6px;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.fa-whatsapp {
  color: #25d366;
}
.luxury-input1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 0;
}

/* REMOVE SELECT BORDER */

.luxury-input1 select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;

  padding-right: 30px;
}

/* OPTION STYLE */

.luxury-input1 select option {
  color: #000;
  background: #fff;
}
/* .luxury-input1 select option {
  padding-left: 20px !important;
} */

.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.user {
  display: flex;
  align-items: center;
  gap: 14px;
}
