/* Font Setup */
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Variable.ttf") format("truetype-variations");
  font-weight: 200 700; /* Range of weights available in variable font */
  font-style: normal;
  font-display: swap;
}
/* Font weight convenience classes */
.font-extralight {
  font-variation-settings: "wght" 200;
}

.font-light {
  font-variation-settings: "wght" 300;
}

.font-regular {
  font-variation-settings: "wght" 400;
}

.font-medium {
  font-variation-settings: "wght" 500;
}

.font-semibold {
  font-variation-settings: "wght" 600;
}

.font-bold {
  font-variation-settings: "wght" 700;
}

/* Reset Styles */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* Remove all animations and transitions for people who prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Global Styles */
html, body {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 400;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container for sections */
.container {
  width: 95%;
  max-width: 1800px; /* Increased from 1200px to 1800px */
  margin: 0 auto;
  padding: 0 20px; /* Added lateral padding */
}

/* Noise texture effect for all backgrounds */
.noise-bg, section {
  position: relative;
}
.noise-bg::before, section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05; /* Subtle noise effect */
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1; /* Above background but below content */
  mix-blend-mode: overlay;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #fff;
  position: relative;
  z-index: 2; /* Above noise texture */
}

h2 {
  font-size: 88px; /* Global H2 size as requested */
  letter-spacing: -0.02em;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 72px; /* Slightly smaller on medium screens */
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 56px; /* More readable on mobile */
  }
}

p {
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 2; /* Above noise texture */
}

/* Links */
a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2; /* Above noise texture */
}
a:hover {
  color: #ccc;
}

/* Section spacing */
section {
  position: relative;
  overflow: hidden;
}

/* Don't apply noise to sections with background images/videos */
.hero-section::before {
  display: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.btn-primary {
  background-color: #fff;
  color: #000;
}
.btn-primary:hover {
  background-color: #f2f2f2;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    padding: 0.7rem 1.5rem;
  }
}
/* Navigation Styles */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  /* Scrolled state - only applied when past hero section */
  /* Mobile navigation */
}
.main-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.main-nav .logo:hover {
  opacity: 0.8;
}
.main-nav .logo .logo-image {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .main-nav .logo .logo-image {
    height: 32px;
  }
}
.main-nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.main-nav .nav-links li {
  position: relative;
}
.main-nav .nav-links a {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 500;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.main-nav .nav-links a:hover {
  color: #ccc;
}
.main-nav .nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.main-nav .nav-links a:hover:after {
  width: 100%;
}
.main-nav .menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}
.main-nav .menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-nav .menu-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.main-nav .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.main-nav .menu-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.main-nav.scrolled {
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.75) !important; /* More transparent black */
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(8px) !important; /* Stronger blur effect */
  -webkit-backdrop-filter: blur(8px) !important;
}
@media (max-width: 768px) {
  .main-nav .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
  }
  .main-nav .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 1;
  }
  .main-nav .nav-links.active {
    right: 0;
  }
}

/* Hero Section Styles */
.hero-section {
  position: fixed; /* Fixed position keeps it in place */
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  z-index: 1; /* Ensure proper stacking context */
  /* Responsive adjustments */
}
.hero-section .hero-container {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-section .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-section .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-section .hero-content {
  text-align: center;
  color: #fff;
  padding: 2rem;
  z-index: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-section .hero-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hero-section .hero-main-logo {
  max-width: 80%; /* Cap maximum width for very large screens */
  width: auto; /* Let GSAP control exact width */
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  /* Critical animation properties */
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d; /* Enable 3D transforms */
  /* Prevent browser painting issues */
  -webkit-font-smoothing: antialiased;
  -webkit-transform-style: preserve-3d;
  /* Initially invisible - will be shown by JS */
  opacity: 0;
  visibility: hidden;
}
.hero-section .social-links {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  z-index: 10;
  padding: 0 30px;
}
.hero-section .social-links .social-link {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero-section .social-links .social-link:hover {
  opacity: 1;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.hero-section .social-links .social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-width: 576px) {
  .hero-section .social-links {
    bottom: 20px;
    padding: 0 20px;
    gap: 12px;
  }
  .hero-section .social-links .social-link {
    width: 20px;
    height: 20px;
  }
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.7;
  z-index: 5;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hero-section .scroll-indicator:hover {
  opacity: 1;
}
.hero-section .scroll-indicator span {
  margin-bottom: 0.5rem;
}
.hero-section .scroll-indicator .scroll-arrow {
  width: 20px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: bounceDown 2s infinite;
          animation: bounceDown 2s infinite;
}
@media (max-width: 576px) {
  .hero-section .scroll-indicator {
    bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .hero-section .hero-logo-container {
    padding: 0 15px;
  }
  .hero-section .hero-main-logo {
    max-width: 70%;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-logo-container {
    padding: 0 10px;
  }
  .hero-section .hero-main-logo {
    max-width: 90%;
  }
}

/* Initial hide for header logo for animation purposes */
.main-nav .logo-image {
  opacity: 0;
  visibility: hidden;
}

/* Section borders blur effect */
/* This makes the section boundary blurred between hero and intro */
.intro-section {
  position: relative;
}
.intro-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 70px; /* Increased height for more pronounced effect */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), color-stop(30%, rgba(0, 0, 0, 0.5)), color-stop(60%, rgba(0, 0, 0, 0.8)), color-stop(80%, rgba(0, 0, 0, 0.95)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 80%, rgb(0, 0, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5; /* Above section content */
  pointer-events: none;
}

@-webkit-keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  60% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  60% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
}
/* Intro Section Styles */
.intro-section {
  position: relative;
  z-index: 3;
  padding: 120px 0;
  background-color: #000; /* Black background */
  overflow: hidden;
  /* Animations */
  /* Responsive adjustments */
}
.intro-section .intro-container {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}
.intro-section .intro-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  grid-gap: 120px 60px; /* Increased vertical gap from 80px to 120px */
  grid-template-areas: "heading owner" "text text";
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start; /* Changed from center to start to push elements down */
  padding-top: 40px; /* Added padding to push everything down */
}
.intro-section .intro-heading {
  grid-area: heading;
  align-self: start;
  margin-top: 30px; /* Added margin to push title down */
}
.intro-section .intro-heading h2 {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 700;
  font-size: 88px;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  position: relative;
}
.intro-section .intro-heading h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #fff;
}
.intro-section .intro-text {
  grid-area: text;
  width: 70%;
  margin-left: auto;
  padding-right: 40px;
}
.intro-section .intro-text p {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 42px;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.intro-section .owner-image {
  grid-area: owner;
  justify-self: center;
  position: relative;
  width: 300px;
  height: 300px;
}
.intro-section .owner-image .image-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #333;
  background-size: cover;
  background-position: center top; /* Positioning adjusted to focus on face */
  background-repeat: no-repeat;
  /* Border removed as requested */
  z-index: 1;
  overflow: hidden; /* Ensure the image stays within the circle */
}
.intro-section .owner-image .rotating-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate 12s linear infinite;
          animation: rotate 12s linear infinite;
}
.intro-section .owner-image .rotating-text svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.intro-section .owner-image .rotating-text text {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 600;
  font-size: 14px;
  fill: #fff;
  letter-spacing: 0px;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 1600px) {
  .intro-section .intro-text {
    width: 85%;
  }
}
@media (max-width: 1400px) {
  .intro-section .intro-content {
    grid-gap: 60px 40px;
  }
  .intro-section .intro-heading h2 {
    font-size: 72px;
  }
  .intro-section .intro-text {
    width: 90%;
    padding-right: 20px;
  }
  .intro-section .intro-text p {
    font-size: 36px;
  }
  .intro-section .owner-image {
    width: 280px;
    height: 280px;
  }
  .intro-section .owner-image .image-placeholder {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 1200px) {
  .intro-section .intro-content {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "owner" "text";
    grid-gap: 40px;
  }
  .intro-section .intro-text {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .intro-section {
    padding: 80px 0;
  }
  .intro-section .intro-heading h2 {
    font-size: 56px;
  }
  .intro-section .intro-text p {
    font-size: 24px;
  }
  .intro-section .owner-image {
    width: 240px;
    height: 240px;
  }
  .intro-section .owner-image .image-placeholder {
    width: 160px;
    height: 160px;
  }
  .intro-section .intro-content {
    grid-gap: 30px;
  }
}
@media (max-width: 576px) {
  .intro-section .owner-image {
    width: 220px;
    height: 220px;
  }
  .intro-section .owner-image .image-placeholder {
    width: 140px;
    height: 140px;
  }
  .intro-section .owner-image .rotating-text text {
    font-size: 12px;
  }
}

/* Parallax Gallery Section Styles */
.parallax-gallery-section {
  position: relative;
  z-index: 3;
  padding: 150px 0;
  background-color: #000;
  overflow: hidden;
}
.parallax-gallery-section .gallery-container {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}
.parallax-gallery-section .gallery-header {
  margin-bottom: 80px;
}
.parallax-gallery-section .gallery-header h2 {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 700;
  font-size: 88px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
}
.parallax-gallery-section .gallery-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #fff;
}
.parallax-gallery-section .gallery-header .gallery-description {
  max-width: 75%;
}
.parallax-gallery-section .gallery-header .gallery-description p {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 42px;
  line-height: 1.4;
  color: #fff;
}
.parallax-gallery-section .parallax-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(350px, auto);
  gap: 40px;
  position: relative;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.parallax-gallery-section .parallax-item {
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.parallax-gallery-section .parallax-item:nth-child(1) {
  grid-area: 1/1/3/2;
}
.parallax-gallery-section .parallax-item:nth-child(2) {
  grid-area: 1/2/2/3;
}
.parallax-gallery-section .parallax-item:nth-child(3) {
  grid-area: 2/2/4/3;
}
.parallax-gallery-section .parallax-item:nth-child(4) {
  grid-area: 1/3/3/4;
}
.parallax-gallery-section .parallax-item:nth-child(5) {
  grid-area: 1/4/2/5;
}
.parallax-gallery-section .parallax-item:nth-child(6) {
  grid-area: 2/4/4/5;
}
.parallax-gallery-section .parallax-item:nth-child(7) {
  grid-area: 3/1/4/2;
}
.parallax-gallery-section .parallax-item:nth-child(8) {
  grid-area: 3/3/4/4;
}
.parallax-gallery-section .parallax-item:hover {
  z-index: 10;
}
.parallax-gallery-section .parallax-item:hover .photo-frame {
  -webkit-transform: translateZ(20px) scale(1.05);
          transform: translateZ(20px) scale(1.05);
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.parallax-gallery-section .parallax-item:hover .photo-frame .photo-placeholder {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.parallax-gallery-section .parallax-item:hover .photo-frame .photo-caption {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.parallax-gallery-section .photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.5s ease;
}
.parallax-gallery-section .photo-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.parallax-gallery-section .photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 600;
  font-size: 20px;
  opacity: 0.8;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.parallax-gallery-section .parallax-item:nth-child(1) .photo-placeholder {
  background: linear-gradient(135deg, #333 0%, #555 100%), radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}
.parallax-gallery-section .parallax-item:nth-child(2) .photo-placeholder {
  background: linear-gradient(225deg, #444 0%, #666 100%), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}
.parallax-gallery-section .parallax-item:nth-child(3) .photo-placeholder {
  background: linear-gradient(45deg, #555 0%, #777 100%), radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
}
.parallax-gallery-section .parallax-item:nth-child(4) .photo-placeholder {
  background: linear-gradient(315deg, #3a3a3a 0%, #5a5a5a 100%), radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
}
.parallax-gallery-section .parallax-item:nth-child(5) .photo-placeholder {
  background: -webkit-gradient(linear, left top, left bottom, from(#4a4a4a), to(#6a6a6a)), radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.13) 0%, transparent 60%);
  background: linear-gradient(180deg, #4a4a4a 0%, #6a6a6a 100%), radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.13) 0%, transparent 60%);
}
.parallax-gallery-section .parallax-item:nth-child(6) .photo-placeholder {
  background: -webkit-gradient(linear, left top, right top, from(#555), to(#777)), radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.11) 0%, transparent 70%);
  background: linear-gradient(90deg, #555 0%, #777 100%), radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.11) 0%, transparent 70%);
}
.parallax-gallery-section .parallax-item:nth-child(7) .photo-placeholder {
  background: -webkit-gradient(linear, right top, left top, from(#444), to(#666)), radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.14) 0%, transparent 50%);
  background: linear-gradient(270deg, #444 0%, #666 100%), radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.14) 0%, transparent 50%);
}
.parallax-gallery-section .parallax-item:nth-child(8) .photo-placeholder {
  background: linear-gradient(45deg, #3f3f3f 0%, #5f5f5f 100%), radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}
@media (max-width: 1400px) {
  .parallax-gallery-section .gallery-header .gallery-description {
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  .parallax-gallery-section {
    padding: 120px 0;
  }
  .parallax-gallery-section .gallery-header {
    margin-bottom: 60px;
  }
  .parallax-gallery-section .gallery-header h2 {
    font-size: 72px;
  }
  .parallax-gallery-section .gallery-header .gallery-description {
    max-width: 100%;
  }
  .parallax-gallery-section .gallery-header .gallery-description p {
    font-size: 36px;
  }
  .parallax-gallery-section .parallax-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .parallax-gallery-section .parallax-item:nth-child(1) {
    grid-area: auto;
  }
  .parallax-gallery-section .parallax-item:nth-child(2) {
    grid-area: auto;
  }
  .parallax-gallery-section .parallax-item:nth-child(3) {
    grid-area: auto;
  }
  .parallax-gallery-section .parallax-item:nth-child(4) {
    grid-area: auto;
  }
  .parallax-gallery-section .parallax-item:nth-child(5) {
    grid-area: auto;
  }
  .parallax-gallery-section .parallax-item:nth-child(6) {
    grid-area: auto;
  }
  .parallax-gallery-section .parallax-item:nth-child(7) {
    grid-area: auto;
  }
  .parallax-gallery-section .parallax-item:nth-child(8) {
    grid-area: auto;
  }
}
@media (max-width: 767px) {
  .parallax-gallery-section {
    padding: 100px 0;
  }
  .parallax-gallery-section .gallery-header h2 {
    font-size: 56px;
  }
  .parallax-gallery-section .gallery-header .gallery-description p {
    font-size: 28px;
  }
  .parallax-gallery-section .parallax-grid {
    grid-template-columns: 1fr;
  }
}

/* Team Section Styles */
.team-section {
  position: relative;
  z-index: 3;
  padding: 180px 0; /* Increased padding for better spacing */
  background-color: #000;
  overflow: hidden;
}
.team-section .team-container {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}
.team-section .team-header {
  margin-bottom: 80px;
}
.team-section .team-header h2 {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 700;
  font-size: 88px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
}
.team-section .team-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #fff;
}
.team-section .team-header .team-description {
  max-width: 75%;
}
.team-section .team-header .team-description p {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 42px;
  line-height: 1.4;
  color: #fff;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 40px;
  position: relative;
}
.team-section .team-grid .member-container:nth-child(2) {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
.team-section .team-grid .member-container:nth-child(3) {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.team-section .team-grid .member-container:nth-child(4) {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.team-section .team-grid .member-card {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  border-radius: 4px;
  background-color: #111;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.5s ease;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.team-section .team-grid .member-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.team-section .team-grid .member-card .member-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.team-section .team-grid .member-card[data-member=corrado] .member-photo {
  background-color: #2a2a2a;
  background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a), linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
.team-section .team-grid .member-card[data-member=cando] .member-photo {
  background-color: #2a2a2a;
  background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a), linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
.team-section .team-grid .member-card[data-member=trevi] .member-photo {
  background-color: #2a2a2a;
  background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a), linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
.team-section .team-grid .member-card[data-member=bossolinho] .member-photo {
  background-color: #2a2a2a;
  background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a), linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
@media (max-width: 1400px) {
  .team-section .team-header .team-description {
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  .team-section {
    padding: 150px 0; /* Adjusted for medium screens */
  }
  .team-section .team-header {
    margin-bottom: 60px;
  }
  .team-section .team-header .team-description {
    max-width: 100%;
  }
  .team-section .team-header h2 {
    font-size: 72px;
  }
  .team-section .team-header .team-description p {
    font-size: 36px;
  }
  .team-section .team-grid {
    gap: 60px 30px;
  }
  .team-section .team-grid .member-container:nth-child(2) {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  .team-section .team-grid .member-container:nth-child(3) {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .team-section .team-grid .member-container:nth-child(4) {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@media (max-width: 767px) {
  .team-section {
    padding: 120px 0; /* Adjusted for mobile */
  }
  .team-section .team-header h2 {
    font-size: 56px;
  }
  .team-section .team-header .team-description p {
    font-size: 28px;
  }
  .team-section .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-section .team-grid .member-container {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .team-section .team-grid .member-card {
    padding-bottom: 100%;
  }
}

/* Services Section Styles */
.services-section {
  position: relative;
  z-index: 3;
  padding: 180px 0; /* Increased padding for full-screen effect */
  background-color: #000;
  color: #000;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.services-section.yellow-bg {
  background-color: #F6CE46;
}
.services-section.yellow-bg h2:after {
  background-color: #000;
}
.services-section.yellow-bg .service-item {
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
.services-section .services-container {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services-section .services-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  margin-bottom: 80px;
}
.services-section .services-header h2 {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 700;
  font-size: 88px;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
}
.services-section .services-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 70px;
  height: 4px;
  background-color: #000;
}
.services-section .services-header .services-description {
  max-width: 75%;
}
.services-section .services-header .services-description p {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 42px;
  line-height: 1.4;
  color: #000;
}
.services-section .services-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.services-section .services-list {
  width: 70%;
  position: relative;
}
.services-section .service-item {
  position: relative;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  overflow: visible;
  cursor: pointer;
}
.services-section .service-item:last-child {
  border-bottom: none;
}
.services-section .service-item h3 {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 700;
  font-size: 52px;
  color: #000;
  position: relative;
  z-index: 2;
}
.services-section .service-hover-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.services-section .service-hover-image .image-container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.services-section [data-service=hair-beard] .image-container {
  background-color: #333;
  position: relative;
  overflow: hidden;
}
.services-section [data-service=hair-beard] .image-container::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  width: 40%;
  height: 40%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50% 50% 0 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.services-section [data-service=hair-beard] .image-container::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 30%;
  height: 25%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.services-section [data-service=treatments] .image-container {
  background-color: #3a3a3a;
  position: relative;
}
.services-section [data-service=treatments] .image-container::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 30%;
  width: 15%;
  height: 35%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px 5px 2px 2px;
}
.services-section [data-service=treatments] .image-container::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 55%;
  width: 18%;
  height: 40%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 3px 3px;
}
.services-section [data-service=coloration] .image-container {
  background-color: #444;
  position: relative;
  background-image: linear-gradient(135deg, #333 0%, #444 50%, #555 100%);
}
.services-section [data-service=coloration] .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 200, 200, 0.2) 0%, rgba(255, 200, 200, 0) 20%), radial-gradient(circle at 70% 60%, rgba(200, 200, 255, 0.2) 0%, rgba(200, 200, 255, 0) 20%), radial-gradient(circle at 40% 70%, rgba(200, 255, 200, 0.2) 0%, rgba(200, 255, 200, 0) 20%), radial-gradient(circle at 80% 20%, rgba(255, 255, 200, 0.2) 0%, rgba(255, 255, 200, 0) 20%);
}
.services-section [data-service=styling] .image-container {
  background-color: #3f3f3f;
  position: relative;
}
.services-section [data-service=styling] .image-container::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 30%;
  width: 40%;
  height: 10%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.services-section [data-service=styling] .image-container::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 35%;
  width: 35%;
  height: 8%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media (max-width: 1400px) {
  .services-section .services-header .services-description {
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  .services-section {
    padding: 150px 0; /* Adjusted for medium screens */
  }
  .services-section .services-header {
    margin-bottom: 60px;
  }
  .services-section .services-header .services-description {
    max-width: 100%;
  }
  .services-section .services-header h2 {
    font-size: 72px;
  }
  .services-section .services-header .services-description p {
    font-size: 36px;
  }
  .services-section .services-list {
    width: 100%;
  }
  .services-section .service-item h3 {
    font-size: 42px;
  }
  .services-section .service-hover-image {
    display: none;
  }
}
@media (max-width: 767px) {
  .services-section {
    padding: 120px 0; /* Adjusted for mobile */
  }
  .services-section .services-header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .services-section .services-header h2 {
    font-size: 56px;
  }
  .services-section .services-header h2:after {
    left: 0;
    right: auto;
  }
  .services-section .services-header .services-description p {
    font-size: 28px;
  }
  .services-section .service-item {
    padding: 2rem 0;
  }
  .services-section .service-item h3 {
    font-size: 36px;
  }
}

/* Horizontal Scroll Section Styles */
.horizontal-scroll-section {
  position: relative;
  z-index: 3;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  -webkit-transition: background-color 0.8s ease, color 0.8s ease;
  transition: background-color 0.8s ease, color 0.8s ease;
}
.horizontal-scroll-section.yellow-bg {
  background-color: #F6CE46;
  color: #000;
}
.horizontal-scroll-section.yellow-bg .btn-outline {
  color: #000;
  border-color: #000;
}
.horizontal-scroll-section.yellow-bg .btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.horizontal-scroll-section.yellow-bg .scroll-progress .progress-bar {
  background-color: rgba(0, 0, 0, 0.2);
}
.horizontal-scroll-section.yellow-bg .scroll-progress .progress-fill {
  background-color: #000;
}
.horizontal-scroll-section.yellow-bg .scroll-progress .scroll-tip {
  color: #000;
}
.horizontal-scroll-section .cards-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  will-change: transform;
}
.horizontal-scroll-section .card {
  position: relative;
  width: 33.3333333333%;
  height: 100%;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.horizontal-scroll-section .card-content {
  width: 45%;
  z-index: 2;
  opacity: 0.3;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.horizontal-scroll-section .card-content.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.horizontal-scroll-section .card-content h2 {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 700;
  font-size: 88px;
  color: inherit;
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
}
.horizontal-scroll-section .card-content h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: currentColor;
  -webkit-transition: background-color 0.8s ease;
  transition: background-color 0.8s ease;
}
.horizontal-scroll-section .card-content p {
  font-family: "Clash Display", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 42px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: inherit;
  -webkit-transition: color 0.8s ease;
  transition: color 0.8s ease;
  max-width: 90%;
}
.horizontal-scroll-section .card-content .btn {
  margin-top: 20px;
}
.horizontal-scroll-section .card-image {
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.95);
          transform: translateY(-50%) scale(0.95);
  width: 45%;
  height: 70vh;
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  opacity: 0.5;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: transform 0.7s ease, opacity 0.7s ease;
  transition: transform 0.7s ease, opacity 0.7s ease, -webkit-transform 0.7s ease;
}
.horizontal-scroll-section .card-image.active {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  opacity: 1;
}
.horizontal-scroll-section .card-image .placeholder-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 1.2s ease;
  transition: -webkit-transform 1.2s ease;
  transition: transform 1.2s ease;
  transition: transform 1.2s ease, -webkit-transform 1.2s ease;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.horizontal-scroll-section .card-image .placeholder-image:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.horizontal-scroll-section .vision-card .card-image .placeholder-image {
  background-color: #444;
  background-image: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 60%), linear-gradient(220deg, #222 25%, #444 65%, #333 100%);
}
.horizontal-scroll-section .battle-card .card-image .placeholder-image {
  background-color: #555;
  background-image: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 55%), linear-gradient(135deg, #333 25%, #555 65%, #444 100%);
}
.horizontal-scroll-section .lorem-card .card-image .placeholder-image {
  background-color: #666;
  background-image: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), -webkit-gradient(linear, left top, left bottom, color-stop(25%, #444), color-stop(65%, #666), to(#555));
  background-image: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), linear-gradient(180deg, #444 25%, #666 65%, #555 100%);
}
.horizontal-scroll-section .scroll-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  max-width: 300px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.horizontal-scroll-section .scroll-progress .progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  -webkit-transition: background-color 0.8s ease;
  transition: background-color 0.8s ease;
}
.horizontal-scroll-section .scroll-progress .progress-fill {
  height: 100%;
  width: 0;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: width 0.1s ease, background-color 0.8s ease;
  transition: width 0.1s ease, background-color 0.8s ease;
}
.horizontal-scroll-section .scroll-progress .scroll-tip {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  color: #fff;
  -webkit-transition: color 0.8s ease;
  transition: color 0.8s ease;
}
@media (max-width: 1400px) {
  .horizontal-scroll-section .card-content {
    width: 48%;
  }
  .horizontal-scroll-section .card-content h2 {
    font-size: 72px;
  }
  .horizontal-scroll-section .card-content p {
    font-size: 36px;
  }
  .horizontal-scroll-section .card-image {
    width: 42%;
  }
}
@media (max-width: 991px) {
  .horizontal-scroll-section .cards-container {
    position: relative;
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .horizontal-scroll-section .card {
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 5%;
  }
  .horizontal-scroll-section .card-content {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
  }
  .horizontal-scroll-section .card-content h2 {
    font-size: 60px;
  }
  .horizontal-scroll-section .card-content h2:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .horizontal-scroll-section .card-content p {
    font-size: 30px;
    max-width: 100%;
  }
  .horizontal-scroll-section .card-content .btn {
    margin: 20px auto 0;
  }
  .horizontal-scroll-section .card-image {
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 90%;
    height: 40vh;
    margin-bottom: 40px;
  }
  .horizontal-scroll-section .scroll-progress {
    display: none;
  }
}
@media (max-width: 767px) {
  .horizontal-scroll-section .card-content h2 {
    font-size: 48px;
  }
  .horizontal-scroll-section .card-content p {
    font-size: 24px;
  }
}