/* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Intro Video css
09. Our Portfolio css
10. Our Package css
11. Wedding Gallery css
12. Our FAQs css
13. Our Testimonials css
14. Cta Box css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Portfolio Page css
23. Portfolio Single css
24. Team Page css
25. Team Single css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQ's Page css
30. Contact Us Page css
31. 404 Error Page css
32. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #ffffff;
  --secondary-color: #ffffff0a;
  --bg-color: #080808;
  --text-color: #ffffffcc;
  --accent-color: #ddb15f;
  --white-color: #ffffff;
  --divider-color: #ffffff1a;
  --dark-divider-color: #ffffff00;
  --error-color: rgb(230, 87, 87);
  --default-font: "Mona Sans", sans-serif;
  --accent-font: "Playfair Display", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background-color: var(--bg-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

::selection {
  color: var(--black-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin: 0;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

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

.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;
}

.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;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters>* {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--bg-color);
  background: var(--accent-color);
  border-radius: 8px;
  padding: 17px 59px 17px 24px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-color: var(--white-color);
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  background-color: var(--accent-color);
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: #00000036;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.readmore-btn {
  position: relative;
  display: inline-block;
  line-height: normal;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--white-color);
  padding: 2px 36px 2px 0;
  transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  width: 26px;
  height: 26px;
  background-color: var(--accent-color);
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px auto;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 2px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.light-section {
  background-color: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.section-row {
  margin-bottom: 50px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 30px;
  /* border: 2px solid #b1751e;
	padding: 100px;
	background: #0a0600ab;
	border-radius: 25px; */
}

.section-sub-heading .section-sub-title,
.section-title .section-sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #fff;

  /* Golden Metallic Gradient */
  background: linear-gradient(90deg,
      #d89b2d 0%,
      #c68522 35%,
      #a86a1a 70%,
      #8d5a17 100%);

  border-radius: 100px;
  padding: 10px 18px 10px 18px;
  margin-bottom: 15px;
  overflow: hidden;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 12px rgba(141, 90, 23, 0.25);
}

/* Glossy top highlight */
.section-sub-heading .section-sub-title::before,
.section-title .section-sub-title::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 8px;
  right: 8px;
  height: 45%;
  border-radius: 100px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* .section-sub-heading .section-sub-title::before,
.section-title .section-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 5px;
	height: 5px;
} */

.section-sub-heading .section-sub-title,
.section-title.section-sub-heading,
.section-title.section-sub-heading .section-sub-title {
  margin-bottom: 0;
}

.light-section .section-sub-heading .section-sub-title,
.light-section .section-title .section-sub-title {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.section-title h1 {
  font-size: 76px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 46px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h1 span,
.section-title h2 span {
  font-family: var(--accent-font);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  -webkit-text-stroke: 1.5px #c8891f;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	    03. Header css		 ****/
/************************************/

header.main-header {
  position: absolute;
  top: 30px;
  left: 15px;
  right: 15px;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  max-width: 1300px;
  top: 0;
  border: 1px solid var(--divider-color);
  background: #fff8f5;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  margin: 0 auto;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 15px;
  left: 15px;
  right: 15px;
  transform: translateY(0);
}

.navbar {
  padding: 15px 0px;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 0.042vw;
}

.main-menu .nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 10px;
  position: relative;
}

.main-menu ul li a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
  padding: 12px 1px !important;
  color: #000;
  background: transparent;
  border-radius: 0px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: #d29329;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 14px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--bg-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.header-btn {
  line-height: 0;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  position: relative;
  top: 0;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--bg-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 6px 20px;
  color: var(--bg-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--white-color);
}

.slicknav_menu ul ul li a {
  padding: 6px 20px 6px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  position: absolute;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
  color: var(--bg-color);
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--white-color);
}

/************************************/
/*** 	     04. Hero css	      ***/
/************************************/

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  background: url("../images/hero-bg-image.jpg") center/cover no-repeat;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: flex-end;
  /* padding: 230px 0 60px; */
  overflow: hidden;
  padding-top: 350px;
  border-bottom: 1px solid #6950198a;
}

/* Overlay */
.hero::before,
.hero.hero-slider-layout .hero-image-slider .hero-slider-img figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center,
      rgba(212, 160, 23, 0.12) 0%,
      rgba(0, 0, 0, 0.54) 35%),
    linear-gradient(180deg,
      rgba(8, 8, 8, 0.45) 0%,
      rgba(32, 18, 55, 0.28) 25%,
      rgba(8, 8, 8, 0.3) 55%,
      rgba(8, 8, 8, 0.65) 100%);
  z-index: 1;
}

.hero.hero-slider-layout {
  background: none;
}

.hero.hero-slider-layout::before {
  display: none;
}

/* Slider */

.hero.hero-slider-layout .hero-image-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-slider-layout .swiper,
.hero.hero-slider-layout .hero-slider-img,
.hero.hero-slider-layout .hero-slider-img figure {
  height: 100%;
}

.hero.hero-slider-layout .hero-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Video */

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

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

/* Content */

.hero .container {
  position: relative;
  z-index: 2;
  transform: translateY(-120px);
}

/* =========================
   TYPOGRAPHY
========================= */

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 25px 0;
}

.hero-title span,
.hero-content .section-title h1 span {
  font-family: var(--accent-font);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  -webkit-text-stroke: 1.5px #c8891f;
}

.hero-desc {
  max-width: 850px;
  margin: 0 auto 35px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================
   BUTTONS
========================= */

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border: 2px solid #c9c9c3;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #d4a017;
  color: #111;
}

/* =========================
   FEATURE STRIP
========================= */

.hero-content-list {
  margin-top: 35px;
  padding: 22px 30px;
  border-radius: 20px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.75) 40%,
      rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(6px);
  border: 2px solid #ebb93469;
}

.hero-content-list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-content-list li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
  position: relative;
}

.hero-content-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(212, 160, 23, 0.65);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7e8a3;
  font-size: 22px;
  border: 2px solid #d4a017;
  background: radial-gradient(circle, #2b1a00 0%, #000 100%);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.35);
  flex-shrink: 0;
}

.feature-text h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
}

.feature-text p {
  color: #ddd;
  font-size: 15px;
  margin: 4px 0 0;
  line-height: 1.2;
}

/* =========================
   RESPONSIVE
========================= */

/* Laptop */

@media (max-width: 1199px) {
  .hero {
    min-height: 820px;
    padding: 200px 0 50px;
  }

  .hero .container {
    transform: translateY(-80px);
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-desc {
    font-size: 18px;
    max-width: 760px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .hero {
    min-height: 760px;
    padding: 170px 0 40px;
  }

  .hero .container {
    transform: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-desc {
    font-size: 17px;
    max-width: 650px;
  }

  .hero-content-list {
    padding: 20px;
  }

  .hero-content-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-content-list li {
    padding: 0;
  }

  .hero-content-list li::after {
    display: none;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 14px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 700px;
    padding: 140px 0 30px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .hero-btns {
    gap: 12px;
  }

  .btn-outline,
  .btn-default {
    width: 100%;
    max-width: 180px;
    justify-content: center;
  }

  .hero-content-list ul {
    grid-template-columns: 1fr;
  }

  .hero-content-list {
    padding: 18px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .feature-text h4 {
    font-size: 15px;
  }

  .feature-text p {
    font-size: 13px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .hero {
    min-height: 640px;
    padding-top: 120px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 14px;
  }
}

/* .hero-content-list ul {
	display: flex;
	justify-content: center;
	gap: 35px;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero-content-list li {
	color: #fff;
	font-size: 17px;
	display: flex;
	align-items: center;
}

.hero-content-list li:before {
	content: "✓";
	width: 28px;
	height: 28px;
	background: #D4A017;
	color: #111;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-right: 10px;
	font-size: 14px;
} */

/* .hero-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
	text-align: center;
}

.hero-content .section-title {
	width: 100%;
	margin-bottom: 0;
}

.book-your-date-circle {
	width: calc(22% - 15px);
	text-align: end;
}

.book-your-date-circle a {
	display: inline-block;
	border-radius: 50%;
}

.book-your-date-circle a img {
	width: 100%;
	max-width: 200px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.book-your-date-circle a:hover img {
	animation-play-state: paused;
}

.hero-content-list {
	border-top: 1px solid var(--divider-color);
	padding-top: 50px;
	margin-top: 50px;
}

.hero-content-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 60px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.hero-content-list ul li {
	position: relative;
	width: calc(25% - 45px);
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 25px;
}

.hero-content-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.hero-content-list ul li::after {
	content: ' ';
	position: absolute;
	top: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.hero-content-list ul li:last-child:after {
	display: none;
} */

/************************************/
/***       05. About us css       ***/
/************************************/

.about-core-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 167, 58, 0.18);
  border-radius: 12px;
  padding: 32px 24px;
  margin: 0px 0;
}

.about-core-box h4,
.about-one-liner h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-core-box p,
.about-one-liner p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 0;
}

.about-one-liner {
  margin-bottom: 25px;
}

.about-one-liner strong {
  color: #fff;
}

.about-us {
  padding: 100px 0;
  border-bottom: 1px solid #6950198a;
}

.about-us-image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-right: 15px;
}

.about-us-image-box-1 {
  position: relative;
  width: 68%;
  padding: 0 0 40px 55px;
  margin-bottom: 60px;
  z-index: 1;
}

.about-us-image-box-1 .about-us-image figure {
  display: block;
  border-radius: 120px;
}

.about-us-image-box-1 .about-us-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.335;
  object-fit: cover;
  border-radius: 120px;
  border: 2px solid #ddb15f;
}

.about-image-title-box {
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: 0;
}

.about-image-title-box svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.about-image-title-box text {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  fill: var(--primary-color);
}

.about-us-image-box-2 {
  width: 32%;
}

.about-us-image-box-2 .about-us-image {
  position: relative;
  margin-left: -135px;
}

.about-us-image-box-2 .about-us-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-35%, -90%);
  background: url("../images/about-image-box-bg-image.png") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 125px;
  height: 150px;
}

.about-us-image-box-2 .about-us-image figure {
  position: relative;
  display: block;
  border: 10px solid var(--bg-color);
  border-radius: 170px;
  z-index: 1;
}

.about-us-image-box-2 .about-us-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.435;
  object-fit: cover;
  border-radius: 160px;
  border: 2px solid #ddb15f;
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.about-us-body-content {
  width: calc(50% - 15px);
}

.about-us-body-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-us-body-list ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.about-us-body-list ul li:last-child {
  margin-bottom: 0;
}

.about-us-body-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.about-body-btn {
  /* border-top: 1px solid var(--divider-color); */
  padding-top: 30px;
  margin-top: 0px;
}

.about-us-counter-box {
  background: url("../images/about-us-counter-box-bg-image.png") var(--secondary-color) no-repeat;
  background-position: bottom -10px left -10px;
  background-size: 95px auto;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  padding: 30px;
  overflow: hidden;
  background-color: #ddb15f3b;
}

.about-us-counter-box {
  width: calc(45% - 15px);
}

.about-us-counter-content h2 {
  font-size: 40px;
}

.about-us-counter-content p {
  position: relative;
  margin: 5px 0 0;
  z-index: 2;
}

.about-us-counter-image figure {
  display: block;
  max-width: 160px;
  border-radius: 14px;
  margin: -10px -10px -60px auto;
}

.about-us-counter-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.17;
  object-fit: cover;
  border-radius: 14px;
}

/************************************/
/*** 	  06. Our Services css	  ***/
/************************************/

:root {
  --svc-bg: #050505;
  --svc-card-bg: #0c0c11;
  --svc-card-border: rgba(255, 255, 255, 0.06);
  --svc-accent: #d8a54a;
  --svc-accent-light: #f6d37a;
  --svc-text: #a7a7a7;
  --svc-radius: 24px;
  --svc-radius-sm: 20px;
  --svc-transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Section Wrapper ---------- */
.our-services {
  padding: 100px 0;
  background: #120e08;
  border-bottom: 1px solid #6950198a;
}

/* ---------- Card Base ---------- */
.service-card {
  position: relative;
  background: var(--svc-card-bg);
  border-radius: var(--svc-radius);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 17%);
  transition: var(--svc-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hover lift & border */
.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(200, 137, 31, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* ---------- Media Area ---------- */
.service-card__media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__media-link {
  display: block;
  text-decoration: none;
}

.service-card__media .image-anime {
  margin: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 4 / 2.2;
  object-fit: cover;
  display: block;

  /* Performance */
  /* transform: translateZ(0); */
  /* backface-visibility: hidden; */
  /* will-change: transform; */

  transition: transform 0.45s ease;
}

/* Hover */
.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

/* Gradient overlay */
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(0, 0, 0, 0.2) 70%,
      rgb(0 0 0 / 54%) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ---------- Index Number ---------- */
.service-card__index {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: -0.02em;
  z-index: 2;
  transition: color 0.4s ease;
  pointer-events: none;
}

.service-card:hover .service-card__index {
  color: rgba(216, 165, 74, 0.35);
}

/* ---------- CTA Button ---------- */
.service-card__cta {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 20px;
  border-radius: 50px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--svc-accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
  transition: all 0.35s ease;
  overflow: hidden;
}

.service-card__cta-label {
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.service-card__cta i {
  position: relative;
  z-index: 1;
  font-size: 13px;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

/* CTA hover */
.service-card:hover .service-card__cta {
  background: var(--svc-accent);
  border-color: var(--svc-accent);
  color: #111;
  padding-right: 20px;
}

.service-card:hover .service-card__cta i {
  transform: rotate(45deg);
  color: #111;
}

/* ---------- Body Content ---------- */
.service-card__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Tag */
.service-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(200, 137, 31, 0.12);
  color: var(--svc-accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  /* text-transform: uppercase; */
  margin-bottom: 14px;
  position: relative;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  font-family: var(--accent-font);
  font-style: italic;
}

.service-card__tag::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--svc-accent);
  margin-right: 8px;
  vertical-align: middle;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover .service-card__tag {
  background: rgba(200, 137, 31, 0.2);
}

.service-card:hover .service-card__tag::before {
  background: var(--svc-accent-light);
  box-shadow: 0 0 10px rgba(246, 211, 122, 0.6);
}

/* Title */
.service-card__title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.service-card__title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  background-image: linear-gradient(var(--svc-accent-light),
      var(--svc-accent-light));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition:
    color 0.3s ease,
    background-size 0.4s ease;
}

.service-card:hover .service-card__title a {
  color: var(--svc-accent-light);
  background-size: 100% 2px;
}

/* Description */
.service-card__text {
  color: var(--svc-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Hover Glow (radial) ---------- */
.service-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(circle at 50% 0%,
      rgba(216, 165, 74, 0.08) 0%,
      transparent 70%);
}

.service-card:hover .service-card__glow {
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .our-services {
    padding: 80px 0;
  }

  .service-card__body {
    padding: 20px;
  }

  .service-card__title {
    font-size: 21px;
  }

  .service-card__index {
    font-size: 34px;
  }

  .service-card__cta {
    padding: 8px 14px 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .our-services {
    padding: 60px 0;
  }

  .service-card {
    border-radius: var(--svc-radius-sm);
  }

  .service-card__title {
    font-size: 19px;
  }

  .service-card__text {
    font-size: 14px;
  }

  .service-card__cta {
    padding: 7px 12px 7px 14px;
    font-size: 11px;
    gap: 6px;
  }

  .service-card__cta i {
    font-size: 11px;
  }

  .service-card__index {
    font-size: 28px;
    top: 14px;
    left: 14px;
  }

  .service-card__cta {
    bottom: 14px;
    right: 14px;
  }
}

/* .our-services {
	padding: 100px 0;
}

.service-item {
	background-color: var(--secondary-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
	transition: all 0.4s ease-in-out;
	border: 1px solid #694a15;
}

.service-item:hover {
	transform: translateY(-5px);
	border: 1px solid #c78c29;
}

.service-item-header {
	padding: 20px;
	margin-bottom: 10px;
}

.service-item-header .icon-box {
	margin-bottom: 30px;
}

.service-item-header .icon-box img {
	width: 100%;
	max-width: 50px;
}

.service-item-content h2 {
	font-size: 18px;
}

.service-item-content h2 a {
	color: inherit;
}

.service-item-content p {
	margin: 10px 0 0;
}

.service-item-image {
	position: relative;
}

.service-item-image a {
	display: block;
	cursor: none;
	border-radius: 10px;
	overflow: hidden;
}

.service-item-image figure {
	display: block;
}

.service-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.522;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.service-item:hover .service-item-image figure img {
	transform: scale(1.04);
} */

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.section-footer-text p {
  color: var(--primary-color);
  margin: 0 0 15px;
}

.section-footer-text p span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent-color);
  color: var(--bg-color);
  line-height: 1em;
  padding: 4px 10px;
  border-radius: 14px;
  margin-right: 10px;
}

.section-footer-text p a {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--primary-color);
}

.section-footer-text ul {
  width: 100%;
  padding: 0;
  margin: 0 0 15px;
  list-style: none;
}

.section-footer-text p:last-child,
.section-footer-text ul:last-child {
  margin: 0;
}

.section-footer-text ul li {
  display: inline-block;
  font-weight: 600;
  line-height: normal;
  color: var(--primary-color);
  margin-right: 10px;
}

.section-footer-text ul li:last-child {
  margin: 0;
}

.section-footer-text ul.section-footer-border-list li {
  border-right: 1px solid var(--divider-color);
  padding-right: 15px;
}

.section-footer-text ul.section-footer-border-list li:last-child {
  padding-right: 0;
  border-right: none;
}

.section-footer-text ul li i {
  color: var(--accent-color);
}

.section-footer-text ul.section-footer-border-list li b {
  font-weight: 600;
  margin-left: 5px;
}

.section-footer-text.section-footer-contact p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.section-footer-text.section-footer-contact p span {
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.section-footer-text.section-footer-contact p span img {
  width: 100%;
  max-width: 16px;
}

.section-footer-text.section-satisfy-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
  max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
  width: 32px;
  height: 32px;
  margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
  width: 100%;
  max-width: 16px;
}

.section-footer-text.section-satisfy-img p {
  margin: 0;
}

.satisfy-client-images {
  display: flex;
  align-items: center;
}

.satisfy-client-image {
  position: relative;
  display: inline-block;
  margin-left: -10px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.satisfy-client-image:first-child {
  margin-left: 0;
}

.satisfy-client-image figure {
  display: block;
}

.satisfy-client-image figure img {
  width: 100%;
  max-width: 44px;
  border-radius: 50%;
}

.satisfy-client-image.add-more {
  width: 46px;
  height: 46px;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.satisfy-client-image.add-more i {
  font-size: 20px;
  color: var(--white-color);
}

.satisfy-client-image.add-more h3 {
  font-size: 16px;
  line-height: 1em;
  color: var(--white-color);
}

/************************************/
/*** 	  07. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
  padding: 100px 0 50px;
  background: #120e08;
  border-bottom: 1px solid #6950198a;
}

.why-choose-us-box {
  background-color: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 10px;
  overflow: hidden;
}

.why-choose-us-box.box-1 {
  text-align: center;
  border: 1px solid #595147;
  transition: all 0.35s ease;
}

.why-choose-us-box.box-1:hover {
  border-color: #d4a73a;
  box-shadow: 0 15px 40px rgba(212, 167, 58, 0.28);
  transform: translateY(-6px);
}

.why-choose-us-box-content {
  padding: 30px 30px 0;
}

/* .why-choose-us .box-2 {
margin-top: 30px;
} */
.why-choose-us-box-content .section-sub-title {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  margin-bottom: 15px;
}

.why-choose-us-box-content h3 {
  font-size: 22px;
}

.why-choose-us-box-content p {
  margin: 10px 0 0;
}

.why-choose-item-image figure {
  display: block;
  margin: 0 0 -10px 0;
  border-radius: 10px 10px 0 0;
}

.why-choose-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.692;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.why-choose-image-box {
  position: relative;
  align-content: end;
  border-radius: 14px;
  padding: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.why-choose-us-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.why-choose-us-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.why-choose-us-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-image-body {
  background: var(--secondary-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.why-choose-body-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.why-choose-body-title hr {
  min-width: 30px;
  border-style: dashed;
  height: 1px;
  color: var(--divider-color);
  flex-grow: 1;
  margin: 0;
  opacity: 1;
}

.why-choose-body-title h3 {
  font-size: 20px;
}

.why-choose-body-content p {
  color: var(--white-color);
}

.why-choose-body-content p:last-child {
  margin: 0;
}

.why-choose-highlighted-content {
  background: #83600b6e url(../images/icon-blockquote-transperant.svg) no-repeat;
  background-size: 60px auto;
  background-position: top 15px left 20px;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #805214;
}

.why-choose-highlighted-content p {
  font-weight: 600;
  color: var(--white-color);
}

.why-choose-highlighted-content p:last-child {
  margin: 0;
}

.why-choose-schedule-body {
  padding: 10px 20px 20px;
}

.why-choose-schedule-info-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.why-choose-schedule-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.why-choose-schedule-info-image figure {
  display: block;
  max-width: 60px;
  border-radius: 50%;
}

.why-choose-schedule-info-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.why-choose-schedule-info-content {
  width: calc(100% - 75px);
}

.why-choose-schedule-info-content h3 {
  font-size: 20px;
}

.why-choose-schedule-info-content p {
  margin: 5px 0 0;
}

.why-choose-schedule-btn {
  margin-top: 40px;
}

/************************************/
/*** 	  08. Intro Video css 	  ***/
/************************************/

.intro-video .container-fluid {
  padding: 0;
}

.intro-video-content-box {
  position: relative;
}

.intro-video-bg-video {
  height: 800px;
}

.intro-video-bg-video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bg-color);
  opacity: 40%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-video-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-play-button a {
  width: 100px;
  height: 100px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white-color);
  background-color: var(--divider-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  cursor: none;
}

.video-play-button a:hover {
  background: var(--white-color);
  color: var(--bg-color);
}

/************************************/
/*** 	09. Our Portfolio css     ***/
/************************************/

.our-portfolio {
  padding: 100px 0;
  border-bottom: 1px solid rgba(105, 80, 25, 0.55);
}

/* Card */

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(200, 137, 31, 0.25);
  border-radius: 18px;
  transition: all 0.45s ease;
  height: 100%;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: #c8891f;
  box-shadow: 0 20px 45px rgba(200, 137, 31, 0.18);
}

/* Image */

.portfolio-item-image,
.portfolio-item-image figure {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.portfolio-item-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

/* Default Bottom Gradient */

.portfolio-item-image figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 35%,
      rgba(0, 0, 0, 0.1) 55%,
      rgba(0, 0, 0, 0.55) 78%,
      rgba(0, 0, 0, 0.92) 100%);
  transition: all 0.45s ease;
}

/* Hover Full Overlay */

.portfolio-item:hover .portfolio-item-image figure::before {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.75) 70%,
      rgba(0, 0, 0, 0.96) 100%);
}

.portfolio-item:hover .portfolio-item-image img {
  transform: scale(1.08);
}

/* Content */

.portfolio-item-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
}

/* Category hidden by default */

.portfolio-item-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;

  opacity: 0;
  transform: translateY(18px);
  transition: all 0.45s ease;
}

.portfolio-item:hover .portfolio-item-content ul {
  opacity: 1;
  transform: translateY(0);
}

/* Category Pill */

.portfolio-item-content ul li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d89b2d 0%, #c8891f 45%, #9c6218 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 6px 16px rgba(200, 137, 31, 0.28);
}

.portfolio-item-content ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Title */

.portfolio-item-content h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0;

  transform: translateY(12px);
  transition: all 0.45s ease;
  padding-bottom: 50px;
}

.portfolio-item:hover .portfolio-item-content h3 {
  transform: translateY(0);
}

/* Footer */

.section-footer-text {
  margin-top: 25px;
}

.section-footer-text p {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.7;
}

.section-footer-text a {
  color: #c8891f;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.section-footer-text a:hover {
  color: #ffd36a;
}

@media (max-width: 991px) {
  .our-portfolio {
    padding: 80px 0;
  }

  .portfolio-item-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .portfolio-item-content ul {
    opacity: 1;
    transform: none;
  }

  .portfolio-item-content h3 {
    font-size: 22px;
    transform: none;
  }
}

.why-choose-us-box .why-choose-us-box-content .section-sub-title {
  font-size: 13px;
}

@media (max-width: 767px) {
  .our-portfolio {
    padding: 70px 0;
  }

  .portfolio-item-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .portfolio-item-content ul li {
    font-size: 11px;
    padding: 8px 14px;
  }

  .portfolio-item-content h3 {
    font-size: 20px;
  }

  .why-choose-us-box .why-choose-us-box-content .section-sub-title {
    font-size: 12px;
  }
}

/************************************/
/*** 	 10. Our Package css 	  ***/
/************************************/
.our-packages {
  padding: 100px 0;
  border-bottom: 1px solid #6950198a;
}

.our-packages::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
        180deg,
        rgba(5,5,5,.75),
        rgba(10,10,10,.88)
    ); */
  z-index: 1;
}

.our-packages .container {
  position: relative;
  z-index: 2;
}

.our-package-content {
  height: 100%;
  align-content: center;
}

.our-package-content .section-title {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 25px;
}

.our-package-item-list {
  height: 400px;
  /* Fixed height */
  overflow-y: auto;
  /* Vertical scroll */
  overflow-x: hidden;
  /* Hide horizontal scroll */
  padding-right: 12px;
  /* Scrollbar se content cut na ho */
  scrollbar-gutter: stable;
}

/* Optional: Premium scrollbar */
.our-package-item-list::-webkit-scrollbar {
  width: 6px;
}

.our-package-item-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.our-package-item-list::-webkit-scrollbar-thumb {
  background: #c9952d;
  border-radius: 10px;
}

.our-package-item-list::-webkit-scrollbar-thumb:hover {
  background: #e0b04a;
}

.our-package-item {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.our-package-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.our-package-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.our-package-item-title h3 {
  font-size: 20px;
  width: 100%;
  max-width: fit-content;
}

.our-package-item-title hr {
  height: 1px;
  min-width: 100px;
  color: var(--divider-color);
  border-style: dashed;
  flex-grow: 1;
  margin: 0;
  opacity: 1;
}

.our-package-item-title span {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
  line-height: normal;
}

.our-package-item-content p {
  margin-bottom: 15px;
}

.our-package-item-content p:last-child {
  margin-bottom: 0;
}

.package-video-content-box {
  position: relative;
  height: 100%;
  min-height: 650px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 0 15px;
  border: 2px solid #be781aa8;
  padding: 10px;
}

.package-video-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0) 66.85%,
      var(--bg-color) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.package-video-box {
  position: relative;
  height: 100%;
}

.package-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.package-video-rating-box {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  text-align: center;
  z-index: 1;
}

.package-video-rating i {
  font-size: 20px;
  color: var(--accent-color);
}

.package-video-rating-box p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  margin: 15px 0 0;
}

/************************************/
/***    11. Wedding Gallery css   ***/
/************************************/

.our-wedding-gallery {
  padding: 100px 0;
  border-bottom: 1px solid #6950198a;
}

.our-wedding-gallery-nav {
  text-align: center;
  margin-bottom: 60px;
}

.our-wedding-gallery-nav ul {
  list-style: none;
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 60px;
  padding: 0;
  margin: 0;
}

.our-wedding-gallery-nav ul li {
  position: relative;
  color: inherit;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.our-wedding-gallery-nav ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  background-color: var(--divider-color);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.our-wedding-gallery-nav ul li:last-child::before {
  display: none;
}

.our-wedding-gallery-nav ul li a.active-btn,
.our-wedding-gallery-nav ul li:hover a {
  color: var(--accent-color);
}

.our-wedding-gallery-nav ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.gallery-item {
  position: relative;
  border-radius: 1000px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.gallery-item-image figure {
  position: relative;
  display: block;
  border-radius: 1000px;
}

.gallery-item-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-color);
  opacity: 0;
  border-radius: 1000px;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.gallery-item:hover .gallery-item-image figure::before {
  opacity: 40%;
}

.gallery-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.356;
  object-fit: cover;
  border-radius: 1000px;
}

.gallery-item-content {
  position: absolute;
  top: 60px;
  left: 15px;
  right: 15px;
  bottom: 60px;
  text-align: center;
  align-content: center;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.gallery-item:hover .gallery-item-content {
  opacity: 1;
}

.gallery-item-content ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-item-content ul li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--primary-color);
  padding-left: 16px;
}

.gallery-item-content ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.gallery-item-content h3 {
  font-size: 18px;
  margin-top: 15px;
}

/************************************/
/***        12. Our FAQs css      ***/
/************************************/

.our-faqs {
  padding: 100px 0;
}

.faq-cta-box {
  position: sticky;
  top: 30px;
  padding: 80px;
  min-height: 710px;
  background: var(--secondary-color) url("../images/faq-bg-image.png") no-repeat;
  background-size: auto;
  background-position: bottom 80px center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 30px;
  border-radius: 14px;
  margin-right: 15px;
}

.faq-cta-image-box {
  height: 200px;
  width: 200px;
  background-color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.faq-cta-image figure {
  position: relative;
  display: block;
  max-width: 105px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.faq-cta-image figure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0) 61.11%,
      var(--bg-color) 100%);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.faq-cta-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.faq-cta-image-content h2 {
  font-size: 20px;
  text-transform: uppercase;
}

.faq-cta-image-content p {
  line-height: normal;
  margin: 5px 0 0;
}

.faq-cta-body-content h3 {
  font-size: 24px;
}

.faq-cta-body-content p {
  margin: 10px 0 0;
}

.faq-social-links {
  margin-top: 40px;
}

.faq-social-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-social-links ul li a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.faq-social-links ul li:hover a {
  background: var(--accent-color);
  color: var(--bg-color);
}

.faq-social-links ul li i {
  font-size: 18px;
  color: inherit;
}

.our-faq-btn {
  margin-top: 40px;
}

.faq-content {
  height: 100%;
  align-content: center;
}

.faq-accordion .accordion-item {
  position: relative;
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 22px 55px 22px 30px;
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: var(--secondary-color);
  border-color: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 7 Free";
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 20px;
  font-weight: 600;
  transform: translateY(-50%);
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.faq-accordion .accordion-item .accordion-body {
  background: transparent;
  border-top: 1px solid var(--divider-color);
  padding: 22px 30px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}

/************************************/
/***   13. Our Testimonials css   ***/
/************************************/

.our-testimonials {
  padding: 100px 0;
  background: #120e08;
  border-bottom: 1px solid #6950198a;
}

.testimonial-slider .swiper .swiper-wrapper {
  cursor: none;
}

.testimonial-item {
  position: relative;
  background-color: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  text-align: center;
  padding: 62px 25px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border: 1px solid #342917;
}

.testimonial-item-author {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.testimonial-item-author-image {
  margin-bottom: 20px;
}

.testimonial-item-author-image figure {
  display: inline-block;
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
}

.testimonial-item-author-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-item-author-content h2 {
  font-size: 20px;
}

.testimonial-item-author-content p {
  margin: 5px 0 0;
}

.testimonial-item-content {
  margin-bottom: 25px;
}

.testimonial-item-content p {
  min-height: 150px;
}

.testimonial-item-content p:last-child {
  margin: 0;
}

.testimonial-item-rating i {
  font-size: 16px;
  color: var(--accent-color);
}

.testimonial-item-quote {
  position: absolute;
  top: -20px;
  right: -20px;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .testimonial-item-quote {
  background: var(--accent-color);
}

.testimonial-item-quote img {
  width: 100%;
  max-width: 42px;
  margin: 15px 10px 0 0;
  transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .testimonial-item-quote img {
  filter: brightness(0) invert(0);
}

.our-testimonials .section-footer-text {
  margin-top: 60px;
}

/************************************/
/*** 	   14. CTA Box css        ***/
/************************************/

.cta-box {
  position: relative;
  background-image: url("../images/resources/cta-bg.jpg");
  background-position: top center;
  min-height: 700px;
  align-content: center;
  padding: 100px 0;
  border-bottom: 1px solid #6950198a;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--bg-color);
  opacity: 70%;
  z-index: 1;
}

.cta-box .container {
  position: relative;
  z-index: 1;
}

.cta-box-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.cta-contact-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cta-contact-list ul li {
  font-size: 24px;
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.4em;
  margin-bottom: 10px;
}

.cta-contact-list ul li:last-child {
  margin-bottom: 0;
}

.cta-contact-list ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.cta-contact-list ul li a:hover {
  color: var(--accent-color);
}

.cta-content-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 40px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.cta-client-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.cta-client-content {
  max-width: 210px;
  text-align: left;
}

.cta-client-content p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 	     15. Blog css 	      ***/
/************************************/

.our-blog {
  padding: 120px 0 90px;
}

.post-item {
  background: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 10px;
}

.post-featured-image {
  position: relative;
  margin-bottom: 10px;
}

.post-featured-image a {
  display: block;
  border-radius: 14px;
  cursor: none;
  overflow: hidden;
}

.post-featured-image figure {
  display: block;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.731;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.06);
}

.post-item-body {
  padding: 20px;
}

.post-item-content h2 {
  font-size: 20px;
  line-height: 1.3em;
}

.post-item-content h2 a {
  color: inherit;
}

.post-item .post-item-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin-top: 20px;
}

/************************************/
/*** 	    16. Footer css        ***/
/************************************/

.main-footer {
  padding: 100px 0 0;
}

.footer-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 30px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  max-width: calc(30% - 15px);
}

.footer-logo img {
  width: 100%;
  max-width: 235px;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
}

.footer-newsletter-form {
  max-width: calc(70% - 15px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 40px;
}

.footer-newsletter-form h2 {
  font-size: 20px;
  align-content: center;
}

.footer-newsletter-form form {
  width: 420px;
}

.footer-newsletter-form .form-group {
  display: flex;
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3em;
  color: var(--white-color);
  background: transparent;
  background-image: url("../images/icon-mail-transperant.svg");
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 20px auto;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 6px 20px 6px 54px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
  color: var(--white-color);
  opacity: 20%;
}

.footer-newsletter-form .form-group .newsletter-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
  background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn i {
  font-size: 18px;
  color: var(--bg-color);
  transition: all 0.4s ease-in-out;
}

.about-footer-content h2 {
  font-size: 20px;
  margin-bottom: 30px;
}

.about-footer-content p {
  margin: 0 0 15px;
}

.about-footer-content p:last-child {
  margin-bottom: 0;
}

.footer-social-links {
  margin-top: 60px;
}

.footer-social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social-links ul li a {
  width: 40px;
  height: 40px;
    color: #9c7114;
    border: 1px solid #9c7114;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.footer-social-links ul li a i {
  font-size: 18px;
  color: inherit;
}

.footer-links-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-left: 40px;
}

.footer-links {
  max-width: 28%;
}

.footer-links h2 {
  font-size: 20px;
  margin-bottom: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  line-height: 1.4em;
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-working-hour-box {
  min-width: 290px;
}

.footer-contact-list {
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-contact-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list ul li {
  display: flex;
  gap: 10px;
}

.footer-contact-list ul li img {
  width: 100%;
  max-width: 24px;
}

.footer-copyright {
  border-top: 1px solid var(--divider-color);
  text-align: center;
  padding: 60px 0;
  margin-top: 80px;
}

.footer-copyright-text p {
  margin: 0;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/
.page-header {
  position: relative;
  background: url("../images/resources/breadcrumb-bg.jpg") center center/cover no-repeat;
  min-height: 380px;
  padding: 220px 0 100px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid #6950198a;
  isolation: isolate;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-box {
  position: relative;
  z-index: 2;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 60px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box h1 span {
  font-family: var(--accent-font);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  -webkit-text-stroke: 1.5px #c8891f;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a,
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
  color: var(--white-color);
}

/************************************/
/*** Our Approach Modern ***/
/************************************/

.our-approach {
  padding: 100px 0 70px;
  border-bottom: 1px solid rgba(105, 80, 25, 0.55);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.our-approach::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(200, 137, 31, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
}

/* Card */
.our-approach .col-lg-4 {
  margin-bottom: 30px;
}

.approach-item {
  position: relative;
  height: 100%;
  background: linear-gradient(145deg, #111, #181818);
  border: 1px solid rgba(200, 137, 31, 0.18);
  border-radius: 22px;
  padding: 34px 28px;
  overflow: hidden;
  transition: 0.45s ease;
  backdrop-filter: blur(10px);
}

/* Top gold accent */

/* .approach-item::before{
    content:"";
    position:absolute;
    top:0;
    left:30px;
    width:60px;
    height:4px;
    border-radius:10px;
    background:linear-gradient(90deg,#FFD36A,#C8891F);
    transition:.45s ease;
} */

.approach-item:hover {
  transform: translateY(-10px);
  border-color: #c8891f;
  box-shadow:
    0 25px 45px rgba(200, 137, 31, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.approach-item:hover::before {
  width: 120px;
}

/* Icon */

.approach-item .icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: radial-gradient(circle at 30% 30%, #2b1a00, #111);
  border: 1px solid rgba(200, 137, 31, 0.45);
  box-shadow: 0 0 25px rgba(200, 137, 31, 0.15);
  transition: 0.45s ease;
}

.approach-item:hover .icon-box {
  transform: translateY(-4px) rotate(-6deg);
  box-shadow: 0 0 35px rgba(200, 137, 31, 0.35);
}

.approach-item .icon-box img {
  max-width: 60px;
  width: 100%;
  height: auto;
}

/* Content */

.approach-item-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.approach-item-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #bdbdbd;
  margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
  .our-approach {
    padding: 80px 0;
  }

  .approach-item {
    padding: 30px 24px;
    margin-bottom: 25px;
  }

  .approach-item-content h3 {
    font-size: 22px;
  }

  .approach-item-content p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .our-approach {
    padding: 70px 0;
  }

  .approach-item {
    border-radius: 18px;
    padding: 26px 22px;
  }

  .approach-item .icon-box {
    width: 72px;
    height: 72px;
  }

  .approach-item .icon-box img {
    max-width: 45px;
  }

  .approach-item-content h3 {
    font-size: 20px;
  }

  .approach-item-content p {
    line-height: 1.7;
  }
}

.what-we-do {
  padding: 100px 0;
}

.what-we-do-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.what-we-do-item {
  width: calc(50% - 15px);
  background-color: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 30px;
  border-radius: 15px;
}

.what-we-do-item .icon-box {
  margin-bottom: 40px;
}

.what-we-do-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.what-we-do-item-content h3 {
  font-size: 20px;
}

.what-we-do-item-content p {
  margin: 10px 0 0;
}

.what-we-do-image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-left: 15px;
}

.what-we-do-image.image-1 {
  position: relative;
  width: 48%;
  z-index: 2;
}

.what-we-do-image.image-1 figure {
  border: 10px solid var(--bg-color);
  border-radius: 22px;
}

.what-we-do-image.image-1 figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.what-we-do-image.image-2 {
  position: relative;
  width: 52%;
  padding-bottom: 50px;
  z-index: 1;
}

.what-we-do-image.image-2 figure {
  margin-left: -210px;
  display: block;
  border-radius: 1000px 1000px 14px 14px;
}

.what-we-do-image.image-2 figure img {
  width: 100%;
  aspect-ratio: 1 / 1.221;
  object-fit: cover;
  border-radius: 1000px 1000px 14px 14px;
}

.our-team {
  padding: 100px 0;
}

.team-item {
  position: relative;
  height: calc(100% - 30px);
  border-radius: 14px;
  margin-bottom: 30px;
  overflow: hidden;
}

.team-item-image a,
.team-item-image figure {
  position: relative;
  display: block;
  cursor: none;
}

.team-item-image figure::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0) 55%,
      rgba(8, 8, 8, 0.56) 71.49%,
      rgba(8, 8, 8, 0.8) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.team-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image figure img {
  transform: scale(1.06);
}

.team-item-body {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  transform: translateY(77px);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.team-item:hover .team-item-body {
  transform: translateY(0);
}

.team-item-content h2 {
  font-size: 20px;
}

.team-item-content h2 a {
  color: inherit;
}

.team-item-content p {
  margin: 10px 0 0;
}

.team-item-social-list {
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-item-social-list {
  opacity: 1;
  visibility: visible;
}

.team-item-social-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-item-social-list ul li a {
  width: 36px;
  height: 36px;
  color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.team-item-social-list ul li a:hover {
  background: var(--accent-color);
  color: var(--bg-color);
}

.team-item-social-list ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/***    18. Services Page css     ***/
/************************************/

.page-services {
  padding: 120px 0 90px;
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

.page-service-single {
  padding: 100px 0;
  border-bottom: 1px solid #6950198a;
}

.page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 15px;
}

.page-category-list {
  background: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  margin-bottom: 40px;
  overflow: hidden;
}

.page-category-list .page-category-list-title {
  font-size: 20px;
  color: var(--bg-color);
  background: var(--accent-color);
  padding: 20px 30px;
}

.page-category-list ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}

.page-category-list ul li {
  line-height: 1.5em;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-category-list ul li:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.page-category-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: inherit;
  padding-right: 25px;
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
  color: var(--accent-color);
}

.page-category-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../images/arrow-white.svg") no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-box {
  position: relative;
  border-radius: 14px;
  min-height: 460px;
  align-content: end;
  padding: 10px;
  overflow: hidden;
}

.sidebar-cta-box-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.sidebar-cta-box-image figure {
  position: relative;
  display: block;
  height: 100%;
  border: 1px solid #8360256b;
}

.sidebar-cta-box-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0) 55%,
      rgba(8, 8, 8, 0.56) 71.49%,
      rgba(8, 8, 8, 0.8) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sidebar-cta-box-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-cta-item-box {
  position: relative;
  background: var(--divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  z-index: 2;
}

.sidebar-cta-item-logo img {
  width: 100%;
  max-width: 209px;
}

.sidebar-cta-contact-list {
  border-top: 1px solid var(--divider-color);
  padding-top: 25px;
  margin-top: 25px;
}

.sidebar-cta-contact-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-cta-contact-list ul li {
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.5em;
  margin-bottom: 15px;
}

.sidebar-cta-contact-list ul li:last-child {
  margin-bottom: 0;
}

.sidebar-cta-contact-list ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-list ul li a:hover {
  color: var(--accent-color);
}

.sidebar-cta-contact-list ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.page-single-image {
  margin-bottom: 40px;
}

.page-single-image figure {
  display: block;
  border-radius: 14px;
}

.page-single-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #8360256b;
  padding: 6px;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.service-entry h2 span {
  font-family: var(--accent-font);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  -webkit-text-stroke: 1.5px #c8891f;
}

.service-entry h3 {
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.service-entry p:last-child,
.service-entry h3:last-child {
  margin: 0;
}

.service-entry ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  padding: 0;
  margin: 0;
}

.service-entry ul li {
  width: calc(50% - 20px);
  position: relative;
  color: var(--primary-color);
  line-height: 1.5em;
  padding-left: 25px;
}

.service-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.service-offer-box,
.service-why-choose-box {
  margin-top: 60px;
}

.service-offer-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-offer-box-item {
  width: calc(50% - 15px);
  border: 1px solid #604c1e;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
}

.service-offer-box-item-title {
  width: calc(100% - 65px);
}

.service-why-choose-list {
  margin-top: 40px;
}

.service-why-choose-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.service-why-choose-image {
  width: calc(50% - 15px);
}

.service-why-choose-image figure {
  display: block;
  border-radius: 14px;
}

.service-why-choose-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.79;
  object-fit: cover;
  border-radius: 14px;
}

.service-offer-box-item .icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 167, 58, 0.12);
  border: 1px solid rgba(212, 167, 58, 0.35);
  border-radius: 14px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.service-offer-box-item .icon-box i {
  font-size: 22px;
  color: #d4a73a;
}

.service-offer-box-item:hover .icon-box {
  background: #d4a73a;
  transform: translateY(-3px);
}

.service-offer-box-item:hover .icon-box i {
  color: #000;
}

/************************************/
/***     20. Blog Archilve css    ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  color: var(--bg-color);
  background: var(--accent-color);
}

/************************************/
/***     21. Blog Single css      ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 14px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.389em;
}

.post-entry h1 {
  font-size: 76px;
  letter-spacing: -0.02em;
}

.post-entry h2 {
  font-size: 46px;
  letter-spacing: -0.02em;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 20px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol:last-child,
.post-entry ul:last-child {
  margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: var(--accent-color) url("../images/icon-blockquote.svg");
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 14px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--bg-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0;
  background: var(--accent-color);
  color: var(--bg-color);
  border-radius: 8px;
  padding: 12px 24px;
  transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--white-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--divider-color);
  color: var(--white-color);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--accent-color);
  color: var(--bg-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/***    22. Portfolio Page css    ***/
/************************************/

.page-portfolio {
  padding: 120px 0 90px;
}

/************************************/
/***   23. Portfolio Single css   ***/
/************************************/

.page-portfolio-single {
  padding: 100px 0;
}

.portfolio-category-item-list {
  padding: 30px;
}

.portfolio-category-item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.portfolio-category-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.portfolio-category-item .icon-box img {
  width: 100%;
  max-width: 24px;
}

.portfolio-category-item-content {
  width: calc(100% - 34px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.portfolio-category-item-content h3,
.portfolio-category-social-links h3 {
  font-size: 16px;
  line-height: normal;
}

.portfolio-category-item-content p {
  margin-bottom: 0;
}

.portfolio-category-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  width: 100%;
}

.page-category-list .portfolio-category-social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.page-category-list .portfolio-category-social-links ul li {
  margin: 0;
  padding: 0;
  border: none;
}

.page-category-list .portfolio-category-social-links ul li a {
  width: 30px;
  height: 30px;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.page-category-list .portfolio-category-social-links ul li a:hover {
  background: var(--accent-color);
  color: var(--bg-color);
}

.page-category-list .portfolio-category-social-links ul li a::before {
  display: none;
}

.page-category-list .portfolio-category-social-links ul li a i {
  font-size: 14px;
}

.portfolio-entry {
  margin-bottom: 60px;
}

.portfolio-entry p {
  margin-bottom: 20px;
}

.portfolio-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.portfolio-entry h2 span {
  font-family: var(--accent-font);
  font-weight: 400;
  font-style: italic;
}

.portfolio-entry h3 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.portfolio-entry p:last-child,
.portfolio-entry h3:last-child {
  margin: 0;
}

.portfolio-entry ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-entry ul li {
  position: relative;
  color: var(--primary-color);
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 20px;
}

.portfolio-entry ul li:last-child {
  margin-bottom: 0;
}

.portfolio-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.portfolio-entry-info,
.portfolio-creative-box,
.portfolio-image-gallary-box {
  margin-top: 60px;
}

.portfolio-creative-image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.portfolio-creative-image,
.portfolio-creative-list {
  width: calc(50% - 15px);
}

.portfolio-creative-image figure {
  display: block;
  height: 100%;
  border-radius: 14px;
}

.portfolio-creative-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.775;
  object-fit: cover;
  border-radius: 14px;
}

.portfolio-creative-list {
  align-content: center;
}

.portfolio-image-gallary-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.portfolio-image-gallary-item {
  width: calc(50% - 15px);
}

.portfolio-image-gallary-item figure {
  display: block;
  border-radius: 14px;
}

.portfolio-image-gallary-item img {
  width: 100%;
  aspect-ratio: 1 / 0.745;
  object-fit: cover;
  border-radius: 14px;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team {
  padding: 120px 0 90px;
}

/************************************/
/***     25. Team Single css      ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-member-about {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  margin-bottom: 60px;
}

.team-member-image-box {
  width: calc(50% - 30px);
  display: flex;
  flex-direction: column;
}

.team-single-image {
  height: 100%;
}

.team-single-image figure {
  display: block;
  height: 100%;
  border-radius: 14px;
}

.team-single-image figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.762;
  object-fit: cover;
  border-radius: 14px;
}

.team-member-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.team-member-social-list h2 {
  font-size: 20px;
}

.team-member-social-list ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-member-social-list ul li a {
  width: 36px;
  height: 36px;
  color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.team-member-social-list ul li:hover a {
  background: var(--accent-color);
  color: var(--bg-color);
}

.team-member-social-list ul li a i {
  font-size: 16px;
  color: inherit;
}

.team-about-content {
  width: calc(50% - 30px);
  align-content: center;
}

.team-about-contact-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-about-contact-list ul li {
  min-width: 48%;
  flex-grow: 1;
  font-weight: 600;
  background: var(--secondary-color);
  border-radius: 14px;
  padding: 20px 25px;
  display: flex;
  gap: 15px;
}

.team-about-contact-list ul li img {
  width: 100%;
  max-width: 20px;
}

.team-experience-info {
  margin-bottom: 60px;
}

.team-experience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.team-experience-list-item {
  width: calc(25% - 22.5px);
  background: var(--secondary-color);
  border-radius: 14px;
  padding: 30px;
}

.team-experience-list-item .icon-box {
  margin-bottom: 40px;
}

.team-experience-list-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.team-experience-list-content h3 {
  font-size: 20px;
}

.team-experience-list-content p {
  margin: 10px 0 0;
}

.team-experience-info-content {
  margin-top: 40px;
}

.team-experience-info-content p:last-child {
  margin-bottom: 0;
}

.team-skill-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  overflow: hidden;
}

.team-skill-image-box {
  position: relative;
  width: calc(50% - 5px);
  border-radius: 14px;
  overflow: hidden;
}

.team-skill-image {
  height: 100%;
}

.team-skill-image figure {
  height: 100%;
  position: relative;
  display: block;
  border-radius: 14px;
}

.team-skill-image figure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0) 25.77%,
      rgba(8, 8, 8, 0.56) 52.97%,
      rgba(8, 8, 8, 0.8) 100%);
  z-index: 1;
}

.team-skill-image figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.927;
  object-fit: cover;
  border-radius: 14px;
}

.team-skill-content {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: 30px;
  z-index: 2;
}

.team-skill-content .section-title {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
}

.skills-progress-bar {
  margin-bottom: 30px;
}

.skills-progress-bar:last-child {
  margin-bottom: 0;
}

.skills-progress-bar .skill-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 10px;
  background: var(--divider-color);
  border-radius: 10px;
  overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 10px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials {
  padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
  border-radius: 14px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/************************************/
/***    27. Image Gallery css     ***/
/************************************/

.page-gallery {
  padding: 120px 0 90px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 14px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
  border-radius: 14px;
}

/************************************/
/***    28. Video Gallery css     ***/
/************************************/

.page-video-gallery {
  padding: 120px 0 90px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  border-radius: 14px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
  border-radius: 14px;
}

/************************************/
/***     29. FAQ's Page css       ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.page-faqs .page-faq-accordion {
  margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
  margin-bottom: 0px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

.page-contact-us {
  padding: 100px 0 100px;
}

.contact-form-box {
  background-color: var(--secondary-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.contact-form-image-box {
  width: calc(50% - 5px);
  position: relative;
  border-radius: 10px;
  min-height: 565px;
  padding: 50px;
  overflow: hidden;
  z-index: 1;
}

.contact-form-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-form-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.contact-form-image figure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #080808d9;
  opacity: 70%;
  z-index: 1;
}

.contact-form-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-content-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.contact-info-list {
  max-width: 335px;
}

.contact-info-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-list ul li:last-child {
  margin-bottom: 0;
}

.contact-info-list ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-info-list ul li a:hover {
  color: var(--accent-color);
}

.contact-info-list ul li img {
  width: 100%;
  max-width: 20px;
}

.contact-us-form {
  width: calc(50% - 5px);
  padding: 50px;
}

.contact-form label {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--white-color);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 2px;
  padding: 13px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--white-color);
  opacity: 50%;
}

.google-map {
  padding: 60px 0 120px;
}

.google-map-iframe {
  width: 100%;
  height: 600px;
}

.google-map-iframe iframe {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

/************************************/
/***    31. 404 Error Page css    ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 720px;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1440px) {
  .intro-video-bg-video {
    height: 680px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-sub-heading .section-sub-title,
  .section-title .section-sub-title {
    margin-bottom: 10px;
  }

  .hero {
    height: auto;
  }

  .hero-content-list {
    padding-top: 30px;
    margin-top: 30px;
  }

  .hero-content-list ul {
    gap: 15px 20px;
  }

  .hero-content-list ul li {
    width: calc(50% - 10px);
  }

  .hero-content-list ul li:nth-child(2n + 2):after {
    display: none;
  }

  .about-us-image-box {
    max-width: 740px;
    margin: 0 auto 30px;
  }

  .portfolio-item-image figure img {
    aspect-ratio: 1 / 1.05;
  }

  .our-package-content {
    height: auto;
    margin-bottom: 30px;
  }

  .our-package-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .package-video-content-box {
    margin: 0;
    min-height: auto;
    height: 530px;
  }

  .faq-cta-box {
    position: initial;
    min-height: auto;
    padding: 30px;
    margin: 0 0 30px;
  }

  .footer-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-newsletter-form {
    gap: 15px 20px;
  }

  .about-footer {
    margin-bottom: 30px;
  }

  .about-footer-content h2 {
    margin-bottom: 20px;
  }

  .footer-social-links {
    margin-top: 20px;
  }

  .footer-links-box {
    margin-left: 0;
  }

  .footer-links h2 {
    margin-bottom: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-contact-list {
    padding-top: 20px;
    margin-top: 20px;
  }

  .footer-copyright {
    padding: 30px 0;
    margin-top: 30px;
  }

  .what-we-do-content-box {
    margin-bottom: 30px;
  }

  .what-we-do-image-box {
    max-width: 740px;
    margin: 0 auto;
  }

  .what-we-do-image.image-2 figure img {
    aspect-ratio: 1 / 1.1;
  }

  .page-single-sidebar {
    margin-right: 0;
  }

  .page-category-list .page-category-list-title {
    padding: 15px 20px;
  }

  .page-category-list ul {
    padding: 20px;
  }

  .page-category-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .page-category-list ul li a::before {
    width: 16px;
    height: 16px;
  }

  .sidebar-cta-box {
    min-height: 400px;
  }

  .sidebar-cta-item-box {
    padding: 15px;
  }

  .sidebar-cta-contact-list {
    padding-top: 20px;
    margin-top: 20px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .page-single-image {
    margin-bottom: 30px;
  }

  .service-entry ul {
    gap: 15px;
  }

  .service-entry ul li {
    width: calc(50% - 7.5px);
  }

  .service-offer-box,
  .service-why-choose-box {
    margin-top: 40px;
  }

  .service-offer-box-list {
    gap: 20px;
    margin-top: 30px;
  }

  .service-offer-box-item {
    width: calc(50% - 10px);
    padding: 20px;
  }

  .service-offer-box-item h3 {
    font-size: 18px;
  }

  .portfolio-category-item-list {
    padding: 20px;
  }

  .portfolio-category-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .portfolio-category-item .icon-box img {
    max-width: 20px;
  }

  .portfolio-category-item-content {
    width: calc(100% - 30px);
  }

  .portfolio-entry {
    margin-bottom: 40px;
  }

  .portfolio-entry-info,
  .portfolio-creative-box,
  .portfolio-image-gallary-box {
    margin-top: 40px;
  }

  .portfolio-creative-image-list {
    margin: 30px 0;
    gap: 20px;
  }

  .portfolio-creative-image {
    width: calc(45% - 10px);
  }

  .portfolio-creative-list {
    width: calc(55% - 10px);
  }

  .team-member-about {
    gap: 30px;
  }

  .team-member-image-box,
  .team-about-content {
    width: calc(50% - 15px);
  }

  .team-about-contact-list ul li {
    padding: 15px 20px;
  }

  .team-member-about,
  .team-experience-info {
    margin-bottom: 40px;
  }

  .team-experience-list-item {
    width: calc(50% - 15px);
  }

  .team-experience-info-content {
    margin-top: 30px;
  }

  .contact-form-image-box,
  .contact-us-form {
    padding: 30px;
  }
}

@media only screen and (max-width: 991px) {

  .hero::before,
  .hero.hero-slider-layout .hero-image-slider .hero-slider-img figure::before {
    background:
      radial-gradient(circle at top center,
        rgba(212, 160, 23, 0.12) 0%,
        rgba(0, 0, 0, 0.54) 35%),
      linear-gradient(180deg,
        rgba(8, 8, 8, 0.45) 0%,
        rgba(32, 18, 55, 0.28) 25%,
        rgba(8, 8, 8, 0.3) 55%,
        rgb(8 8 8 / 32%) 100%);
  }

  .btn-default {
    padding: 15px 48px 15px 18px;
  }

  .btn-default::before {
    width: 36px;
    height: 36px;
    background-size: 18px auto;
  }

  .readmore-btn {
    padding: 0px 30px 0px 0;
  }

  .readmore-btn::before {
    width: 22px;
    height: 22px;
    background-size: 12px auto;
  }

  header.main-header {
    top: 0px;
    right: 0px;
    left: 0px;
    border-top: 1px solid #d3952a;
    border-bottom: 1px solid #d3952a;
  }

header.main-header .header-sticky {
  width: 100%;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  width: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
  right: 0;
}

.responsive-menu,
.navbar-toggle {
  display: block;
}

.slicknav_nav li,
.slicknav_nav ul {
  display: block;
}

.header-btn {
  display: none;
}

.section-row {
  margin-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.section-sub-heading .section-sub-title,
.section-title .section-sub-title {
  padding: 8px 12px 8px 12px;
}

.section-sub-heading .section-sub-title,
.section-title .section-sub-title {
  font-size: 9px;
}

.section-sub-heading .section-sub-title::before,
.section-title .section-sub-title::before {
  left: 12px;
}

.section-title h1 {
  font-size: 52px;
}

.section-title h2 {
  font-size: 36px;
}

.section-title p {
  margin-top: 10px;
}

.hero {
  min-height: 500px;
  padding: 150px 0 60px;
}

.book-your-date-circle a img {
  max-width: 130px;
}

.hero-content-list ul li:before {
  font-size: 16px;
}

.about-us {
  padding: 60px 0;
}

.about-us-body-list ul li::before {
  font-size: 16px;
}

.about-us-counter-content h2 {
  font-size: 34px;
}

.our-services {
  padding: 60px 0;
}

.service-item-header {
  padding: 20px;
}

.service-item-header .icon-box {
  margin-bottom: 20px;
}

.service-item-image figure img {
  aspect-ratio: 1 / 0.65;
}

.section-footer-text {
  margin-top: 10px;
}

.section-footer-text p,
.section-footer-text ul {
  margin-bottom: 10px;
}

.section-footer-text ul li {
  margin-right: 5px;
}

.section-footer-text ul.section-footer-border-list li {
  padding-right: 10px;
}

.why-choose-us {
  padding: 60px 0;
}

.why-choose-us-box-content {
  padding: 15px 15px 0;
}

.why-choose-image-body {
  padding: 15px;
}

.why-choose-highlighted-content {
  padding: 20px;
  background-size: 50px;
}

.why-choose-schedule-info-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.why-choose-schedule-btn {
  margin-top: 30px;
}

.intro-video-bg-video {
  height: 520px;
}

.video-play-button a {
  width: 80px;
  height: 80px;
  font-size: 16px;
}

.our-portfolio {
  padding: 60px 0;
}

.portfolio-item-content {
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.portfolio-item-content ul {
  margin: 0 0 15px;
}

.portfolio-item-content ul li a {
  padding: 7px 12px 7px 26px;
}

.portfolio-item-content ul li a::before {
  left: 12px;
}

.our-packages {
  padding: 60px 0;
}

.our-package-content .section-title {
  padding-bottom: 30px;
}

.our-package-item-title span {
  font-size: 18px;
}

.package-video-rating-box {
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.package-video-rating i,
.package-video-rating-box p {
  font-size: 18px;
}

.our-wedding-gallery {
  padding: 60px 0;
}

.our-wedding-gallery-nav {
  margin-bottom: 40px;
}

.our-wedding-gallery-nav ul {
  gap: 10px 40px;
}

.our-wedding-gallery-nav ul li::before {
  right: -24px;
}

.gallery-item,
.gallery-item-image figure,
.gallery-item-image figure img,
.gallery-item-image figure::before {
  border-radius: 14px;
}

.gallery-item-image figure img {
  aspect-ratio: 1 / 0.95;
}

.gallery-item-content {
  top: 15px;
  bottom: 15px;
}

.our-faqs {
  padding: 60px 0;
}

.faq-cta-body-content h3 {
  font-size: 22px;
}

.faq-social-links,
.our-faq-btn {
  margin-top: 30px;
}

.faq-accordion .accordion-item {
  margin-bottom: 20px;
}

.faq-accordion .accordion-header .accordion-button {
  padding: 15px 45px 15px 20px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  right: 20px;
  font-size: 18px;
}

.faq-accordion .accordion-item .accordion-body {
  padding: 15px 20px;
}

.our-testimonials {
  padding: 60px 0;
}

.testimonial-item {
  padding: 40px;
}

.testimonial-item-author {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.testimonial-item-author-image {
  margin-bottom: 15px;
}

.testimonial-item-content {
  margin-bottom: 20px;
}

.testimonial-item-quote {
  height: 90px;
  width: 90px;
  top: -15px;
  right: -15px;
}

.testimonial-item-quote img {
  max-width: 32px;
  margin: 8px 8px 0 0;
}

.our-testimonials .section-footer-text {
  margin-top: 40px;
}

.cta-box {
  min-height: 600px;
  padding: 60px 0;
}

.cta-contact-list ul li {
  font-size: 22px;
}

.cta-content-footer {
  gap: 20px 30px;
  padding-top: 30px;
  margin-top: 30px;
}

.our-blog {
  padding: 60px 0 30px;
}

.post-item-body {
  padding: 10px;
}

.post-item .post-item-btn {
  margin-top: 15px;
  padding-top: 15px;
}

.main-footer {
  padding: 50px 0 0;
}

.footer-logo,
.footer-newsletter-form {
  max-width: 100%;
}

.page-header {
  padding: 180px 0 90px;
}

.page-header-box h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.our-approach {
  padding: 60px 0;
}

.approach-item-image-box {
  min-height: 380px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.approach-item-image:before {
  background: var(--bg-color);
  opacity: 30%;
}

/* .approach-item {
    width: calc(50% - 15px);
  } */

.what-we-do {
  padding: 60px 0;
}

.what-we-do-item .icon-box {
  margin-bottom: 30px;
}

.our-team {
  padding: 60px 0;
}

.team-item-body {
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.page-services {
  padding: 60px 0 30px;
}

.page-service-single {
  padding: 60px 0;
}

.page-single-sidebar {
  position: initial;
  margin-bottom: 30px;
}

.page-category-list {
  margin-bottom: 30px;
}

.service-entry h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.service-entry p {
  margin-bottom: 15px;
}

.service-why-choose-list {
  margin-top: 30px;
}

.service-entry ul li::before {
  font-size: 16px;
}

.service-why-choose-images {
  margin-top: 30px;
}

.page-blog {
  padding: 60px 0;
}

.page-pagination {
  margin-top: 10px;
}

.page-single-post {
  padding: 60px 0;
}

.post-image {
  margin-bottom: 20px;
}

.post-entry h2 {
  font-size: 36px;
}

.post-entry p {
  margin-bottom: 15px;
}

.post-entry ol li,
.post-entry ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.post-entry blockquote {
  background-position: 20px 20px;
  background-size: 40px;
  padding: 20px 20px 20px 70px;
  margin-bottom: 20px;
}

.post-entry blockquote p {
  font-size: 18px;
}

.post-tags {
  margin-bottom: 20px;
}

.post-tags .tag-links a {
  padding: 12px 15px;
}

.post-social-sharing ul {
  text-align: left;
}

.page-portfolio {
  padding: 60px 0 30px;
}

.page-portfolio-single {
  padding: 60px 0;
}

.portfolio-entry h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.portfolio-entry p {
  margin-bottom: 15px;
}

.portfolio-entry ul li {
  margin-bottom: 10px;
}

.portfolio-entry ul li::before {
  font-size: 16px;
}

.page-team {
  padding: 60px 0 30px;
}

.page-team-single {
  padding: 60px 0;
}

.team-single-image,
.team-single-image figure,
.team-single-image figure img {
  height: auto;
}

.team-member-image-box,
.team-about-content {
  width: 100%;
}

.team-member-social-list {
  margin-top: 20px;
}

.team-experience-list-item .icon-box {
  margin-bottom: 30px;
}

.team-skill-image-box {
  width: 100%;
}

.team-skill-image,
.team-skill-image figure,
.team-skill-image figure img {
  height: auto;
}

.team-skill-image figure img {
  aspect-ratio: 1 / 0.7;
}

.team-skill-content .section-title {
  padding-bottom: 30px;
}

.page-testimonials {
  padding: 60px 0 30px;
}

.page-gallery {
  padding: 60px 0 30px;
}

.page-video-gallery {
  padding: 60px 0 30px;
}

.page-faqs {
  padding: 60px 0;
}

.page-faqs .page-faq-accordion {
  margin-bottom: 40px;
}

.page-contact-us {
  padding: 60px 0 30px;
}

.contact-form-image-box {
  width: 100%;
  min-height: 400px;
}

.contact-us-form {
  width: 100%;
}

.contact-info-list ul li {
  margin-bottom: 15px;
}

.contact-form label {
  margin-bottom: 15px;
}

.contact-form .form-control {
  padding: 11px 15px;
}

.google-map {
  padding: 30px 0 60px;
}

.google-map-iframe,
.google-map-iframe iframe {
  height: 450px;
}

.error-page {
  padding: 60px 0px;
}

.error-page-image {
  margin-bottom: 20px;
}
}

@media only screen and (max-width: 767px) {
    .footer-newsletter-form {
        display: none;
    }
  .section-row {
    margin-bottom: 30px;
  }

  .hero .hero-content .section-title h1 {
    font-size: 46px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-content .section-title,
  .book-your-date-circle {
    width: 100%;
  }

  .hero-content {
    gap: 20px;
  }

  .book-your-date-circle {
    text-align: left;
  }

  .book-your-date-circle a img {
    max-width: 90px;
  }

  .hero-content-list ul {
    gap: 10px;
  }

  .hero-content-list ul li {
    width: 100%;
  }

  .hero-content-list ul li::after {
    display: none;
  }

  .about-us-image-box-1 {
    width: 68%;
    padding: 0 0 25px 25px;
    margin-bottom: 50px;
  }

  .about-us-image-box-1 .about-us-image figure,
  .about-us-image-box-1 .about-us-image figure img {
    border-radius: 60px;
  }

  .about-us-image-box-2 .about-us-image {
    margin-left: -75px;
  }

  .about-us-image-box-2 .about-us-image::before {
    width: 85px;
    height: 95px;
  }

  .about-us-image-box-2 .about-us-image figure {
    border-width: 5px;
  }

  .about-image-title-box {
    bottom: -8px;
    left: -8px;
    max-width: 160px;
  }

  .about-us-body-content {
    width: 100%;
  }

  .about-us-body-list ul li {
    margin-bottom: 10px;
  }

  .about-body-btn {
    padding-top: 20px;
    margin-top: 20px;
  }

  .about-us-counter-box {
    width: 100%;
    padding: 20px;
  }

  .about-us-counter-content h2 {
    font-size: 60px;
  }

  .about-us-counter-image figure {
    margin: -90px -20px -20px auto;
  }

  .service-item-header {
    padding: 10px;
  }

  .service-item-content h2 {
    font-size: 18px;
  }

  .section-footer-text p span {
    padding: 3px 8px;
  }

  .section-footer-text ul li {
    font-size: 14px;
  }

  .why-choose-us-box-content {
    padding: 10px 10px 0;
  }

  .why-choose-us-box-content h3 {
    font-size: 18px;
  }

  .why-choose-image-box {
    min-height: 330px;
  }

  .why-choose-body-title h3 {
    font-size: 18px;
  }

  .why-choose-schedule-body {
    padding: 0 10px 10px 10px;
  }

  .why-choose-schedule-info-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .why-choose-schedule-info-content h3 {
    font-size: 18px;
  }

  .intro-video-bg-video {
    height: 320px;
  }

  .portfolio-item-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .portfolio-item-content h2 {
    font-size: 18px;
  }

  .our-package-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .our-package-item-title {
    margin-bottom: 10px;
  }

  .our-package-item-title h3 {
    font-size: 16px;
  }

  .our-package-item-title span {
    font-size: 16px;
  }

  .our-package-item-title hr {
    min-width: 40px;
  }

  .package-video-content-box {
    height: 360px;
  }

  .package-video-rating-box {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .package-video-rating-box p {
    font-size: 16px;
  }

  .our-wedding-gallery-nav {
    margin-bottom: 25px;
  }

  .our-wedding-gallery-nav ul {
    gap: 10px 30px;
  }

  .our-wedding-gallery-nav ul li::before {
    right: -18px;
    width: 6px;
    height: 6px;
  }

  .gallery-item-image figure img {
    aspect-ratio: 1 / 0.81;
  }

  .gallery-item-content h3 {
    margin-top: 10px;
  }

  .faq-cta-box {
    background-size: 95% auto;
    gap: 20px;
    padding: 20px;
  }

  .faq-cta-image figure {
    max-width: 90px;
  }

  .faq-cta-image-content h2 {
    font-size: 18px;
  }

  .faq-cta-body-content h3 {
    font-size: 20px;
  }

  .faq-social-links {
    margin-top: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 36px 12px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 16px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .testimonial-item-author-content h2 {
    font-size: 18px;
  }

  .cta-contact-list ul li {
    font-size: 18px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .footer-newsletter-form h2 {
    font-size: 18px;
  }

  .about-footer {
    margin-bottom: 30px;
  }

  .about-footer-content h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-links {
    max-width: 100%;
  }

  .footer-links h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-copyright {
    padding: 15px 0;
    margin-top: 20px;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .approach-item-image-box {
    padding: 20px;
  }

  .approach-item-image-content h3 {
    font-size: 18px;
  }

  .approach-item {
    width: 100%;
    padding: 20px;
  }

  .approach-item .icon-box {
    margin-bottom: 20px;
  }

  .approach-item-content h3 {
    font-size: 18px;
  }

  .what-we-do-item {
    width: 100%;
    padding: 20px;
  }

  .what-we-do-item .icon-box {
    margin-bottom: 20px;
  }

  .what-we-do-item-content h3 {
    font-size: 18px;
  }

  .what-we-do-image.image-1 figure {
    border-width: 5px;
    border-radius: 14px;
  }

  .what-we-do-image.image-2 {
    margin-bottom: 40px;
  }

  .what-we-do-image.image-2 figure {
    margin-left: -90px;
  }

  .team-item-body {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .team-item-content h2 {
    font-size: 18px;
  }

  .page-category-list .page-category-list-title {
    padding: 12px 20px;
    font-size: 18px;
  }

  .page-single-image {
    margin-bottom: 20px;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry h3 {
    font-size: 18px;
  }

  .service-entry ul {
    gap: 10px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .service-offer-box-item {
    width: 100%;
  }

  .service-why-choose-images {
    gap: 20px;
  }

  .service-why-choose-image {
    width: 100%;
  }

  .page-pagination ul li a,
  .page-pagination ul li span {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }

  .post-single-meta ol li,
  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-size: 30px;
    padding: 60px 20px 20px 20px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 18px;
  }

  .portfolio-entry h2 {
    font-size: 26px;
  }

  .portfolio-creative-image,
  .portfolio-creative-list {
    width: 100%;
  }

  .portfolio-image-gallary-box {
    gap: 15px;
  }

  .portfolio-image-gallary-item {
    width: calc(50% - 7.5px);
  }

  .team-member-social-list h2 {
    font-size: 18px;
  }

  .team-about-contact-list ul {
    gap: 10px;
  }

  .team-about-contact-list ul li {
    padding: 12px 15px;
    gap: 10px;
  }

  .team-about-contact-list ul li img {
    max-width: 18px;
  }

  .team-experience-list-item {
    width: 100%;
    padding: 20px;
  }

  .team-experience-list-item .icon-box {
    margin-bottom: 20px;
  }

  .team-experience-list-content h3 {
    font-size: 18px;
  }

  .team-skill-content {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

  .team-skill-image figure img {
    aspect-ratio: 1 / 0.998;
  }

  .team-skill-content .section-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .skills-progress-bar .skillbar .skill-progress {
    height: 8px;
  }

  .team-skill-box .contact-us-form {
    padding: 20px;
  }

  .contact-form-image-box,
  .contact-us-form {
    padding: 15px;
  }

  .contact-form-image-box {
    min-height: auto;
  }

  .contact-info-list ul li {
    gap: 10px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }
}

@media only screen and (max-width: 580px) {
  .page-header {
    padding: 80px 0 60px;
  }

  .page-header {
    min-height: 270px;
  }

  .page-header-box h1 {
    margin-bottom: 5px;
    font-size: 25px;
  }
}

/*--------------------------------
     Custom Responsive Start      
----------------------------------*/

/* @media (max-width: 1199px) {
	.hero.hero-slider-layout .hero-image-slider .hero-slider-img img {
		height: 85vh;
	}
}

@media (max-width: 991px) {
	.hero.hero-slider-layout .hero-image-slider .hero-slider-img img {
		height: 70vh;
	}
}

@media (max-width: 767px) {
	.hero .container {
		top: -300px;
	}

	.hero.hero-slider-layout .hero-image-slider .hero-slider-img img {
		height: 70vh;
		object-position: center;
	}

	.section-sub-heading .section-sub-title,
	.section-title .section-sub-title {
		padding: 8px 12px 8px 12px;
	}

	.section-sub-heading .section-sub-title,
	.section-title .section-sub-title {
		font-size: 8px;
	}

	.hero-desc {
		font-size: 15px;
		line-height: 1.6;
	}
} */

/************************************/
/*** Modern Industries Cards ***/
/************************************/

.industries-grid {
  padding: 100px 0;
  background: #120e08;
  border-bottom: 1px solid #6950198a;
}

.industry-modern-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #0f0f10, #181818);
  border: 1px solid rgba(200, 137, 31, 0.18);
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  transition: 0.45s;
}

.industry-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #c8891f;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.45s;
}

.industry-modern-card:hover {
  transform: translateY(-8px);
  border-color: #c8891f;
  box-shadow: 0 20px 45px rgba(200, 137, 31, 0.15);
}

.industry-modern-card:hover::before {
  transform: scaleY(1);
}

.industry-number {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.industry-thumb {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(200, 137, 31, 0.35);
  transform: rotate(-4deg);
  transition: 0.45s;
}

.industry-modern-card:hover .industry-thumb {
  transform: rotate(0deg) scale(1.05);
}

.industry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 40px;
  background: rgba(200, 137, 31, 0.12);
  border: 1px solid rgba(200, 137, 31, 0.25);
  color: #e8b64f;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.industry-info span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8b64f;
}

.industry-info h3 {
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.industry-info p {
  color: #bebebe;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 767px) {
  .industry-modern-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .industry-thumb {
    width: 115px;
    height: 115px;
    transform: none;
  }

  .industry-info h3 {
    font-size: 24px;
  }
}

/************************************/
/*** Gallery Section ***/
/************************************/

/* Section */

.gallery-section {
  position: relative;
  background:
    radial-gradient(circle at top, #8d6b0015, transparent 40%), #050505;
}

/* Marquee */

.gallery-section .marquee {
  overflow: hidden;
  position: relative;
}

/* Fade edges */

.gallery-section .marquee::before,
.gallery-section .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.gallery-section .marquee::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.gallery-section .marquee::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}

/* Track */

.gallery-section .marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
}

/* Animations */

.gallery-section .left-scroll {
  animation: leftMove 28s linear infinite;
}

.gallery-section .right-scroll {
  animation: rightMove 28s linear infinite;
}

/* Pause */

.gallery-section .marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Cards */

.gallery-section .gallery-card {
  width: 350px;
  height: 250px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.18);
  transition: 0.45s;
  cursor: pointer;
  border-radius: 15px;
}

.gallery-section .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* Gold shine border */

.gallery-section .gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg,
      transparent 20%,
      rgba(212, 175, 55, 0.4),
      transparent 80%);
  transform: translateX(-120%);
  transition: 0.7s;
  z-index: 2;
}

.gallery-section .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #d4af37, transparent, #d4af37) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

/* Hover */

.gallery-section .gallery-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.22);
}

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

.gallery-section .gallery-card:hover::before {
  transform: translateX(120%);
}

.gallery-section .gallery-card:hover::after {
  opacity: 1;
}

/* Keyframes */

@keyframes leftMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes rightMove {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Responsive */

@media (max-width: 768px) {
  .gallery-section .section-title {
    font-size: 34px;
  }

  .gallery-section .gallery-card {
    width: 230px;
    height: 160px;
  }

  .gallery-section .left-scroll,
  .gallery-section .right-scroll {
    animation-duration: 20s;
  }

  .gallery-section .marquee::before,
  .gallery-section .marquee::after {
    width: 70px;
  }
}

/************************************/
/*** Brand Gallery ***/
/************************************/

.brand-gallery {
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(105, 80, 25, 0.54);
}

.brand-gallery-wrapper {
  overflow: hidden;
}

.brand-gallery-marquee {
  overflow: hidden;
  position: relative;
}

.brand-gallery-track {
  display: flex;
  width: max-content;
  gap: 20px;
}

.brand-gallery-card {
  flex: 0 0 auto;
  width: 210px;
  height: 100px;
  background: #0f0f0f;
  border: 1px solid rgba(200, 137, 31, 0.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px 20px;
  transition: 0.35s ease;
}

.brand-gallery-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: 0.35s ease;
}

.brand-gallery-card:hover {
  border-color: #c8891f;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(200, 137, 31, 0.15);
}

.brand-gallery-card:hover img {
  transform: scale(1.04);
}

/* Mobile */
@media (max-width: 768px) {
  .brand-gallery-card {
    width: 170px;
    height: 85px;
    padding: 8px 10px;
  }
}

/* Infinite Marquee */

.brand-scroll-right {
  animation: brandScrollRight 65s linear infinite;
}

.brand-scroll-left {
  animation: brandScrollLeft 65s linear infinite;
}

@keyframes brandScrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes brandScrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Pause on Hover */

.brand-gallery-marquee:hover .brand-gallery-track {
  animation-play-state: paused;
}

/* Responsive */

@media (max-width: 991px) {
  .brand-gallery-card {
    width: 140px;
    height: 70px;
  }

  .brand-gallery-track {
    gap: 14px;
  }

  .brand-gallery-card {
    border-radius: 12px;
  }

  .brand-scroll-right,
  .brand-scroll-left {
    animation-duration: 60s;
  }
}

/*=========================
 Founder Section - Luxury Modern
==========================*/

.founder-section {
  padding: 100px 0;
  background: #120e08;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #6950198a;
}

.founder-section::before,
.founder-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.founder-section::before {
  width: 300px;
  height: 300px;
  top: -120px;
  left: -120px;
  background: #d6a437;
}

.founder-section::after {
  width: 300px;
  height: 300px;
  bottom: -180px;
  right: -120px;
  background: #7a5317;
}

/* Equal Height Cards */

.founder-intro,
.founder-right-wrap {
  background: linear-gradient(180deg, #111, #0b0b0b);
  border: 1px solid rgba(214, 164, 55, 0.18);
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(18px);
}

/* Founder Image */

.founder-image-box {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 35px;
  /* Center + bottom spacing */
}

.founder-image-box::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, #9c6319, #4c3c1b);
  border-radius: 28px;
  z-index: 0;
}

.founder-image-box img {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.founder-title {
  font-size: 56px;
  line-height: 1;
  color: #fff;
  margin: 18px 0;
}

.founder-title span {
  color: #d6a437;
  font-family: var(--accent-font);
  font-style: italic;
}

.founder-role {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d6a437, #8a5a16);
  color: #fff;
  font-weight: 600;
  margin-bottom: 22px;
}

.founder-lead {
  color: #cfcfcf;
  line-height: 1.9;
}

/* Manifesto */

.founder-manifesto {
  background: linear-gradient(135deg, #181818, #120d05);
  border: 1px solid rgba(214, 164, 55, 0.28);
  border-radius: 24px;
  padding: 35px;
  margin-bottom: 35px;
  position: relative;
}

.founder-manifesto__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.founder-manifesto__header span {
  color: #d6a437;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 700;
}

.founder-manifesto__header i {
  font-size: 46px;
  color: rgba(214, 164, 55, 0.22);
}

.founder-manifesto p {
  color: #f0f0f0;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0;
}

/* Experience */

.founder-experience h3,
.founder-traits h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 16px;
}

.founder-experience p {
  color: #cfcfcf;
  line-height: 1.9;
}

/* Traits */

.founder-traits {
  margin-top: 35px;
}

.founder-traits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trait-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #141414;
  border: 1px solid rgba(214, 164, 55, 0.22);
  border-radius: 18px;
  padding: 18px;
  transition: 0.35s;
}

.trait-card:hover {
  transform: translateY(-5px);
  border-color: #d6a437;
  box-shadow: 0 16px 36px rgba(214, 164, 55, 0.15);
}

.trait-card i {
  color: #d6a437;
  font-size: 22px;
  min-width: 24px;
}

.trait-card span {
  color: #fff;
  font-size: 15px;
}

/* Responsive */

@media (max-width: 991px) {
  .founder-title {
    font-size: 42px;
  }

  .founder-image-box img {
    height: 360px;
  }

  .founder-manifesto p {
    font-size: 18px;
  }

  .founder-traits-grid {
    grid-template-columns: 1fr;
  }

  .founder-intro,
  .founder-right-wrap {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .founder-title {
    font-size: 34px;
  }

  .founder-image-box {
    width: 240px;
    height: 240px;
  }

  .founder-image-box img {
    width: 240px;
    height: 240px;
  }

  .founder-manifesto {
    padding: 25px;
  }
}

/* ================================
   WORK / CASE STUDIES
================================ */

.work-showcase {
  padding: 100px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.work-showcase::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle,
      rgba(167, 105, 26, 0.18),
      transparent 70%);
  pointer-events: none;
}

/* Featured Case */

.work-showcase .featured-case {
  background: linear-gradient(135deg, #0b0b0b, #111);
  border: 1px solid rgba(167, 105, 26, 0.35);
  border-radius: 24px;
  padding: 22px;
  margin: 50px 0;
}

.work-showcase .featured-case-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 100%;
}

.work-showcase .featured-case-image img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-showcase .featured-case:hover .featured-case-image img {
  transform: scale(1.05);
}

.work-showcase .featured-case-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #d8a237;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}

.work-showcase .featured-case-content {
  padding-left: 20px;
}

.work-showcase .case-category {
  color: #d8a237;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.work-showcase .featured-case-content h3 {
  color: #fff;
  font-size: 34px;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.work-showcase .featured-case-content p {
  color: #bdbdbd;
  line-height: 1.8;
}

.work-showcase .case-metrics {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.work-showcase .metric {
  flex: 1;
  padding: 18px;
  border: 1px solid rgba(167, 105, 26, 0.25);
  border-radius: 16px;
  background: #0c0c0c;
  text-align: center;
}

.work-showcase .metric h4 {
  color: #fff;
  font-size: 30px;
  margin: 0;
}

.work-showcase .metric span {
  color: #bdbdbd;
  font-size: 14px;
}

/* Case Cards */

.work-showcase .case-grid {
  margin-top: 20px;
}

.work-showcase .case-card {
  background: #0b0b0b;
  border: 1px solid rgba(167, 105, 26, 0.22);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

.work-showcase .case-card:hover {
  transform: translateY(-8px);
  border-color: #d8a237;
  box-shadow: 0 22px 45px rgba(216, 162, 55, 0.12);
}

.work-showcase .case-card-image {
  position: relative;
  overflow: hidden;
}

.work-showcase .case-card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-showcase .case-card:hover .case-card-image img {
  transform: scale(1.08);
}

.work-showcase .case-number {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(216, 162, 55, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.work-showcase .case-card-content {
  padding: 24px;
}

.work-showcase .case-card-content span {
  color: #d8a237;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-showcase .case-card-content h4 {
  color: #fff;
  margin: 10px 0;
  font-size: 24px;
}

.work-showcase .case-card-content p {
  color: #bdbdbd;
  line-height: 1.7;
}

/* Responsive */

@media (max-width: 991px) {
  .work-showcase .featured-case {
    padding: 18px;
  }

  .work-showcase .featured-case-content {
    padding: 30px 0 0;
  }

  .work-showcase .featured-case-content h3 {
    font-size: 30px;
  }

  .work-showcase .case-metrics {
    flex-wrap: wrap;
  }

  .work-showcase .metric h4 {
    font-size: 20px;
  }
}

/* ===================================
   EXPERIENCES SHOWCASE
=================================== */

.experience-showcase {
  padding: 100px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.experience-showcase::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle,
      rgba(216, 162, 55, 0.15),
      transparent 70%);
}

.experience-feature {
  background: linear-gradient(135deg, #0a0a0a, #111);
  border: 1px solid rgba(216, 162, 55, 0.25);
  border-radius: 28px;
  padding: 30px;
  margin: 60px 0;
}

.experience-label {
  color: #d8a237;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.experience-feature-content h3 {
  color: #fff;
  font-size: 42px;
  line-height: 1.15;
  margin: 16px 0;
}

.experience-feature-content p {
  color: #bdbdbd;
  line-height: 1.9;
}

.experience-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.experience-showcase .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0c0c0c;
  border: 1px solid rgba(216, 162, 55, 0.18);
  border-radius: 14px;
  padding: 16px;
  transition: 0.35s;
}

.experience-showcase .highlight-item:hover {
  border-color: #d8a237;
  transform: translateY(-4px);
}

.experience-showcase .highlight-item span {
  color: #fff;
  font-weight: 500;
}

.experience-feature-image {
  position: relative;
}

.experience-feature-image img {
  width: 100%;
  border-radius: 22px;
}

.experience-showcase .floating-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(216, 162, 55, 0.25);
  border-radius: 16px;
  padding: 18px;
  max-width: 240px;
}

.experience-showcase .floating-card h4 {
  color: #fff;
  margin-bottom: 8px;
}

.experience-showcase .floating-card p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
}

/* Cards */

.experience-grid {
  margin-top: 20px;
}

.experience-card {
  background: #0b0b0b;
  border: 1px solid rgba(216, 162, 55, 0.18);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: 0.35s;
  position: relative;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 162, 55, 0.06), transparent);
  opacity: 0;
  transition: 0.35s;
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: #d8a237;
  box-shadow: 0 22px 45px rgba(216, 162, 55, 0.12);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 162, 55, 0.08);
  border: 1px solid rgba(216, 162, 55, 0.22);
  border-radius: 18px;
  margin-bottom: 20px;
}

.experience-card h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
}

.experience-card p {
  color: #bdbdbd;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .experience-feature {
    padding: 22px;
  }

  .experience-feature-content h3 {
    font-size: 34px;
  }

  .experience-highlight {
    grid-template-columns: 1fr;
  }

  .experience-feature-image {
    margin-top: 30px;
  }

  .experience-showcase .floating-card {
    display: none;
  }
}

.experience-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 162, 55, 0.08);
  border: 1px solid rgba(216, 162, 55, 0.25);
  border-radius: 18px;
  transition: all 0.35s ease;
}

.experience-icon i {
  font-size: 26px;
  color: #d8a237;
}

.experience-card:hover .experience-icon {
  background: #d8a237;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216, 162, 55, 0.25);
}

.experience-card:hover .experience-icon i {
  color: #050505;
}

/* ==============================
   CONTENT / DIGITAL
============================== */

.content-digital-section {
  padding: 100px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.content-digital-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle,
      rgba(216, 162, 55, 0.15),
      transparent 70%);
}

.content-digital-wrap {
  margin-top: 55px;
  background: linear-gradient(135deg, #090909, #101010);
  border: 1px solid rgba(216, 162, 55, 0.25);
  border-radius: 30px;
  padding: 40px;
}

.content-digital-section .content-badge {
  display: inline-block;
  background: rgba(216, 162, 55, 0.12);
  border: 1px solid rgba(216, 162, 55, 0.3);
  color: #d8a237;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.content-digital-info h3 {
  color: #fff;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.content-digital-info p {
  color: #bdbdbd;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Pipeline */

.content-digital-section .content-pipeline {
  position: relative;
}

.content-pipeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(216, 162, 55, 0.25);
}

.content-digital-section .pipeline-step {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
}

.content-digital-section .pipeline-icon {
  width: 56px;
  height: 56px;
  background: #121212;
  border: 1px solid rgba(216, 162, 55, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.35s;
  z-index: 2;
}

.content-digital-section .pipeline-icon i {
  color: #d8a237;
  font-size: 22px;
}

.content-digital-section .pipeline-step:hover .pipeline-icon {
  background: #d8a237;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(216, 162, 55, 0.25);
}

.content-digital-section .pipeline-step:hover .pipeline-icon i {
  color: #050505;
}

.content-digital-section .pipeline-step h4 {
  color: #fff;
  margin: 0 0 5px;
  font-size: 20px;
}

.content-digital-section .pipeline-step span {
  color: #9f9f9f;
  font-size: 14px;
}

/* Visual */
.content-digital-section .content-visual {
  position: relative;
}

.content-digital-section .content-visual img {
  width: 100%;
  border-radius: 22px;
}

.content-digital-section .floating-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(216, 162, 55, 0.25);
  border-radius: 18px;
  padding: 16px;
  max-width: 250px;
}

.content-digital-section .floating-stat.top {
  top: 20px;
  left: -25px;
}

.content-digital-section .floating-stat.bottom {
  right: -25px;
  bottom: 20px;
}

.content-digital-section .floating-stat i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(216, 162, 55, 0.1);
  color: #d8a237;
  font-size: 20px;
}

.content-digital-section .floating-stat h4 {
  color: #fff;
  margin: 0 0 3px;
  font-size: 18px;
}

.content-digital-section .floating-stat span {
  color: #9f9f9f;
  font-size: 13px;
}

/* Responsive */

@media (max-width: 991px) {
  .content-digital-section .content-digital-wrap {
    padding: 24px;
  }

  .content-digital-section .content-digital-info h3 {
    font-size: 34px;
  }

  .content-digital-section .content-visual {
    margin-top: 35px;
  }

  .content-digital-section .floating-stat {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 15px;
    max-width: 100%;
  }

  .content-digital-section .floating-stat.top {
    top: 10px;
    left: 0px;
  }

  .content-digital-section .floating-stat.bottom {
    right: 0px;
    bottom: 0px;
  }
}
