/* Theme Setup */
@font-face {
  font-family: "Neue";
  src: url("../fonts/NeueMontreal-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue";
  src: url("../fonts/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue";
  src: url("../fonts/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue";
  src: url("../fonts/NeueMontreal-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeistMono";
  src: url("../fonts/GeistMono-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeistMono";
  src: url("../fonts/GeistMono-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeistMono";
  src: url("../fonts/GeistMono-ExtraLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeistMono";
  src: url("../fonts/GeistMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeistMono";
  src: url("../fonts/GeistMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeistMono";
  src: url("../fonts/GeistMono-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #000;
}

:root {
  --prim-font: "Neue", sans-serif;
  --second-font: "GeistMono", sans-serif;
  --prim-color: #EF3C51;
  --container-width: 1446px;
  --container-padding: 24px;
  --header-bg-scrolled: rgba(0, 0, 0, 0.9);
  --transition-speed: 0.4s;
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

.es-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.es-col-1 {
  grid-column: span 1;
}

.es-col-2 {
  grid-column: span 2;
}

.es-col-3 {
  grid-column: span 3;
}

.es-col-4 {
  grid-column: span 4;
}

.es-col-5 {
  grid-column: span 5;
}

.es-col-6 {
  grid-column: span 6;
}

.es-col-7 {
  grid-column: span 7;
}

.es-col-8 {
  grid-column: span 8;
}

.es-col-9 {
  grid-column: span 9;
}

.es-col-10 {
  grid-column: span 10;
}

.es-col-11 {
  grid-column: span 11;
}

.es-col-12 {
  grid-column: span 12;
}

.es-container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  ;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
}

/* End Theme Setup */





/* Header */

body.menu-open {
  overflow: hidden;
}

/* Entrance Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.header-center nav ul,
.header-center .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.header-center nav ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.header-center nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s var(--ease-out);
}

.header-center nav ul li a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: #fff;
  color: #000;
}



/* Mobile Menu Toggle (Hamburger) */
.mobile-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1100;
  width: 40px;
  height: 40px;
  pointer-events: auto;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s var(--ease-out);
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: '';
  top: -8px;
  left: 0;
}

.hamburger-inner::after {
  content: '';
  top: 8px;
  left: 0;
}

body.menu-open .hamburger-inner {
  background-color: transparent !important;
}

body.menu-open .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

.toggle-close {
  position: absolute;
  background: none;
  border: none;
  top: 36px;
  right: 40px;
  z-index: 100000;
  cursor: pointer;
  width: 40px;
  height: 40px;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-close .hamburger-inner {
  background-color: transparent !important;
}

.toggle-close .hamburger-inner::before {
  transform: translateY(0) rotate(45deg);
}

.toggle-close .hamburger-inner::after {
  transform: translateY(0) rotate(-45deg);
}

/* Fullscreen Menu Overlay (Desktop & Mobile) */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #060608;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s var(--ease-out);
  transform: translateY(-100%);
  box-sizing: border-box;
  padding: 80px 40px 40px 40px;
  overflow-y: auto;
}

.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-content {
  width: 100%;
  max-width: var(--container-width, 1366px);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .mobile-menu-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

/* Left Side: Navigation Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.menu-open .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.menu-open .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.15s;
}

.menu-open .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.25s;
}

.menu-open .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.35s;
}

.menu-open .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.45s;
}

.menu-open .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.55s;
}

.mobile-nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--prim-font, sans-serif);
  font-size: 42px;
  font-weight: 500;
  text-transform: Capitalize;
  letter-spacing: -1px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.mobile-nav-links li a:hover {
  color: var(--prim-color, #EF3C51);
  padding-left: 8px;
}

@media (max-width: 991px) {
  .mobile-nav-links li a {
    font-size: 28px;
  }

  .mobile-nav-links li a:hover {
    padding-left: 0;
  }
}

/* Right Side: Contact Information & CTA */
.mobile-menu-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.3s;
}

.menu-open .mobile-menu-info {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .mobile-menu-info {
    padding: 24px;
    gap: 20px;
    text-align: center;
  }
}

.menu-info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-info-label {
  font-family: var(--second-font, monospace);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--prim-color, #EF3C51);
}

.menu-info-item {
  font-family: var(--prim-font, sans-serif);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.menu-info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-info-item a:hover {
  color: var(--prim-color, #EF3C51);
}

.menu-social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .menu-social-links {
    justify-content: center;
  }
}

.menu-social-links a {
  font-family: var(--second-font, monospace);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.menu-social-links a:hover {
  color: var(--prim-color, #EF3C51);
}

.menu-info-cta {
  margin-top: 10px;
}

.menu-info-cta .cta-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  background: var(--prim-color, #EF3C51);
  color: #ffffff;
  padding: 16px 24px;
  font-family: var(--second-font, monospace);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.menu-info-cta .cta-btn:hover {
  background: #d82b40;
}

@media (max-width: 1024px) {
  .header-center {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hatamex-header {
    padding: 20px 20px;
  }

  .hatamex-header.scrolled {
    padding: 12px 20px;
  }

  .header-right .lang-switcher,
  .header-right .cta-btn {
    display: none;
  }
}

/* Button Text Hover */
.scramble {
  display: inline-block;
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;

  min-width: 88px;

}


body {
  overflow-x: hidden;
}



.header-right .cta-btn {
  background: var(--prim-color);
  font-family: var(--second-font);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 14px;
}

.header-right .cta-btn img {
  max-width: 14px;
  margin-bottom: -1px;
}

.header-center li a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--second-font);
}

.es-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}

.esthete-header {
  transition-duration: 0.8s;
  pointer-events: auto;

  position: relative;

  width: 100%;
  max-width: 100%;

  padding: 30px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-sizing: border-box;

  color: var(--header-text);

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%);

  transition:
    top .35s cubic-bezier(.22, 1, .36, 1),
    max-width .35s cubic-bezier(.22, 1, .36, 1),
    padding .35s cubic-bezier(.22, 1, .36, 1),
    background .35s ease,
    backdrop-filter .35s ease,
    border-color .35s ease,
    animation: fadeInDown 0.6s ease both;

}

.esthete-header.scrolled {
  margin-top: 20px;
  max-width: 90%;
  padding: 15px 40px;
  background: rgba(15, 15, 15, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition-duration: 0.8s;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0px;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, .25);

}

@media (max-width:991px) {

  .esthete-header {

    padding: 20px;

  }

  .esthete-header.scrolled {

    max-width: 95%;

    padding: 15px 20px;

    margin-top: 10px;

    border-radius: 14px;

  }

}

/* End Header */










/* Footer */
.es-footer-wrapper {
  border-top: 1px solid #5C5C5C;
  background: url(https://dev.esthetecreations.in/wp-content/uploads/2026/07/footer-light-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.footer-cnt-1 h5 {
  font-family: var(--prim-font);
  font-size: 36px;
  color: #fff;
  font-weight: 500;
}

.footer-cnt-1 h5 span {
  color: var(--prim-color);
}

.footer-cnt-1 p {
  color: #8F8F8F;
  font-size: 14px;
  font-family: var(--prim-font);
  margin-top: 24px;
  margin-bottom: 24px;
}

.footer-cnt-1 a {
  background: var(--prim-color);
  font-family: var(--second-font);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}

.footer-list-col {
  padding-left: 30px;
}

.footer-list-col h5 {
  color: #fff;
  font-family: var(--prim-font);
  font-size: 18px;
  font-weight: 500;
}

.footer-list-col ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-top: 10px;
}

.footer-list-col ul li a {
  color: #8F8F8F;
  font-family: var(--prim-font);
  transition-duration: 0.3s;
  text-decoration: none;
  text-transform: capitalize;
  margin-top: 15px;
  display: inline-block;
  padding-left: 20px;
  margin-left: -20px;
  border-left: 1px solid rgba(0, 0, 0, 0);
}

.footer-list-col ul li a:hover {
  color: var(--prim-color);
  border-left: 1px solid var(--prim-color);
  transition-duration: 0.3s;
}

.footer-cnt-1-border {
  border-right: 1px solid #5C5C5C;
}

.footer-cnt-1 {
  padding-top: 100px;
  padding-bottom: 100px;

}

.ft-row-1 .es-col-8 {
  padding-top: 100px;
  padding-bottom: 100px;

}

.es-footer-wrapper .es-container {
  border-bottom: 1px solid #5C5C5C;
  border-left: 1px solid #5C5C5C;
  border-right: 1px solid #5C5C5C;
}

.ft-row-2 {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.ft-row-2 img{
	max-width: 500px;
}

.ft-row-3 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ft-row-3 p {
  font-size: 16px;
  color: #fff;
  font-family: var(--prim-font);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 15px;
  transition-duration: 0.3s;
}

.footer-social:hover {
  color: var(--prim-color);
}

/* End Footer */







/* Hero */
.marquee-wrap {
  display: flex;
  gap: 16px;
  height: 90vh;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
}

.marquee-col {
  position: relative;
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  animation: scroll-up 55s linear infinite;
}

.marquee-col.reverse .marquee-track {
  animation: scroll-down 55s linear infinite;
}

.marquee-col:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

.marquee-track img {
  width: 100%;
  display: block;
  border-radius: 0px;
}


.hero-main {
  height: 90vh;
  align-items: center;
}

.hero-main .es-col-6:first-child {
  display: flex;
  align-items: end;
}

.hero-cnt {
  max-width: 585px;
}

.hero-top {
  font-family: var(--second-font);
  color: #A8A29D;
  margin-bottom: 30px;

}

.hero-top:before {
  content: url(https://dev.esthetecreations.in/wp-content/uploads/2026/08/Group-2147237768.svg);
  padding-right: 20px;
}

.hero-cnt h1 {
  color: #fff;
  font-size: 67px;
  font-family: var(--prim-font);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 68px;
}

.hero-cnt .hero-par {
  font-size: 16px;
  color: #656565;
  font-family: var(--prim-font);
  line-height: 22px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.hero-btn-color {
  background: var(--prim-color);
  font-family: var(--second-font);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 14px;
}


.hero-btn-white {
  background: #fff;
  font-family: var(--second-font);
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 14px;
}

.hero-btn-group {
  display: flex;
  gap: 20px;
}

/* End Hero */





/* Service */
.services-main {
  padding-top: 150px;
  padding-bottom: 150px;
}

.services-main .es-row {
  position: relative;
}

.section-head {
  position: sticky;
  top: 150px;
  max-width: 470px;
}

.section-head h3 {
  color: #fff;
  font-size: 50px;
  font-family: var(--prim-font);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 58px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.sub-title {
  color: var(--prim-color);
  text-transform: uppercase;
  font-family: var(--second-font);
}

.section-head .section-head-par {
  font-size: 16px;
  color: #656565;
  font-family: var(--prim-font);
  line-height: 26px;
  margin-top: 25px;
  margin-bottom: 30px;
}

.service-colmn {
  cursor: pointer;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition-duration: 0.4s;
  padding-left: 20px;
  padding-right: 20px;
}

.service-colmn:hover {
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-colmn .srvc-inner-top {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

.service-colmn .srvc-inner-top .srvc-num {
  width: 20%;
}

.service-colmn .srvc-inner-top .srvc-title {
  width: 60%;
}

.service-colmn .srvc-inner-top .srvc-btn {
  width: 20%;
}

.service-colmn .srvc-img {
  position: absolute;
  right: -50px;
  display: none;
  z-index: 999;
  top: 50%;
  transform: translate(-50%, -50%);
  /* Center the element */
}

.service-colmn:hover .srvc-img {
  display: block;
}

.srvc-num p {
  font-size: 14px;
  color: #fff;
  font-family: var(--second-font);
}

.srvc-title h3 {
  font-size: 24px;
  color: #fff;
  font-family: var(--prim-font);
  font-weight: 400;
  letter-spacing: 0px;
}

.srvc-inner-bottom p {
  font-family: var(--prim-font);
  color: rgba(255, 255, 255, 0.6);
  max-width: 60%;
  margin: auto;
  margin-top: 20px;

  line-height: 26px;
}

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


.srvc-img {
  position: absolute;
  right: -50px;
  top: 50%;
  /* base centering transform lives here and never gets touched again */
  transform: translate(-50%, -50%);
  z-index: 999;

  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(50% 0 50% 0);
}

.service-colmn:hover .srvc-img {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  animation: reveal-img-center .7s cubic-bezier(.16, 1, .3, 1);

  /* NOTE: no transform override here — centering stays intact */
}

/* cursor-follow movement lives on the IMG itself, separate from the container's centering transform */
.srvc-img img {
  display: block;
  transition: transform .15s ease-out;
  transform: translate(calc(var(--mx, 0) * -1px), calc(var(--my, 0) * -1px));
}

@keyframes reveal-img-center {
  0% {
    clip-path: inset(50% 0 50% 0);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* End Service */






/* Process */
.process-main-bg {
  background: url(https://dev.esthetecreations.in/wp-content/uploads/2026/07/process-bg.svg);
  padding-bottom: 50px;
}

.scroll-container {
  position: relative;
  height: 400vh;
  /* 4 steps x 100vh of scroll each; tune to taste */

}

.sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-align: center;
  color: var(--prim-color);
  font-family: var(--second-font);
  font-size: 16px;
  letter-spacing: -0.25px;
  font-weight: 400;
  margin-bottom: 18px;
}

.process-main-bg h3 {
  text-align: center;
  font-family: var(--prim-font);
  color: #fff;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.25;
  margin: 0 0 48px;
  max-width: 500px;
  margin: auto;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

.accordion {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step {
  background: var(--prim-color);
  border-bottom: 1px solid #fff;
}

.process-main-bg .step.active {
  background: #4D0009;
}

.step:first-child {
  border-top: none;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFF2DD;
  font-family: var(--second-font);
}

.step-title::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  display: inline-block;
}

.step-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-family: var(--second-font);
}

.step-body {
  max-height: 0px;
  overflow: hidden;
  transition-duration: 0.6s;
}

.step.active .step-body {
  max-height: 300px;
  transition-duration: 0.6s;
}

.step.active {
  background: var(--maroon-dark);
}

.step.active .step-header {
  border-bottom: 1px solid #fff;
}

.step-body-inner {
  padding: 12px 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-desc {
  max-width: 460px;
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  margin-top: 24px;
  font-family: var(--prim-font);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 420px;
  padding-bottom: 30px;
}

.tag {
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 400;
  padding: 9px 16px;
  border-radius: 22px;
  white-space: nowrap;
  font-family: var(--second-font);

}


/* End Process */





/* Our Team */
.team-scroll-wrapper {
  position: relative;
  height: 300vh;
}

.team-section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  gap: 40px;
}

.team-left {
  flex: 0 0 380px;
  max-width: 380px;
}

.team-left h3 {
  text-align: left;
  font-family: var(--prim-font);
  color: #fff;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 48px;
  max-width: 500px;
  margin: auto;
  letter-spacing: -0.5px;

}

.team-left .eyebrow {
  text-align: left;
  text-transform: uppercase;
}

.team-left p {
  font-size: 16px;
  color: #656565;
  font-family: var(--prim-font);
  line-height: 26px;
  margin-top: 25px;
  margin-bottom: 30px;
}

.scroll-progress {
  width: 200px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--prim-color);
  border-radius: 3px;
}

/* ===== horizontal card track ===== */
.cards-viewport {
  flex: 1 1 auto;
  height: 430px;
  overflow: hidden;
  /* clip horizontally here, locally — not on body */
}

.cards-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.card {
  position: relative;
  width: 280px;
  height: 420px;
  border-radius: 0px;
  overflow: hidden;
  flex: 0 0 auto;
  transition-duration: 0.4s;
  cursor: pointer;

}

.card:hover {

  transition-duration: 0.4s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: var(--prim-color);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.card-name {
  font-size: 22px;
  font-family: var(--prim-font);
  font-weight: 400;
  margin-bottom: 5px;
  color: #fff;
  letter-spacing: -0.5px;

}

.card-role {
  font-size: 14px;
  letter-spacing: -0.08px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0px;
  font-family: var(--second-font);
}

@media (max-width:1100px) {
  .team-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 24px;
    gap: 20px;
  }

  .team-left {
    max-width: 100%;
  }

  .cards-viewport {
    width: 100%;
    height: 340px;
  }
}

/* End Our Team */










/* Who we are */
.who-we-are {
  padding-top: 100px;
}

.who-we-are-head p {
  color: var(--prim-color);
  text-transform: uppercase;
  font-family: var(--second-font);
}

.who-we-are-head h3 {}

.who-we-are-inner {
  min-height: 540px;
}

.who-we-are-inner.digital-strategy {
  background: #fff;
}

.who-we-are-inner.build {
  background: url(https://dev.esthetecreations.in/wp-content/uploads/2026/08/Frame-2147241169.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

}

.who-we-are-inner.build .who-we-are-inner-img {
  text-align: center;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.who-we-are-inner.build .who-we-are-inner-img img {
  width: 100%;
}

.who-we-are-inner .who-we-are-inner-cnt {
  padding: 35px 20px;
  margin-bottom: 60px;
}

.who-we-are-inner.digital-strategy .who-we-are-inner-cnt h4 {
  font-size: 24px;
  font-family: var(--prim-font);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #000;
}

.who-we-are-inner.digital-strategy .who-we-are-inner-cnt p {
  font-size: 16px;
  font-family: var(--prim-font);
  font-weight: 400;
  line-height: 24px;
  color: #3A3A3A;
  margin-top: 10px;
}

.who-we-are-inner.digital-strategy .who-we-are-inner-img img {
  width: 100%;
  margin-top: 4px !important;
}



.who-we-are-inner.build .who-we-are-inner-cnt h4 {
  font-size: 24px;
  font-family: var(--prim-font);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #fff;
}

.who-we-are-inner.build .who-we-are-inner-cnt p {
  font-size: 16px;
  font-family: var(--prim-font);
  font-weight: 400;
  line-height: 24px;
  color: #F4F4F4;
  margin-top: 10px;
}

.who-we-are-inner.perfomance {
  background: #282828;
}

.who-we-are-inner.perfomance .who-we-are-inner-cnt h4 {
  font-size: 24px;
  font-family: var(--prim-font);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #fff;
}

.who-we-are-inner.perfomance .who-we-are-inner-cnt p {
  font-size: 16px;
  font-family: var(--prim-font);
  font-weight: 400;
  line-height: 24px;
  color: #F4F4F4;
  margin-top: 10px;
}


.who-we-are-inner.perfomance .who-we-are-inner-img {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.who-we-are-inner.perfomance .who-we-are-inner-img img {
  width: 100%;
}

.who-we-are-head h3 {
  font-family: var(--prim-font);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.3px;
  margin-top: 20px;
  margin-bottom: 50px;
  max-width: 1000px;
  line-height: 44px;
}

/* End who we are */









/* Video Counter */
.video-wrapper {
  position: relative;
}

.video-wrapper>video {
  width: 100%;
  vertical-align: middle;
}

.video-wrapper>video.has-media-controls-hidden::-webkit-media-controls {
  display: none;
}

.video-overlay-play-button {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10px calc(50% - 50px);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.95;
  cursor: pointer;
  transition: opacity 150ms;
}

.video-overlay-play-button:hover {
  opacity: 1;
}

.video-overlay-play-button.is-hidden {
  display: none;
}

.video-counter-main {
  padding-top: 150px;
}

.section-head-video {
  text-align: center;
}

.section-head-video h3 {
  color: #fff;
  font-size: 50px;
  font-family: var(--prim-font);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 58px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.section-head-par {
  font-size: 16px;
  color: #656565;
  font-family: var(--prim-font);
  line-height: 26px;
  margin-top: 25px;
  margin-bottom: 30px;
  max-width: 600px;
  margin: auto;
}

.video-sect {
  margin-top: 40px;
}

.counter-main {
  margin-top: 30px;
}

.counter-inner {
  text-align: center;
}

.counter-inner h4 {
  font-family: var(--prim-font);
  color: #fff;
  font-size: 67px;
  font-weight: 400;
  letter-spacing: -1.5px;
}

.counter-inner h4 span {
  font-size: 55px;
  color: var(--prim-color);
  font-family: var(--prim-font);
}

.counter-inner p {
  font-size: 16px;
  color: #656565;
  font-family: var(--prim-font);
  line-height: 26px;
  margin-top: 25px;
  margin-bottom: 30px;
  max-width: 600px;
  margin: auto;
}

/* End Video Counter */




/* Other Sections */
.tst-section {
  padding-bottom: 100px;
}

.tst-subtitle {
  font-size: 16px !important;
  color: #656565 !important;
  font-family: var(--prim-font) !important;
  line-height: 26px;
}

/* ==========================================================================
   Full Screen Preloader Overlay (Hatamex Style)
   ========================================================================== */
.es-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.es-preloader.loaded {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 2;
}

.preloader-logo-img {
  height: 48px;
  width: auto;
  opacity: 0;
  transform: translateY(12px);
  animation: preloaderLogoFade 0.6s ease forwards 0.1s;
}

.preloader-brand-name {
  font-family: var(--prim-font), sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(12px);
  animation: preloaderLogoFade 0.6s ease forwards 0.1s;
}

@keyframes preloaderLogoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-bar-wrap {
  width: 280px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  transition: width 0.05s linear;
}

.preloader-counter {
  position: absolute;
  bottom: 40px;
  right: 50px;
  font-family: var(--prim-font), sans-serif;
  font-size: 96px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  letter-spacing: -3px;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.preloader-percent {
  font-size: 60px;
  color: var(--prim-color, #EF3C51);
  margin-left: 4px;
}

@media (max-width: 991px) {
  .preloader-counter {
    bottom: 30px;
    right: 30px;
    font-size: 54px;
  }
  .preloader-percent {
    font-size: 36px;
  }
  .preloader-bar-wrap {
    width: 200px;
  }
}



/* Animations */
.reveal-heading {
    visibility: hidden; /* prevents flash before JS runs */
}
/* End Animations */