html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Italiana", sans-serif;
  background-color: #1D1F26;
}
a{
  text-decoration: none;
}
/* navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  padding: 20px 0px;
  margin: 0px 40px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  background-color: none;
  gap: 30px;
  border-bottom: 1px solid rgba(222, 222, 222, 0.2);
}

.nav-left {
  width: 20%;
}

.nav-mid {
  width: 55%;
  display: flex;
  gap: 40px;
}
.down-arrow{
  width: 15px;
  height: auto;
  padding-left: 5px;
}
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 20px 10px;
  display: none;
  flex-direction: column;
  min-width: 200px;
  height: auto;
  align-items: center;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.drop-grid{
  display: flex;
}
.drop-box{
  display: flex;
  flex-direction: column;
}

.dropdown a {
  padding: 4px 20px;
  color: #000000;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}
.dropdown a:hover{
  color: #C6AC73;
}


.nav-right {
  width: 25%;
  display: flex;
  justify-content: flex-end;
}
.menu-icon{
  width: 25px;
  height: auto;
  display: none;
}
.logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  color: #ffffff;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
}

.cart {
  width: 25px;
  height: auto;
  color: white;
  border: 2px solid #ffffff80;
  border-radius: 50%;
  padding: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Cart Circle with Icon */
.cart-circle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart {
  font-size: 18px;
}

/* Notification Badge */
.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #C6AC73;
  color: black;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  padding-bottom: 4px;
}

/* Get in Touch Button */
.contact-button {
  display: flex;
  align-items: center;
  border: 2px solid #C6AC73;
  border-radius: 30px;
  padding: 6px 8px;
  padding-left: 25px;
  background: transparent;
  color: white;
  font-size: 18px;
  cursor: pointer;
  gap: 10px;
  position: relative;
  overflow: hidden;
  font-family: "Italiana", sans-serif;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #C6AC73;
}

.contact-button .arrow {
  background-color: white;
  color: black;
  border-radius: 50%;
  padding: 6px 6px;
  padding-left: 8px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.arrow-r {
  width: 20px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* round-selector */
.dot-navigation {
  position: absolute; /* or fixed if you want it always visible */
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  background-color: #3a3a3a;
  padding: 30px 10px;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 30px;
  z-index: 10; /* Ensure it's above background */
}


.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #888888; /* default inactive color */
}

.dot.active {
  background-color: #ffffff; /* active = white */
}

.dot:hover {
  transform: scale(1.2);
  background-color: #aaaaaa; /* hover color */
}

.dot.inactive {
  background-color: #888888;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.inactive:hover {
  background-color: #aaaaaa;
}
/* Mobile Menu Styling */
/* Initial hidden state */
.mobile-menu {
  position: absolute;
  top: 80px; /* just below navbar */
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  margin: 0px 20px;
  transform: translateY(-150%);
  transition: transform 1s ease-in-out;
  will-change: transform;
  pointer-events: none;
}

/* Shown state */
.mobile-menu.active {
  transform: translateY(0%);
  pointer-events: auto;
}


/* top-section */
/* Common style */
.top-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Active section visible */
.top-section.active-section {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Slide in from right */
.slide-in-right {
  transform: translateX(100%);
}

.active-section.slide-in-right {
  transform: translateX(0%);
}

/* Slide in from left */
.slide-in-left {
  transform: translateX(-100%);
}

.active-section.slide-in-left {
  transform: translateX(0%);
}



.top-section.a {
  margin: 0;
  padding: 0;
  position: relative;
  background-image: url(./images/top-img-a);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 110vh;
  width: 100%;
  overflow: hidden;
}

.top-section.b {
  margin: 0;
  padding: 0;
  position: relative;
  background-image: url(./images/top-img-b);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 110vh;
  width: 100%;
  overflow: hidden;
  display: none;
}


.top-section.c {
  margin: 0;
  padding: 0;
  position: relative;
  background-image: url(./images/top-img-c);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 110vh;
  width: 100%;
  overflow: hidden;
  display: none;
}

.top-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* Only vertical centering */
  z-index: 2;
  padding: 0px 40px;
  padding-top: 10vh;
}

.gold-line {
  border: none;
  height: 0.5px;
  background-color: #C6AC73;
  width: 0;
  margin: 10px 0;
  transition: width 2s ease;
}

/* Add this when gold line is visible */
.gold-line.animate {
  width: 40px;
}


.tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
}
.tagline {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 0.3s ease;
}

.tagline.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}



.hero-heading {
  font-size: 85px;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 40px;
  color: white;
  margin-top: 40px;
  text-transform: uppercase;
}

.cta-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.clients {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile {
  height: 55px;
  width: auto;
}

.client-text {
  font-size: 22px;
  line-height: 1.2;
  color: white;
  font-weight: 500;
}

.line-dark {
  height: 0.5px;
  background-color: #ffffff26;
  width: 55%;
  margin: 40px 0;
  margin-top: 50px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
}

/* second-section */
.second-section {
  background-color: #1d1f26;
  padding: 8rem 40px;
  color: #ffffff;
}

.second-container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: flex-start;
  /* Align items to top */
}



.second-left {
  position: relative;
  width: 50%;
  perspective: 1000px; /* Optional for depth effect */
  overflow: hidden;
}

.image-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.scond-img {
  width: 100%;
  height: auto;
  transform: scale(1.2);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform;
}


.scond-img.animate {
  transform: scale(1);
  opacity: 1;
}
.haircut-count {
  position: absolute;
  bottom: -40px;
  left: 0;
  background-color: #1d1f26;
  padding: 20px;
  color: #fff;
  text-align: center;
  height: 200px;
  width: 200px;
  
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.haircut-count.animate {
  transform: translateX(0);
  opacity: 1;
}


.haircut-count .count {
  font-size: 105px;
  font-weight: bold;
}

.haircut-count .plus {
  color: #C6AC73;
  font-size: 48px;
}

.haircut-count p {
  font-size: 16px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Space Grotesk", sans-serif;
}

.second-right {
  width: 50%;
  padding: 20px 0px;
}

.section-subtitle {
  color: #f4f4f4;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 0.4s ease;
}

.section-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}


.section-title {
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s ease, transform 0.5s ease;
  transition-delay: 0s;
}

.section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}


.section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #dadada;
  margin-bottom: 20px;
  max-width: 80%;
  font-family: "Space Grotesk", sans-serif;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 0.6s ease;
  transition-delay: 0s;
}

.section-desc.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.section-desc {
  text-align: left;
  margin-left: auto;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  justify-content: flex-end;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 0.7s ease;
  transition-delay: 0s;
}

.stats.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.stat-item {
  display: flex;
  align-items: center;
  /* Vertically center circle and text */
  gap: 20px;
  text-align: left;
  /* Optional: adjust if you want left-aligned text */
  padding-right: 50px;
}

.circle-section {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(#C6AC73 0% 60%,
      #1D1F26 60% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.second-circle {
  width: 85px;
  height: 85px;
  background-color: #1D1F26;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #0f1013;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.circle.gold {
  border-color: #C6AC73;
}

.stat-item p {
  font-size: 24px;
  line-height: 1.4;
}

/* rolling-curosel */
.rolling-curosel {
  overflow: hidden;
  background-color: #1D1F26;
  width: 100vw;
}

.curosel-track {
  display: flex;
  animation: scroll-left 100s linear infinite;
  width: calc(200%); /* this is important for continuous loop */
}

.curosel-grid {
  width: 25vw;
  height: 17vw;
  padding: 100px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

.curosel-grid:hover {
  background-color: #fff;
  width: calc(25vw + 10px);
  height: calc(17vw + 10px);
  margin-top: -5px;
  margin-bottom: -5px;
  z-index: 2;
}

.curosel-grid:hover .curosel-logo {
  filter: invert(1);
  transition: filter 0.3s ease;
}

.curosel-logo {
  height: 45px;
  width: auto;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(500%);
  }
}



/* curosel-section */
.curosel-section {
  padding: 100px 0px;
  background-color: #1D1F26;
}

.curosel-head-section {
  padding: 0px 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.curosel-left {
  width: 50%;
}

.curosel-mid {
  width: 30%;
}

.curosel-right {
  width: 20%;
  display: flex;
  gap: 10px;
}

.curosel-para {
  font-size: 18px;
  line-height: 1.8;
  color: #dadada;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.curosel-para.animate {
  opacity: 1;
  transform: translateY(0);
}




.curosel-arrow {
  width: 20px;
  height: auto;
  border: 2px solid #C6AC73;
  border-radius: 50%;
  padding: 15px;
}
.curosel-arrow:hover{
  background-color: #C6AC73;
}
.curosel-arrow.left {
  transform: rotate(180deg);
}
.curosel-img-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 1s ease;
  will-change: transform;
}

.curosel-img-grid {
  flex: 0 0 100%;
  display: flex;
  gap: 80px;
  box-sizing: border-box;
  padding: 0 10px;
}



.img-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.curosel-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image fills while maintaining aspect ratio */
  display: block;
}

.curosel-header-section {
  padding-top: 25px;
  text-align: center;
}

.curosel-head {
  margin: 0;
  font-size: 32px;
  color: white;
  text-transform: capitalize;
}

.curosel-minihead {
  margin: 0;
  font-size: 16px;
  color: #c6ac73;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  padding-top: 5px;
}

/* banner-scroll-section */
.banner-scroll-section {
  position: relative;
}

.banner-top {
  position: sticky;
  top: 0;
  height: 100vh;
  background-color: #11141A;
  overflow: hidden;
  z-index: 1;
}

.banner-top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: width 1s ease;
  transform-origin: right center;
}

.banner-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 100px;
  background-color: transparent;
  transition: transform 2s ease;
  transform: translateY(100vh); /* default: stay hidden below fold */
}

.banner-bottom.reveal {
  transform: translateY(0); /* slide up to overlap */
}

.banner-bottom-grid-left {
    width: 50%;
}

.banner-bottom-grid-right {
    width: 50%;
    position: relative;
}

.guarantee-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0px;
  position: relative;
  color: white;
  flex-wrap: wrap;
}

.guarantee-left {
  width: 70%;
  padding-top: 50px;
}


.guarantee-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white;
}

.guarantee-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: normal;
  text-transform: uppercase;
}

.guarantee-right {
  position: relative;
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  /* If you want it aligned to the top */
}

.guarantee-wave {
  width: auto;
  height: 90px;
}

.guarantee-title {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
  text-transform: uppercase;
}

.treatment-box {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  /* Optional outline */
  color: #fff;
  gap: 50px;
  margin-bottom: 30px;
  margin-right: 70px;
}
.treatment-box:hover{
  border: 0.5px solid white;
}

.treatment-left {
  flex-shrink: 0;
}

.treatment-title {
  font-size: 28px;
  margin: 0 0 0px;
  color: white;
}

.treatment-price {
  font-size: 48px;
  color: #C6AC73;
  margin: 0;
}

.dollar {
  font-size: 32px;

}

.treatment-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.treatment-list {
  list-style: disc;
  font-family: "Space Grotesk", sans-serif;
  padding-left: 20px;
  margin: 0;
  font-size: 18px;
  line-height: 2;
  color: white;
}

/* choose-section */
.choose-section {
  padding: 80px 100px;
  padding-bottom: 0;
  padding-bottom: 30px;
}

.choose-top {
  display: flex;
  gap: 0px;
}

.choose-top-left {
  width: 30%;
}

.choose-top-right {
  width: 80%;
}

.choose-bottom {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.choose-stack {
  position: relative;
  width: 300px;
  height: 100%;
  transition: all 1s ease;
}

.choose-grid {
  position: absolute;
  top: 0;
  width: 230px;
  padding: 0px 25px;
  background-color: #11141A;
  transition: transform 1s ease;
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;    
  align-items: flex-start;     
  text-align: left;
  overflow: hidden; /* Added to contain the rotating line */
}

/* Hover animation - moving yellow line on border */
.choose-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 2px;
  background: #FFD700;
  opacity: 0;
  animation: moveBorder 3s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
  z-index: 1;
  will-change: transform, top, left, width, height;
}

.choose-grid:hover::before {
  opacity: 1;
  animation-play-state: running;
}

/* Make sure content stays above the moving line */
.choose-grid > * {
  position: relative;
  z-index: 2;
}

@keyframes moveBorder {
  0% {
    top: 0;
    left: 0;
    width: 100px;
    height: 1px;
    transform: translateX(0);
  }
  25% {
    top: 0;
    left: calc(100% - 200px);
    width: 100px;
    height: 1px;
    transform: translateX(0);
  }
  25.1% {
    top: 0;
    left: 100%;
    width: 1px;
    height: 100px;
    transform: translateX(-2px) translateY(0);
  }
  50% {
    top: calc(100% - 200px);
    left: 100%;
    width: 100px;
    height: 100px;
    transform: translateX(-2px) translateY(0);
  }
  50.1% {
    top: 100%;
    left: calc(100% - 200px);
    width: 100px;
    height: 1px;
    transform: translateX(0) translateY(-2px);
  }
  75% {
    top: 100%;
    left: 0;
    width: 100px;
    height: 1px;
    transform: translateX(0) translateY(-2px);
  }
  75.1% {
    top: calc(100% - 200px);
    left: 0;
    width: 1px;
    height: 100px;
    transform: translateX(0) translateY(0);
  }
  100% {
    top: 0;
    left: 0;
    width: 1px;
    height: 100px;
    transform: translateX(0) translateY(0);
  }
}

.choose-bottom.animate .choose-stack {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.choose-bottom.animate .choose-grid {
  width: 230px;
  height: 85%;
}

/* Initial stacked state */
.choose-grid.a,
.choose-grid.b,
.choose-grid.c,
.choose-grid.d {
  transform: translateX(0);
}

/* Fan-out transform values on scroll trigger */
.choose-bottom.animate .choose-grid.a {
  transform: translateX(-450px);
  z-index: 1;
}
.choose-bottom.animate .choose-grid.b {
  transform: translateX(-150px);
  z-index: 2;
}
.choose-bottom.animate .choose-grid.c {
  transform: translateX(150px);
  z-index: 3;
}
.choose-bottom.animate .choose-grid.d {
  transform: translateX(450px);
  z-index: 4;
}

.choose-grid-head {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  color: white;
}

.choose-img {
  width: 60px;
  height: auto;
  padding: 40px 0px;
}

.choose-para {
  font-size: 18px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: white;
}

.choose-title {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;

  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s ease, transform 0.5s ease;
  transition-delay: 0s;
}

.choose-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}

.line-w {
  border: none;
  border-top: 0.3px solid #adadad5a;
  width: auto;
  margin-bottom: 10px;
  margin-top: 30px;
}

/* team-section */
.team-section {
  padding: 100px 0px;
}
.team-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: #dadada;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 0.7s ease;
  transition-delay: 0s;
}

.team-paragraph.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.team-title {
  font-size: 60px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
  text-transform: uppercase;
  margin-bottom: 0;

  opacity: 0;
  transform: translateY(-25px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0s;
}
.team-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}



.team-grid-section {
  display: flex;
  gap: 40px;
  padding: 0px 40px;

  /* Initial hidden state */
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 1s ease, transform 1s ease;
}

.team-grid-section.animate {
  opacity: 1;
  transform: translateX(0);
}

.team-grid {
  width: 25%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Zoom-in effect for image */
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-grid:hover .team-img {
  transform: scale(1.1);
}

/* Black overlay from bottom to top */
.team-grid::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: bottom 0.5s ease;
  z-index: 1;
}

.team-grid:hover::after {
  bottom: 0;
}

/* Text overlay container */
.team-overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  opacity: 0;
  padding: 20px 0px;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-grid:hover .team-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

/* Top-left "stylist" label */
.stylist {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: #C6AC73;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  transform: translateY(-50px);
  opacity: 0;
  padding-left: 20px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-grid:hover .stylist {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Scrolling name wrapper */
.name-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0px 0;
}

/* Inner scrolling track */
.name-scroll-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 9s linear infinite;
}

/* Scrolling section */
.name-section {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-500%);
  }
}

/* Circle dot style */
.round {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #C6AC73;
}

/* Name text */
.team-grid-name {
  font-size: 80px;
  margin: 0;
  color: white;
  text-transform: capitalize;
}

/* Social Icons */
.social-media-team-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-grid-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #C6AC73;
  border-radius: 50%;
  padding: 5px;
}


/* visit-section */
.visit-section {
  padding: 20px 20px;
}

.visit-top {
  padding: 40px 0;
  text-align: center;
  /* Center text inside elements */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center child elements horizontally */
}

.visit-top .section-subtitle {
  margin-top: 0;
}

.visit-top .choose-title {
  margin-top: 0;
}

.booking-section {
  display: flex;
  background-color: #0F1115;
  color: white;
}

.booking-left {
  width: 30%;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.working-hours h3,
.visit-details h3 {
  color: #C6AC73;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 20px;
}

.working-hours p,
.visit-details p {
  font-size: 16px;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  color: #e0e0e0;
  font-family: "Space Grotesk", sans-serif;
}

.divider {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #444;
}

.visit-button {
  margin-top: 40px;
  padding: 12px 28px;
  background-color: transparent;
  color: white;
  border: 1.5px solid #C6AC73;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.visit-button:hover {
  background-color: #C6AC73;
  color: black;
}

.booking-right {
  width: 70%;
}

.booking-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s ease-in-out;
}

.booking-img.animate {
  transform: scaleX(1);
}


.visit-details .contact-button {
  border: 1px solid #C6AC73;
  margin-top: 30px;
}

.visit-details .text {
  font-size: 18px;
}

/* bottom-section */
.bottom-section {
  padding: 50px 20px;
}

.bottom-top {
  display: flex;
  justify-content: space-between;
}

.bottom-top-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Pushes content to the bottom */
}

.bottom-down {
  display: flex;
  gap: 40px;
  padding: 50px 0px;
}

.bottom-grid-section {
  width: auto;
}

.bottom-img-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.latest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; /* Smooth transition */
}
.bottom-img-section:hover .latest-img {
  transform: scale(1.1);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: #C6AC73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 20px 0px;
  text-transform: uppercase;
}

.separator {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  display: inline-block;
}

.blog-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 0px 0 0 0;
}

.date-badge {
  width: 70px;
  border: 1px solid #C6AC73;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 5px;

  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}


.date-number {
  font-size: 32px;
  font-weight: 400;
  margin-top: 0;
}

.date-month {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 2px;
}

/* footer */
.footer {
  background-color: #0e1014;
  color: #fff;
  padding: 150px 20px 0px;

}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid #222;
  padding-bottom: 0px;
}

.footer-column {
  flex: 1;
  padding: 50px 20px;
  box-sizing: border-box;
}
.footer-column.b{
  text-align: right;
}

.footer-column:not(:last-child) {
  border-right: 1px solid rgba(198, 172, 115, 0.2);
  /* Gold-ish thin line with low opacity */
}

.footer-heading {
  font-size: 30px;
  color: #C6AC73;
  margin-bottom: 20px;

}

.footer-links {
  list-style: none;
  padding: 0;
  column-count: 2;
  gap: 20px;
  font-family: "Space Grotesk", sans-serif;
}
.footer-arrow{
  color: #C6AC73;
  font-weight: 600;
  padding-right: 5px;
}

.footer-links li {
  margin-bottom: 10px;
  color: #ccc;
  cursor: pointer;
}
.footer-links li a{
  color: #ccc;
}

.center-column {
  text-align: center;
}

.footer-logo {
  width: auto;
  height: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  font-size: 28px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.icon-circle {
  border: 1px solid #C6AC73;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}

.icon-circle:hover {
  background-color: #C6AC73;
  color: #000;
}

.footer-social-media-icon {
  width: 15px;
  height: auto;
}

.working-hours p {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}
.working-hours h3{
  font-family: "Italiana", sans-serif;
}
.working-hours {
  font-family: "Space Grotesk", sans-serif;
}
.working-hours,
.visit-details {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.working-hours.animate,
.visit-details.animate {
  opacity: 1;
  transform: translateY(0);
}

.footer-column p {
  font-family: "Space Grotesk", sans-serif;
}

.footer-bottom {
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-policy a {
  color: #ccc;
  margin-left: 10px;
  text-decoration: none;
}


