@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
}

/* ---------custon color theme ---------- */
.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px !important;
  border: none;
  outline: none;
  border-radius: 60px;
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%) !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s ease;
  box-shadow: 0 12px 30px rgba(184, 134, 11, .25);
  text-decoration: none;
}

/* Shine Effect */
.theme-btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 60%;
  height: 300%;
  background: rgba(255, 255, 255, .18);
  transform: rotate(25deg);
  transition: .6s;
}

/* Hover */
.theme-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(184, 134, 11, .35);
  color: #fff;
}

.theme-btn:hover::before {
  left: 130%;
}

/* Icon */
.theme-btn i {
  font-size: 14px;
  transition: .3s;
}

.theme-btn:hover i {
  transform: translateX(4px);
}

.outline-btn {
  padding: 16px 34px;

  border: 1px solid #c89b3c;

  border-radius: 60px;

  text-decoration: none;

  color: #1a1a1a;

  font-weight: 600;

  transition: 0.4s ease;
}

.outline-btn:hover {
  background: #c89b3c;
  color: #fff;
}

/* =========================
        HEADER
    ========================== */

.header.active {
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  padding: 18px 0;
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Logo */
.header .navbar .logo {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo img {
  width: 120px;
}

/* Nav */

.navbar-nav {
  gap: 45px;
  align-items: center;
}

.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-transform: capitalize;
  transition: 0.3s ease;
  position: relative;
}

/* Active */

.navbar-nav .nav-link.active {
  color: #d6b25e;
}

/* Hover */

.navbar-nav .nav-link:hover {
  color: #d6b25e;
}

.navbar-nav .nav-item>.nav-link {
  padding: 0;
  border-bottom: 2px solid transparent;
}

.navbar-nav .nav-item>.nav-link:hover {
  border-color: #d6b25e;
}

/* Dropdown */

.dropdown-menu {
  border: none;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
  padding: 12px 18px;
  border-radius: 10px;
  transition: 0.3s;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #d6b25e;
  color: #fff;
}

/* ----------hero section start -----------  */
.hero-section {
  display: flex;
  align-items: center;
  padding: 80px 0;
  padding-bottom: 15px;
}

.hero-section {
  background: #050505;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #d6a15f;
}

.hero-section .content .sub-title1 {
  display: block;
  font-size: 15px;
  letter-spacing: 2px;
  margin: 5px 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom,
      #fff6b7 0%,
      #f7d96b 18%,
      #d4a017 35%,
      #fff0a5 50%,
      #b8860b 68%,
      #7a4e00 85%,
      #f8e08e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 #fff2b0,
    0 2px 0 #d4a017,
    0 3px 0 #9c6b00,
    0 4px 8px rgba(0, 0, 0, 0.35);
  letter-spacing: 1px;
}

.hero-section .content h1 {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;

  /* Gold metallic gradient like image */
  background: linear-gradient(to bottom,
      #fff6b7 0%,
      #f7d96b 18%,
      #d4a017 35%,
      #fff0a5 50%,
      #b8860b 68%,
      #7a4e00 85%,
      #f8e08e 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* 3D golden depth */
  text-shadow:
    0 1px 0 #fff2b0,
    0 2px 0 #d4a017,
    0 3px 0 #9c6b00,
    0 4px 8px rgba(0, 0, 0, 0.35);

  letter-spacing: 1px;
}


.hero-section .content .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 3px;
  color: #c99555;
  font-size: 20px;
}

.hero-section .content .divider span {
  width: 80px;
  height: 1px;
  background: #c99555;
  display: block;
}

.hero-section .content p {
  color: #e0c29d;
  font-family: 'Poppins', sans-serif;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  height: 65vh;
}

/* Cards */
.hero-section .hero-wrapper .hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  cursor: pointer;
  border: 1px solid #9c6c42;
}

.hero-section .hero-wrapper .hero-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

/* Content */
.hero-section .hero-wrapper .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background .2s linear;
}

.hero-section .hero-wrapper .hero-card:hover .hero-content {
  background: linear-gradient(0deg, rgb(10 9 9 / 89%), rgba(207, 31, 31, 0), rgb(220 229 220 / 0%));
}

/* Text */
.hero-section .hero-text {
  transform: translateY(90px);
  opacity: 0;
  transition: 0.7s ease;
}

.hero-section .hero-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(to bottom,
      #fff6b7 0%,
      #f7d96b 18%,
      #d4a017 35%,
      #fff0a5 50%,
      #b8860b 68%,
      #7a4e00 85%,
      #f8e08e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 #fff2b0,
    0 2px 0 #d4a017,
    0 3px 0 #9c6b00,
    0 4px 8px rgba(0, 0, 0, 0.35);
  letter-spacing: 1px;
}


.hero-section .hero-text p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
  font-weight: 500;

  /* Glossy gold text */
  background: linear-gradient(to bottom,
      #fff4b0 0%,
      #f7d76a 20%,
      #d89b1e 40%,
      #8b5a00 65%,
      #f7d76a 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 1px 0 rgba(255, 240, 180, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.35);
}

.hero-section .hero-text a {
  text-decoration: none;
  font-weight: 600;
  color: #dcc3a5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.hero-section .hero-text a i {
  transition: 0.3s;
}

.hero-section .hero-text a:hover i {
  transform: translateX(5px);
}

/* Default active first card */
.large-card .hero-text {
  transform: translateY(0);
  opacity: 1;
}

/* Hover Effects */
.hero-card:hover video {
  transform: scale(1.08);
}

.hero-card:hover .hero-text {
  transform: translateY(0);
  opacity: 1;
}


/* Animated Border Glow */
/* .hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 35px;
  padding: 1px;
  background: linear-gradient(0deg, rgb(10 9 9 / 89%), rgba(207, 31, 31, 0), rgb(220 229 220 / 0%));
  z-index: 3;
  pointer-events: none;
} */

/* Responsive */
@media(max-width:991px) {

  .hero-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-card {
    height: 500px;
  }

  .hero-letter {
    font-size: 100px;
  }

  .hero-text {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

/* --------------floting-section ----------- */
.floting-section {
  background-color: #111;
  padding: 20px 0;
  color: #9c6c42;
}

.floting-section .stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #9c6c42;
  border-radius: 10px;
  padding: 20px 10px;
}

.floting-section .stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-right: 1px solid #6b3f1d;
}

.floting-section .stat-box:nth-last-child(1) {
  border-right: none;
}

.floting-section .stat-box i {
  font-size: 30px;
  background: linear-gradient(135deg, rgb(212, 175, 55) 0%, rgb(245, 222, 179) 25%, rgb(184, 134, 11) 55%, rgb(107, 63, 29) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.floting-section .stat-text h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
    background: linear-gradient(105deg, rgb(212, 175, 55) 0%, rgb(245, 222, 179) 25%, rgb(184, 134, 11) 55%, rgb(107, 63, 29) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.floting-section .stat-text p {
  margin: 0;
  font-size: 16px;
     background: linear-gradient(90deg, rgb(212, 175, 55) 0%, rgb(245, 222, 179) 25%, rgb(184, 134, 11) 55%, rgb(107, 63, 29) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* =========================
      ABOUT SECTION
========================= */

.about-section {
  background: #f5f1eb;
  position: relative;
  overflow: hidden;
}

.about-section .about-images {
  min-height: 650px;
}

.about-section .main-img {
  border-radius: 30px;
}

.about-section .main-img img {
  height: 650px;
  object-fit: cover;
  transition: 0.5s ease;
}

.about-section .main-img:hover img {
  transform: scale(1.);
}

.about-section .small-img {
  width: 260px;
  height: 300px;
  position: absolute;
  bottom: -40px;
  right: -20px;
  border: 10px solid #f5f1eb;
}

.about-section .small-img img {
  object-fit: cover;
}


.about-section .experience-card {
  width: 180px;
  height: 180px;
  background: #1a1a1a;
  color: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40px;
  right: 20px;
  color: #fff;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.2);
  animation: floatCard 4s ease-in-out infinite;
}

.about-section .experience-card h2 {
  font-size: 58px;
  color: #c89b3c;
  font-family: serif;
  margin: 0;
}

.about-section .experience-card p {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-top: 8px;
  color: #fff;
}

@keyframes floatCard {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }

}

.about-section .about-tag {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(200, 155, 60, 0.12);
  color: #c89b3c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section .about-heading {
  font-size: 68px;
  line-height: 1.05;
  margin-top: 25px;
  color: #1a1a1a;
  font-weight: 700;
}

.about-section .about-text {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.9;
  color: #666;
}

.about-section .about-feature {
  margin-top: 35px;
}

.about-section .feature-number {
  min-width: 60px;
  height: 60px;

  border-radius: 50%;

  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  font-weight: 700;
  color: #c89b3c;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05);
}

.about-section .about-feature h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.about-section .about-feature p {
  color: #666;
  line-height: 1.7;
}


/*=======services  SECTION=============== */
.services-section {
  padding: 50px 0;
}

/* TITLE */
.section-title {
  text-align: center;
}

.section-title span {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e5d7b8;
  color: #a78232;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}


/* CARD */
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 25px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */

.service-card .image {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  height: 20rem;
}

.service-card .image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s linear;
}

/* Hover Zoom */

.service-card:hover .image img {
  transform: scale(1.5);
}

/* Icon Box */

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 22px;

  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Title */

.service-card h4 {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

/* Paragraph */

.service-card p {
  font-size: 14px;
  color: #666;
  margin: 10px 0 15px;
  line-height: 1.6;
}

/* Link */

.service-card a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.service-card a i {
  transition: 0.3s;
}

/* Hover Effect */

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card a:hover {
  color: #b8860b;
}

.service-card a:hover i {
  transform: translateX(5px);
}

/* =========================Portfolio Section=========================*/
.projects-section {
  padding: 80px 0;
}

/* Heading */

.section-title {
  text-align: center;
  font-size: 55px;
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 50px;
  color: #111;
}

.section-title span {

  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
           Filter Menu
        ========================= */

.filter-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  border: none;
  outline: none;
  padding: 12px 24px;
  border-radius: 50px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  transition: .4s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-transform: lowercase;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  transform: translateY(-3px);
}

/* =========================
           Masonry Gallery
        ========================= */

.masonry {
  column-count: 3;
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;

  overflow: hidden;
  border-radius: 12px;

  position: relative;
  background: #fff;
}

/* Gallery Link */

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
}

/* Image */

.gallery-item img {
  width: 100%;
  display: block;

  transition: .5s ease;
}

/* Hover Zoom */

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================
           Overlay
        ========================= */

.overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: .4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Plus Icon */

.overlay i {
  width: 65px;
  height: 65px;

  border-radius: 50%;
  background: #fff;
  color: #111;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 24px;

  transition: .4s ease;
}

.gallery-item:hover .overlay i {
  transform: rotate(90deg);
}

/* =========================
           Hide Items
        ========================= */

.hide {
  display: none;
}

/* =========================
           Responsive
        ========================= */

@media(max-width:992px) {

  .masonry {
    column-count: 2;
  }

  .section-title {
    font-size: 42px;
  }
}

@media(max-width:576px) {

  .masonry {
    column-count: 1;
  }

  .section-title {
    font-size: 34px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .overlay i {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}



/* ==============WHY SECTION --======= */
.why-section {
  padding: 80px 0;
}

.mini-title {
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-title::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #999;
  display: block;
}

.main-heading {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  color: #0d1b2a;
  margin-bottom: 30px;
}

.main-heading span {
  /* color: #c89b2d; */
     background: linear-gradient(90deg, rgb(212, 175, 55) 0%, rgb(245, 222, 179) 25%, rgb(184, 134, 11) 55%, rgb(107, 63, 29) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-text {
  color: #444;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 500px;
}

.feature-box {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #ddd;
}

.feature-icon {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #e9ede9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b938f;
  font-size: 22px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.feature-text {
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.img-large {
  height: 280px;
}

.img-small {
  height: 230px;
}




/* ==============footer ================== */

.footer-section {
  background: #121212;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;

  /* Gold Gradient Text */
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.4s;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  color: #fff;
}

.newsletter-text {
  color: #bdbdbd;
  margin-bottom: 18px;
  font-size: 16px;
}

.newsletter-box {
  display: flex;
  max-width: 420px;
}

.newsletter-box input {
  border: none;
  padding: 6px 18px;
  width: 70%;
  outline: none;
  background: #f1f1f1;
}

.newsletter-box button {
  border: none;
  padding: 10px 8px;
  width: 30%;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  transition: 0.4s;
}

.newsletter-box button:hover {
  opacity: 0.9;
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;

  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #bdbdbd;
  transition: 0.3s;
  font-size: 17px;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 20px;
  color: #bbb;
  font-size: 15px;
}

.footer-bottom span {
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.heart {
  color: #ff3b3b;
}


/* -------------brand section ============ */
.brand-section {
  position: relative;
  overflow: hidden;
  /* padding: 90px 0; */
  background: #f7f4ef;
}

/* Background Pattern */
.brand-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
}

/* Wave Lines */
.brand-section .wave-bg {
  position: absolute;
  inset: 0;
  opacity: .08;
  z-index: 1;
}

.brand-section .wave-bg svg {
  width: 100%;
  height: 100%;
}



.title {
  text-align: center;
  margin-bottom: 70px;
}

.title h2 {
  font-size: 56px;
  font-weight: 800;
  color: #222;
  letter-spacing: -1px;
}

/* Slider */
.brand-section .slider {
  position: relative;
  overflow: hidden;
}

/* Blur Effect */
.brand-section .slider::before,
.brand-section .slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
}

.brand-section .slider::before {
  left: 0;
  background: linear-gradient(to right, #f7f4ef, transparent);
}

.brand-section .slider::after {
  right: 0;
  background: linear-gradient(to left, #f7f4ef, transparent);
}

.brand-section .slide-track {
  display: flex;
  width: calc(250px * 20);
  /* animation: scroll 25s linear infinite; */
  gap: 50px;
}

.brand-section .logo-slider.left-slider {
  margin-bottom: 1rem;
}

.brand-section .slide {
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* border: 1px solid #8b938f; */
  border-radius: 10px;
}

.brand-section .slide img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  transition: .4s ease;
}

.brand-section .slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Track */
.slide-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

/* Reverse */
.reverse-track {
  animation: scrollRight 25s linear infinite;
}

/* Right Animation */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Left Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media(max-width:768px) {

  .brand-section {
    padding: 70px 0;
  }

  .title h2 {
    font-size: 36px;
  }

  .slide {
    width: 150px;
  }

  .slide img {
    max-width: 120px;
  }
}


/* -------------testimonial section ------- */

.testimonial-section {
  padding: 0px 0;
  overflow: hidden;
}

/* Slider */
.testimonial-section .swiper {
  padding-bottom: 60px;
}

/* Card */
.testimonial-section .testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .4s ease;
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-section .card-content {
  padding: 35px 28px 90px;
  position: relative;
}

/* Quote */
.testimonial-section .quote-icon {
  font-size: 34px;
  margin-bottom: 20px;
  display: block;
}



.testimonial-section .quote-icon {
  color: #c89b2d;
}


.testimonial-section .testimonial-text {
  color: #b4b4b4;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* Bottom Shape */
.testimonial-section .bottom-area {
  position: relative;
  height: 120px;
  color: #fff;
}

.testimonial-section .bottom-area svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}


/* COC Brand Theme */
.testimonial-section .bottom-area {
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  position: relative;
}

/* Luxury Shine */
.testimonial-section .bottom-area::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 60%;
  height: 300%;
  background: rgba(255, 255, 255, .15);
  transform: rotate(25deg);
  animation: shine 5s linear infinite;
}

@keyframes shine {

  0% {
    left: -60%;
  }

  100% {
    left: 130%;
  }
}


/* Profile */
.testimonial-section .profile {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.testimonial-section .profile img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
}

.testimonial-section .user-info {
  padding-top: 45px;
}

.testimonial-section .user-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.testimonial-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.testimonial-section .social-icons i {
  font-size: 13px;
  cursor: pointer;
  transition: .3s;
}

.testimonial-section .social-icons i:hover {
  transform: translateY(-3px);
}

/* Swiper Dots */
.testimonial-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
}

.testimonial-section .swiper-pagination-bullet-active {
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
}

/* --------blog section -------------  */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-img img {
  height: 260px;
  object-fit: cover;
}

/* ----•	Vision & mission  ------------ */

.vision-mission-wrap {
  background: #f7f4ee;
  position: relative;
  overflow: hidden;
}

/* Section Heading */


.section-title h2 {
  font-size: 54px;
  font-weight: 800;
  margin-top: 15px;
  color: #111;
}

/* Card */
.vm-modern-card {
  position: relative;
  padding: 60px 45px;
  border-radius: 35px;
  overflow: hidden;
  z-index: 1;
  min-height: 420px;
  transition: 0.5s ease;
  background: #111;
}

/* Gradient Border */
.vm-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 35px;
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Hover */
.vm-modern-card:hover {
  transform: translateY(-12px);
}

/* Background Shape */
.shape-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.18),
      rgba(107, 63, 29, 0.08));
  top: -120px;
  right: -120px;
}

/* Top */
.vm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Tag */
.vm-tag {
  color: #c9a54d;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Icon */
.vm-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.vm-icon i {
  color: #fff;
  font-size: 30px;
}

/* Heading */
.vm-modern-card h3 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
}

/* Text */
.vm-modern-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 35px;
}

/* Bottom Line */
.vm-line {
  width: 120px;
  height: 5px;
  border-radius: 30px;
  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);
}

/* Responsive */
@media (max-width: 991px) {

  .section-title h2 {
    font-size: 40px;
  }

  .vm-modern-card {
    padding: 45px 30px;
    min-height: auto;
  }

  .vm-modern-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {

  .section-title h2 {
    font-size: 32px;
  }

  .vm-modern-card {
    border-radius: 25px;
    padding: 35px 25px;
  }

  .vm-modern-card h3 {
    font-size: 25px;
  }

  .vm-icon {
    width: 65px;
    height: 65px;
  }

  .vm-icon i {
    font-size: 24px;
  }
}


/* Text */
.loading-text h1 {
  font-size: 150px;
  font-weight: 800;
  letter-spacing: 18px;
  color: transparent;
  -webkit-text-stroke: 2px #d4af37;
  position: relative;
  animation: textZoom 2s ease-in-out infinite;
  font-family: sans-serif;
}

/* Gold Shine */
.loading-text h1::before {
  content: "COC";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;

  background: linear-gradient(135deg,
      #d4af37 0%,
      #f5deb3 25%,
      #b8860b 55%,
      #6b3f1d 100%);

  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation:
    fillText 2.5s linear infinite,
    gradientMove 4s ease infinite;
}

/* Fill Animation */
@keyframes fillText {

  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

/* Gradient Move */
@keyframes gradientMove {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* -----------our team setion =========== */
.team-section {
  padding: 100px 0;
  overflow: hidden;
}

/* CARD */

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-12px);
}

.team-image {
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: 0.7s ease;
}

.team-card:hover img {
  transform: scale(1.08);
}

/* WAVE */

.wave-shape {
  position: relative;
  margin-top: -70px;
  z-index: 2;
}

.wave-shape svg {
  width: 100%;
  height: 90px;
}

.wave-shape path {
  fill: #fff;
}

/* CONTENT */

.team-content {
  background: #fff;
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 10px 10px;
}

.team-content h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 8px;
}

.team-content p {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

/* SOCIAL */

.team-section .social-icons {
  position: absolute;
  top: 4%;
  left: -100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 15px;
  transition: left .3s linear;
}

.team-section .team-card:hover .social-icons {
  left: 0;
}

.team-section .social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78232;
  text-decoration: none;
  transition: 0.4s ease;
}

.team-section .social-icons a:hover {
  background: #b8860b;
  color: #fff;
  transform: translateY(-5px);
}

/* SWIPER */
.team-section .swiper-button-prev,
.team-section .swiper-button-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(212, 175, 55) 0%, rgb(245, 222, 179) 25%, rgb(184, 134, 11) 55%, rgb(107, 63, 29) 100%);
}

.team-section .swiper-button-prev:after,
.team-section .swiper-button-next:after {
  font-size: 1.5rem;
  color: #fff;
}

.team-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.team-section .swiper-pagination-bullet-active {
  background: #c89b5e;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: #222;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* =========================
   BREADCRUMB SECTION
========================= */

.breadcrumb-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* DARK OVERLAY */

.breadcrumb-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 20, 12, 0.88),
      rgba(55, 35, 20, 0.72));
  z-index: -1;
}

/* ANIMATED SHAPES */

.breadcrumb-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(200, 155, 94, 0.18);
  border-radius: 50%;
  top: -140px;
  left: -120px;
  filter: blur(80px);
  animation: floatOne 7s ease-in-out infinite;
}

.breadcrumb-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -140px;
  right: -100px;
  filter: blur(70px);
  animation: floatTwo 8s ease-in-out infinite;
}

/* CONTENT */

.breadcrumb-menu {
  position: relative;
  z-index: 2;
}

/* TITLE */

.breadcrumb-menu h2 {
  font-size: 85px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: capitalize;

  animation: titleZoom 1.2s ease;
}

/* BREADCRUMB LINKS */

.breadcrumb-menu span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d8b48a;
  font-size: 17px;
  position: relative;

  animation: fadeUp 1.5s ease;
}

.breadcrumb-menu span:not(:last-child)::after {
  content: "/";
  color: #fff;
  margin-left: 15px;
}

.breadcrumb-menu span a {
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
}

.breadcrumb-menu span a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #d8b48a;
  transition: 0.4s ease;
}

.breadcrumb-menu span a:hover {
  color: #d8b48a;
}

.breadcrumb-menu span a:hover::before {
  width: 100%;
}

/* FLOAT ANIMATION */

@keyframes floatOne {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(35px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatTwo {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* TITLE ANIMATION */

@keyframes titleZoom {

  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* TEXT ANIMATION */

@keyframes fadeUp {

  0% {
    opacity: 0;
    transform: translateY(35px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media(max-width:991px) {

  .breadcrumb-section {
    padding: 150px 0 100px;
  }

  .breadcrumb-menu h2 {
    font-size: 60px;
  }
}

@media(max-width:768px) {

  .breadcrumb-section {
    padding: 130px 0 90px;
  }

  .breadcrumb-menu h2 {
    font-size: 42px;
  }

  .breadcrumb-menu span {
    font-size: 15px;
  }
}


/* --------------Interior-furniture page -------- */
.interior-page img {
  width: 100%;
  display: block;
}

.interior-page section {
  padding: 25px 0;
}

.interior-page .section-title {
  text-align: center;
  margin-bottom: 70px;
}

.interior-page .section-title span {
  color: #b78a5d;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
}

.interior-page .section-title h2 {
  font-size: 60px;
  margin-top: 15px;
  color: #3b2416;
}

.interior-page .section-title p {
  max-width: 700px;
  margin: 18px auto 0;
  line-height: 1.9;
  color: #5c4638;
}

/* HERO */

.interior-page .hero-exhibition .hero-container {
  display: flex;
}


.interior-page .hero-exhibition .hero-left {
  position: inherit;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-right: 0;

}

.interior-page .hero-exhibition .hero-right {
  width: 60%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  overflow: hidden;
}

.interior-page .hero-exhibition .hero-right img {

  height: 100%;
}

.interior-page .hero-exhibition .hero-title {
  color: rgb(59, 36, 22);
}

.interior-page .hero-exhibition .btn-primary {
  padding: 16px 34px;
  border-radius: 10px;
  text-decoration: none;
  transition: .4s;
  font-size: 15px;
  /* background: linear-gradient(135deg, #d6b184, #9c6c42); */
  background-color: #5c3b2a;
  color: #fff;
}

.interior-page .btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.interior-page .btn-primary:hover,
.interior-page .btn-outline:hover {
  transform: translateY(-5px);
}

/* INTRO */

.interior-page .intro-section {
  background: #f3e7d7;
}

.interior-page .intro-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.interior-page .intro-image img {
  border-radius: 35px;
  height: 650px;
  object-fit: cover;
}

.interior-page .intro-content h2 {
  font-size: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #3b2416;
}

.interior-page .intro-content p {
  line-height: 1.9;
  color: #5c4638;
  margin-bottom: 20px;
}

.interior-page .stats {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.interior-page .stat-box {
  background: #fffaf4;
  padding: 30px;
  border-radius: 24px;
  min-width: 180px;
  border: 1px solid #dcc3a5;
}

.interior-page .stat-box h3 {
  font-size: 42px;
  color: #9c6c42;
}

/* SERVICES */

.interior-page .services {
  background:
    linear-gradient(135deg,
      #3b2416 0%,
      #5c3b2a 100%);
}

.interior-page .services .section-title h2,
.interior-page .services .section-title p {
  color: #fff;
}


.interior-page .service-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 30px 20px;
  transition: .4s;
  backdrop-filter: blur(10px);
  position: relative;
    transition:
        transform .4s ease,
        box-shadow .4s ease;
  z-index: 1;
}

/* Smooth Background Animation */
.interior-page .service-card::before,
.interior-page .service-card::after{
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition:
        width .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.interior-page .service-card::before{
    left: 0;
    border-radius: 0 100px 100px 0;
}

.interior-page .service-card::after{
    right: 0;
    border-radius: 100px 0 0 100px;
}

/* Hover Effects */
.interior-page .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.interior-page .service-card:hover::before,
.interior-page .service-card:hover::after{
    width: 51%;
}

/* Content Animation */
.interior-page .service-card .icon,
.interior-page .service-card h3,
.interior-page .service-card p,
.interior-page .service-card a{
    transition:
        transform .45s ease,
        color .35s ease;
}

.interior-page .service-card:hover .icon{
    transform: translateY(-6px) scale(1.05);
}

.interior-page .service-card:hover h3,
.interior-page .service-card:hover p,
.interior-page .service-card:hover a{
    color: #111;
}

.interior-page .service-card:hover {
  transform: translateY(-12px);
  /* border-color: #d6b184; */
}
.interior-page .service-card p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}
.interior-page .service-card i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d6b184, #9c6c42);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  margin-bottom: 30px;
}

.interior-page .service-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.interior-page .service-card p {
  color: #ead9c8;
  line-height: 1.8;
}

/* PORTFOLIO */

.interior-page .portfolio {
  background: #efe1cf;
}

.interior-page .portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.interior-page .portfolio-card a{
  display: block;
  position: relative;
}

.interior-page .portfolio-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: .5s ease;
}

.interior-page .portfolio-card:hover img {
  transform: scale(1.1);
}

.interior-page .portfolio-overlay,
.work-item .work-overlay .icons {
  position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
  transition: .4s ease;
}

.interior-page .portfolio-overlay i,
.work-item .work-overlay .icons i{
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: .4s ease;
}

.interior-page .portfolio-card h3.title {
    position: absolute;
   bottom: 1rem;
   left: 1rem;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.85)
  );
  padding: 35px 20px;
  color: #fff;
  font-size: 24px;
  margin: 0;
  transform: translateY(20px);
  transition: .4s ease;
}

.interior-page .portfolio-card:hover .portfolio-overlay i,
.work-item:hover .work-overlay .icons i,
.interior-page .portfolio-card:hover  h3{
  transform: translateY(0);
  opacity: 1;
}

.gslide-image img.zoomable{
      max-height: calc(100vh - 200px) !important;
}
/* PROCESS */

.interior-page .process {
  background: #fffaf4;
}


.interior-page .process-card {
    background: #fff;
    border-radius: 25px;
    padding: 25px 10px;
    text-align: center;
    border: 1px solid #e7d5c4;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

/* Smooth Fill Animation */
.interior-page .process-card::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(
        180deg,
        #6b4734,
        #5c3b2a
    );
    z-index: -1;
    transition:
        height .6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 50% 50% 0 0;
}

.interior-page .process-card:hover::before{
    height: 100%;
    border-radius: 0;
}

.interior-page .process-number {
  width: 90px;
  height: 90px;
  background: #3b2416;
  color: #fff;
  border-radius: 50%;
  margin: auto auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
}

.interior-page .process-card h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.interior-page .process-card p {
  color: #5c4638;
  line-height: 1.5;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Content Animation */
.interior-page .process-card h3,
.interior-page .process-card p,
.interior-page .process-card .process-number{
    transition:
        color .35s ease,
        transform .4s ease;
}

.interior-page .process-card:hover h3,
.interior-page .process-card:hover p{
    color: #fff;
}

.interior-page .process-card:hover .process-number {
    transform: scale(1.08) translateY(-5px);
    background-color: #fff;
    color: #3b2416;
}
/* CTA */

.interior-page .cta-section {
  background:
    linear-gradient(rgba(30, 18, 12, 0.8),
      rgba(30, 18, 12, 0.8)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.interior-page .cta-section h2 {
  font-size: 60px;
  margin-bottom: 20px;
}

.interior-page .cta-section p {
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
  color: #ead9c8;
}

.interior-page .cta-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #d6b184, #9c6c42);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
}

/* ----------------------------exhibition-page ================ */
.hero-exhibition {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #fff;
}

.exhibition-page .hero-exhibition .wave-shape {
  /* position: absolute;
  top: -29px;
  left: 18%;
  height: 100%;
  width: 30%;
  transform: rotate(95deg);
  z-index: 9; */
  /* border-top: 3px solid #c89b53; */
}

/* LEFT SIDE */

.hero-exhibition .hero-left {
  position: absolute;
  left: 0;
  top: 42px;
  width: 52%;
  height: 100%;
  background: #fdfdfd;
  z-index: 2;
  padding: 70px 60px;
  /* border-top-right-radius: 300px; */
  border-bottom-right-radius: 255px;
  border-right: 4px solid #c89b53;
}


.hero-exhibition .breadcrumb-custom {
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  position: relative;
  z-index: 99;
}

.hero-exhibition .breadcrumb-custom a {
  color: #031B4E;
  text-decoration: none;
}

/* Heading */

.hero-exhibition .hero-title {
  font-size: 55px;
  line-height: 1.05;
  font-weight: 700;
  color: #031B4E;
  margin-bottom: 30px;
}

/* Divider */

.hero-exhibition .hero-divider {
  width: 180px;
  height: 2px;
  background: #c89b53;
  position: relative;
  margin-bottom: 35px;
}

.hero-exhibition .hero-divider::before {
  content: '';
  position: absolute;
  right: -190px;
  top: 0px;
  width: 100%;
  height: 2px;
  background: #c89b53;
}

.hero-exhibition .hero-divider::after {
  content: '';
  position: absolute;
  right: -10px;
  top: -5px;
  width: 12px;
  height: 12px;
  border: 2px solid #c89b53;
  transform: rotate(45deg);
  background: #fff;
}

.hero-exhibition .hero-text {
  font-size: 19px;
  line-height: 1.9;
  color: #444;
  max-width: 500px;
  margin-bottom: 40px;
}

/* Button */

.exhibition-page .hero-exhibition .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #031B4E;
  color: #fff;
  padding: 18px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.exhibition-page .hero-exhibition .hero-btn:hover {
  background: #c89b53;
  color: #fff;
}

/* RIGHT IMAGE */

.exhibition-page .hero-exhibition .hero-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  height: 100%;
}

.exhibition-page .hero-exhibition .hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-page .hero-exhibition .hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

/* --- Services Section --- */
.exhibition-page .services {
  background: #fff;
}

.exhibition-page .services h2 {
  font-size: 38px;
  color: #1a1a1a;
}

.exhibition-page .services .text-warning {
  letter-spacing: 2px;
  font-size: 12px;
}

.exhibition-page .services .service-box {
  position: relative;
  padding: 20px 15px;
  border: 1px solid #e5e5e5;
  z-index: 1;
}

.exhibition-page .services .service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #031B4E;
  z-index: -1;
  transition: width .3s linear;
}

.exhibition-page .services .service-box:hover::before {
  width: 100%;
}

.exhibition-page .services .service-box .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border: 1px solid #d6b36a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.exhibition-page .services .service-box .icon-box i {
  font-size: 24px;
  color: #d6b36a;
}

.exhibition-page .services .service-box h6 {
  font-size: 13px;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #222;
}

.exhibition-page .services .service-box:hover h6,
.exhibition-page .services .service-box:hover p {
  color: #fff;
}

.exhibition-page .services .service-box p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.recent-work .btn-primary {
  font-size: 12px;
  border: 1px solid #f0c14b;
  padding: 10px 15px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 5px;
  text-decoration: none;
  background: transparent;
}
.recent-work .work-item a{
  text-decoration: none;
}.recent-work .work-item .work-overlay{
  padding-bottom: 1rem;
}

.recent-work .work-item .work-overlay h4{
   font-size: 1.3rem;
   text-transform: capitalize;
   color: #fff;
   margin-top: 18px;
}
.recent-work .work-item .work-overlay .tag{
  color: #fff;
}
.recent-work .work-item:hover .work-overlay h4,
.recent-work .work-item:hover .work-overlay .tag{
  color: #031B4E;
}
/* CTA SECTION */
.event-cta .event-content span {
  color: #c99555;
}

.event-cta .event-content h2 {
  color: #031B4E;
}

.event-cta .btn {
  background-color: #031B4E;
  color: #fff;
}

/* Content */


.event-image .play-btn {
  width: 70px;
  height: 70px;
  background: rgba(255, 193, 7, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.event-image .play-btn:hover {
  transform: scale(1.1);
}


/* --------------contact page ---------- */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    linear-gradient(rgba(8, 8, 8, 0.88),
      rgba(8, 8, 8, 0.92)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -180px;
  right: -150px;
  filter: blur(30px);
  opacity: .15;
  background: linear-gradient(135deg,
      rgb(212, 175, 55) 0%,
      rgb(245, 222, 179) 25%,
      rgb(184, 134, 11) 55%,
      rgb(107, 63, 29) 100%) !important;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  filter: blur(30px);
  opacity: .12;
  background: linear-gradient(135deg,
      rgb(212, 175, 55) 0%,
      rgb(245, 222, 179) 25%,
      rgb(184, 134, 11) 55%,
      rgb(107, 63, 29) 100%) !important;
}

.contact-section .contact-left {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.contact-section .contact-left .sub-title {
  color: #d4af37;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.contact-section .contact-left h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin: 15px 0 35px;
  line-height: 1.2;
}

.contact-section .contact-input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 15px 20px;
  color: #fff;
  transition: all .4s ease;
}

.contact-section textarea.contact-input {
  height: 130px;
  resize: none;
}

.contact-section .contact-input:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, .25);
  color: #fff;
}

.contact-section .contact-input::placeholder {
  color: rgba(255, 255, 255, .7);
}

.btn-style-one {
  border: none;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .4s ease;
  color: #111;
  background: linear-gradient(135deg,
      rgb(212, 175, 55) 0%,
      rgb(245, 222, 179) 25%,
      rgb(184, 134, 11) 55%,
      rgb(107, 63, 29) 100%) !important;
}

.btn-style-one:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 15px 30px rgba(212, 175, 55, .35);
}

.contact-section .contact-right {
  padding-left: 45px;
}

.contact-section .contact-right h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.2;
}

.contact-section .contact-right .contact-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 16px;
  transition: all .4s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.contact-section .contact-right .contact-box:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, .4);
  box-shadow: 0 15px 35px rgba(212, 175, 55, .18);
}

.contact-section .contact-right .contact-box i {
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #111;
  background: linear-gradient(135deg,
      rgb(212, 175, 55) 0%,
      rgb(245, 222, 179) 25%,
      rgb(184, 134, 11) 55%,
      rgb(107, 63, 29) 100%) !important;
}

.contact-section .contact-right .contact-box h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-section .contact-right .contact-box p {
  color: rgba(255, 255, 255, .75);
  margin: 0;
  line-height: 1.8;
}

.contact-section .contact-right .text-danger {
  color: #ff6b6b !important;
  margin-top: 5px;
  display: block;
}

.alert-success {
  border: none;
  color: #fff;
  border-radius: 15px;
  background: linear-gradient(135deg,
      rgb(212, 175, 55) 0%,
      rgb(245, 222, 179) 25%,
      rgb(184, 134, 11) 55%,
      rgb(107, 63, 29) 100%) !important;
}

.policy-text {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.policy-text a {
  color: #d4af37;
  text-decoration: none;
}


/* RESPONSIVE */

@media(max-width:991px) {

  .interior-page .intro-wrapper {
    grid-template-columns: 1fr;
  }

  .interior-page .hero-content h1 {
    font-size: 65px;
  }

  .contact-section {
    padding: 90px 0;
  }

  .contact-section .contact-left {
    backdrop-filter: blur(0px);
  }

  .contact-section .contact-right {
    padding-left: 0 !important;
    margin-top: 50px;
  }

  .contact-left {
    padding: 35px;
  }

  .contact-left h2,
  .contact-right h2 {
    font-size: 26px;
  }
}

@media(max-width:768px) {

  .interior-page section {
    padding: 20px 0;
  }

  .interior-page .hero-content h1,
  .interior-page .section-title h2,
  .interior-page .intro-content h2,
  .interior-page .cta-section h2 {
    font-size: 28px;
  }
.newsletter-box input{
  width: 100%;
}
  .interior-page .hero-btns {
    flex-direction: column;
  }

  .interior-page .stats {
    flex-direction: column;
  }

  .contact-left {
    padding: 25px;
  }

  .contact-left h2,
  .contact-right h2 {
    font-size: 20px;
  }

  .contact-box {
    padding: 20px;
  }
}


/* =========================
      RESPONSIVE
========================= */

@media (max-width: 1250px) {
  .hero-section .text-card .text-heading h1 {
    font-size: 32rem;
  }

  .hero-section .text-card .text-heading .video-card.video_c {
    width: 268px;
    height: 320px;
  }

  .hero-section .text-card .text-heading .video-card.video_o {
    top: 51%;
    left: 49%;
    width: 290px;
    height: 323px;
  }
}

@media(max-width:991px) {
  .hero-section .text-card .text-heading h1 {
    font-size: 27rem;
  }

  .hero-section .text-card .text-heading .video-card.video_c {
    left: 52%;
    width: 230px;
    height: 274px;
  }

  .hero-section .text-card .text-heading .video-card.video_o {
    top: 51%;
    left: 55%;
    width: 208px;
    height: 295px;
  }

  .intro-wrapper {
    flex-direction: column;
    padding: 40px 25px;
  }

  .intro-content h2 {
    font-size: 42px;
  }

  .intro-stats {
    width: 100%;
  }

  .stat-box h3 {
    font-size: 42px;
  }

  .about-heading {
    font-size: 48px;
  }

  .main-img img {
    height: 500px;
  }

  .social-wrapper {
    margin-top: 25px;
    text-align: left !important;
  }

  .footer-heading {
    margin-top: 30px;
  }

  .testimonial-section .card-content {
    padding: 30px 22px 85px;
  }


  .footer-heading,
  .footer-title {
    margin-top: 30px;
  }

  .newsletter-box {
    flex-direction: column;
  }

  .newsletter-box button {
    width: 100%;
  }

  .hero-exhibition .hero-left {
    width: 100%;
    padding: 20px 0;
  }

  .interior-page .hero-exhibition .hero-right {
    display: none;
  }
}

@media(max-width: 850px) {
  .hero-section .text-card .text-heading h1 {
    font-size: 23rem;
  }

  .hero-section .text-card .text-heading .video-card.video_c {
    left: 52%;
    width: 197px;
    height: 230px;
  }

  .hero-section .text-card .text-heading .video-card.video_o {
    top: 51%;
    left: 55%;
    width: 193px;
    height: 250px;

  }
}

@media(max-width:768px) {
    .hero-section .content h1 {
    font-size: 26px;
    }
    
  .hero-section .text-card .text-heading h1 {
    font-size: 28rem;
  }

  .hero-section .text-card .text-heading .video-card.video_c {
    width: 215px;
    height: 280px;
  }

  .hero-section .text-card .text-heading .video-card.video_o {
    top: 50%;
    left: 49%;
    width: 240px;
    height: 298px;
  }

  .about-heading {
    font-size: 38px;
  }

  .main-heading {
    font-size: 35px;
  }



  .small-img {
    width: 180px;
    height: 220px;

    bottom: -20px;
    right: 0;
  }

  .experience-card {
    width: 130px;
    height: 130px;
  }

  .experience-card h2 {
    font-size: 36px;
  }

  .hero-exhibition .hero-title {
    font-size: 25px;
  }

}