@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-display: swap;
}
body {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Akitv";
  src: url("../../fonts/AktivGrotesk-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* header style */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 33px 2%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}
.site-header .site-logo img {
  max-width: 200px;
  width: clamp(120px, 15vw, 280px);
  min-width: 100px;
  height: auto;
}
.site-header .main-navigation ul {
  display: flex;
  gap: clamp(15px, 8vw, 200px);
  list-style: none;
  padding: 0;
  justify-content: space-between;
}
.site-header .main-navigation ul li {
  position: relative;
  padding: 5px 0;
}
.site-header .main-navigation ul li a {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: color 0.3s ease;
}
.site-header .main-navigation ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}
.site-header .main-navigation ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header .main-navigation ul li.active a::after {
  transform: scaleX(1);
  background-color: #fff;
}
.site-header .shop-now-btn {
  color: black;
  background-color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.site-header .shop-now-btn img {
  width: 23px;
  transition: filter 0.3s ease;
}
.site-header .shop-now-btn {
  /* Hover State */
}
.site-header .shop-now-btn:hover {
  background-color: black;
  color: white;
  border: 1px solid black;
}
.site-header .shop-now-btn:hover img {
  /* This turns a black PNG icon into white */
  filter: brightness(0) invert(1);
}
.site-header .hamburger {
  display: none;
}
.site-header.scrolled {
  background-color: white;
  padding: 33px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.scrolled .site-logo img {
  filter: brightness(0);
}
.site-header.scrolled .main-navigation ul li.active a::after {
  background-color: #000;
}
.site-header.scrolled .main-navigation ul li a {
  color: black;
}
.site-header.scrolled .main-navigation ul li a:hover::after {
  background-color: #000;
}
.site-header.scrolled .shop-now-btn {
  background-color: black;
  color: white;
}
.site-header.scrolled .shop-now-btn img {
  filter: invert(1);
}
.site-header.scrolled .shop-now-btn:hover {
  background-color: transparent;
  color: black;
}
.site-header.scrolled .shop-now-btn:hover img {
  filter: none;
}
.site-header.scrolled .hamburger span {
  background: black;
}
.site-header {
  /* MOBILE FULL-SCREEN TRANSFORMATION */
}
@media (max-width: 992px) {
  .site-header {
    padding: 20px 5%;
  }
  .site-header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 1100;
  }
  .site-header .hamburger span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
  .site-header .hamburger.active .line-1 {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header .hamburger.active .line-2 {
    opacity: 0;
  }
  .site-header .hamburger.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
  }
  .site-header .header-actions {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    gap: 0;
    transform: translateY(-130%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .site-header .header-actions.active {
    transform: translateY(0);
  }
  .site-header .header-actions .main-navigation {
    width: 100%;
  }
  .site-header .header-actions .main-navigation ul {
    flex-direction: column;
    gap: 0;
  }
  .site-header .header-actions .main-navigation ul li {
    margin: 0 5%;
    border-bottom: 1px solid #d4d4d4;
  }
  .site-header .header-actions .main-navigation ul li.active a::after {
    background-color: #000;
  }
  .site-header .header-actions .main-navigation ul li a {
    padding: 25px 0;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    font-weight: 400;
  }
  .site-header .header-actions .mobile-socials {
    display: block;
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
  }
  .site-header .header-actions .mobile-socials .footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 8% 30px 8%;
  }
  .site-header .header-actions .mobile-socials .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .site-header .header-actions .mobile-socials .social-icons img {
    width: 20px;
    filter: invert(1);
  }
  .site-header .shop-now-btn {
    display: none;
  }
}

.contact-container .contact-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: 0 5%;
}
.contact-container .contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.contact-container .contact-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.contact-container .contact-hero .hero-content .hero-title {
  font-family: "Montserrat", sans-serif;
  /* Scales from 48px on mobile to 80px on desktop */
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.contact-container .contact-hero .hero-content .hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-container .contact-hero {
    height: 80vh;
  }
  .contact-container .contact-hero .hero-subtitle {
    line-height: 25px;
  }
  .contact-container .contact-hero .hero-subtitle br {
    display: none;
  }
}
.contact-container .map {
  height: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-container .map {
    height: 350px;
  }
}
.contact-container .contact-section {
  padding: 100px 2%;
  background-color: #fff;
}
.contact-container .contact-section .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
.contact-container .contact-section .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.contact-container .contact-section .vertical-divider {
  width: 1px;
  background-color: #ddd;
  align-self: stretch;
}
.contact-container .contact-section .contact-info-col {
  flex: 1;
}
.contact-container .contact-section .contact-info-col .info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-container .contact-section .contact-info-col .info-item .info-icon {
  width: 24px;
  flex-shrink: 0;
  margin-top: 5px;
}
.contact-container .contact-section .contact-info-col .info-item .info-icon svg {
  width: 100%;
  height: auto;
}
.contact-container .contact-section .contact-info-col .info-item .info-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-container .contact-section .contact-info-col .info-item .info-text p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #494949;
  line-height: 1.5;
}
.contact-container .contact-section .contact-form-col {
  flex: 1.2;
}
.contact-container .contact-section .contact-form-col .form-group {
  margin-bottom: 20px;
}
.contact-container .contact-section .contact-form-col .form-group label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-container .contact-section .contact-form-col .form-group input,
.contact-container .contact-section .contact-form-col .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.contact-container .contact-section .contact-form-col .form-group input:focus,
.contact-container .contact-section .contact-form-col .form-group textarea:focus {
  border-color: #000;
}
.contact-container .contact-section .contact-form-col .btn-send {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 8px 30px 8px 10px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-container .contact-section .contact-form-col .btn-send .icon-circle {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-container .contact-section .contact-form-col .btn-send .icon-circle img {
  width: 18px;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
  /* If your PNG is black, it stays black here 
     because the circle is white */
}
.contact-container .contact-section .contact-form-col .btn-send:hover {
  background-color: #fff;
  color: #000;
}
.contact-container .contact-section .contact-form-col .btn-send:hover .icon-circle {
  background-color: #000;
}
.contact-container .contact-section .contact-form-col .btn-send:hover .icon-circle img {
  /* This flips the PNG color. 
       If the icon was black, it now becomes white. */
  filter: invert(1);
}
@media (max-width: 992px) {
  .contact-container .contact-section {
    padding: 80px 5%;
  }
  .contact-container .contact-section .contact-container {
    flex-direction: column;
  }
  .contact-container .contact-section .contact-container .vertical-divider {
    display: none;
  }
  .contact-container .contact-section .contact-container .section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .contact-container .contact-section .contact-container .contact-info-col .info-text p {
    font-size: 16px;
  }
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 80px 2% 40px;
  box-sizing: border-box;
}
.site-footer .footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.site-footer .footer-container .footer-col {
  flex: 1;
  min-width: 200px;
}
.site-footer .footer-container .footer-col h3 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer .footer-container .footer-col ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-container .footer-col ul li {
  margin-bottom: 15px;
}
.site-footer .footer-container .footer-col ul li a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: opacity 0.3s;
}
.site-footer .footer-container .footer-col ul li a:hover {
  opacity: 0.7;
}
.site-footer .brand-info {
  flex: 1.5 !important;
}
.site-footer .brand-info .footer-logo {
  margin-bottom: 5px;
  width: 200px;
}
.site-footer .brand-info p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  color: #ccc;
  margin: 20px 0;
  max-width: 300px;
}
.site-footer .brand-info .social-links {
  display: flex;
  gap: 20px;
  font-size: 20px;
}
.site-footer .brand-info .social-links a {
  color: #fff;
  transition: transform 0.3s;
}
.site-footer .brand-info .social-links a:hover {
  transform: translateY(-3px);
}
.site-footer .contact-info .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.site-footer .contact-info .contact-item svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}
.site-footer .contact-info .contact-item p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}
.site-footer .footer-bottom {
  max-width: 1300px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
}
.site-footer .footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 5%;
  }
  .site-footer .footer-container {
    flex-direction: column;
    gap: 50px;
  }
  .site-footer .brand-info p {
    max-width: 100%;
  }
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.home-container {
  width: 100%;
  z-index: 0;
  width: 100%;
}
.home-container .hero-container {
  height: 100vh;
  gap: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0px 5%;
}
.home-container .hero-container .subheading {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-container .hero-container .subheading img {
  width: 35px;
}
.home-container .hero-container .subheading h2 {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 1rem);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: clamp(0.0625rem, 0.05rem + 0.1vw, 0.1875rem);
  text-align: center;
}
.home-container .hero-container .heading {
  z-index: 10;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  text-align: center;
  font-weight: bold;
  color: white;
}
.home-container .hero-container .description {
  z-index: 10;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 32px;
  font-weight: 400;
  color: #cfcfcf;
  letter-spacing: 1px;
  text-align: center;
  max-width: 650px;
}
.home-container .hero-container .explore-btn {
  margin-top: 30px;
  gap: 17px;
  text-align: center;
  z-index: 10;
  background-color: white;
  width: 235px;
  height: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 0px 7px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 1rem);
  font-weight: 500;
  color: black;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.home-container .hero-container .explore-btn span {
  background-color: black;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.home-container .hero-container .explore-btn span img {
  width: 22px;
  transition: filter 0.3s ease;
}
.home-container .hero-container .explore-btn:hover {
  background-color: black;
  color: white;
}
.home-container .hero-container .explore-btn:hover span {
  background-color: white;
}
.home-container .hero-container .explore-btn:hover span img {
  filter: brightness(0);
}
.home-container .hero-container .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .home-container .hero-container .subheading {
    flex-direction: column;
  }
  .home-container .hero-container .description {
    line-height: 25px;
  }
}
.home-container .stats-section {
  padding: 60px 2%;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
.home-container .stats-section .stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.home-container .stats-section .stats-container .stat-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid #494949;
}
.home-container .stats-section .stats-container .stat-item:last-child {
  border-right: none;
}
.home-container .stats-section .stats-container .stat-item h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.2;
}
.home-container .stats-section .stats-container .stat-item p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #494949;
  margin: 0;
}
@media (max-width: 992px) {
  .home-container .stats-section {
    padding: 80px 5%;
    padding-bottom: 0;
  }
  .home-container .stats-section .stats-container {
    flex-direction: column;
    gap: 25px;
  }
  .home-container .stats-section .stats-container .stat-item {
    border-bottom: 1px solid #494949;
    width: 100%;
    padding-bottom: 25px;
    border-right: none;
  }
  .home-container .stats-section .stats-container .stat-item:last-child {
    border-bottom: none;
  }
  .home-container .stats-section .stats-container .stat-item h2 {
    font-size: 36px;
  }
  .home-container .stats-section .stats-container .stat-item p {
    font-size: 18px;
  }
}
.home-container .heritage-section {
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 2%;
  box-sizing: border-box;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
}
.home-container .heritage-section .line {
  width: 100%;
  background-color: #494949;
  height: 1px;
}
.home-container .heritage-section .heritage-container {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-container .heritage-section .heritage-container .eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #929292;
  font-weight: 500;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.home-container .heritage-section .heritage-container h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  line-height: 70px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 25px;
  max-width: 700px;
}
.home-container .heritage-section .heritage-container .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #494949;
  line-height: 32px;
  margin-bottom: 40px;
  max-width: 750px;
}
.home-container .heritage-section .heritage-container .btn-story {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.home-container .heritage-section .heritage-container .btn-story:hover {
  background-color: #000;
  color: #fff;
}
.home-container .heritage-section .heritage-container .btn-story svg {
  margin-top: 2px;
}
@media (max-width: 992px) {
  .home-container .heritage-section {
    height: auto;
    padding: 0px 5%;
    padding-top: 50px;
    gap: 90px;
  }
  .home-container .heritage-section .heritage-container .eyebrow {
    font-size: 16px;
  }
  .home-container .heritage-section .heritage-container h1 {
    line-height: 50px;
  }
  .home-container .heritage-section .heritage-container .description {
    font-size: 16px;
  }
}
.home-container .expertise-section {
  width: 100%;
  padding: 100px 2%;
  box-sizing: border-box;
  background-color: #fff;
}
.home-container .expertise-section .expertise-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 150px;
  align-items: stretch;
}
.home-container .expertise-section .expertise-left {
  flex: 1;
}
.home-container .expertise-section .expertise-left h1.main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.home-container .expertise-section .expertise-left .section-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #494949;
  line-height: 1.6;
  margin-bottom: 40px;
  /*  max-width: 450px; */
}
.home-container .expertise-section .expertise-left .expertise-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.home-container .expertise-section .expertise-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-container .expertise-section .expertise-right .feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-container .expertise-section .expertise-right .feature-item .icon-circle {
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-container .expertise-section .expertise-right .feature-item .icon-circle img {
  width: 30px;
}
.home-container .expertise-section .expertise-right .feature-item .feature-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.home-container .expertise-section .expertise-right .feature-item .feature-text p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #494949;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .home-container .expertise-section {
    padding: 0px 5%;
    padding-top: 80px;
  }
  .home-container .expertise-section .expertise-container {
    flex-direction: column;
    gap: 50px;
  }
  .home-container .expertise-section .expertise-left h1.main-heading {
    text-align: center;
  }
  .home-container .expertise-section .expertise-left .section-description {
    font-size: 16px;
    text-align: center;
  }
  .home-container .expertise-section .expertise-right {
    gap: 40px;
  }
  .home-container .expertise-section .expertise-right .feature-item {
    align-items: flex-start;
  }
}
.home-container .cta-section {
  width: 100%;
  padding: 80px 2%;
  box-sizing: border-box;
}
.home-container .cta-section .cta-card {
  background-color: #f2f2f2;
  border-radius: 40px;
  padding: 61px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
}
.home-container .cta-section .cta-card .cta-content {
  flex: 1.2;
}
.home-container .cta-section .cta-card .cta-content h1.main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.home-container .cta-section .cta-card .cta-content .section-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #494949;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}
.home-container .cta-section .cta-card .cta-content .btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 8px 8px 8px 25px;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.home-container .cta-section .cta-card .cta-content .btn-partner .icon-arrow {
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.home-container .cta-section .cta-card .cta-content .btn-partner .icon-arrow svg {
  width: 18px;
  height: 18px;
}
.home-container .cta-section .cta-card .cta-content .btn-partner:hover {
  background-color: #000;
  color: #fff;
}
.home-container .cta-section .cta-card .cta-content .btn-partner:hover .icon-arrow {
  background-color: #fff;
  color: #000;
}
.home-container .cta-section .cta-card .cta-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.home-container .cta-section .cta-card .cta-image-wrapper img {
  width: 100%;
  max-width: 551px;
  height: 332px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 200px;
}
@media (max-width: 992px) {
  .home-container .cta-section {
    padding: 0px 2%;
    padding-top: 80px;
  }
  .home-container .cta-section .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }
  .home-container .cta-section .cta-card .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-container .cta-section .cta-card .cta-content .section-description {
    font-size: 16px;
  }
  .home-container .cta-section .cta-card .cta-image-wrapper {
    margin-top: 0px;
    justify-content: center;
    width: 100%;
  }
  .home-container .cta-section .cta-card .cta-image-wrapper img {
    border-radius: 20px;
  }
}
.home-container .beyond-section {
  width: 100%;
  padding: 100px 2%;
  box-sizing: border-box;
  background-color: #fff;
}
.home-container .beyond-section .beyond-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 100px;
}
.home-container .beyond-section .beyond-image {
  flex: 1;
  will-change: transform;
}
.home-container .beyond-section .beyond-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.home-container .beyond-section .beyond-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-container .beyond-section .beyond-content .brand-identity {
  margin-bottom: 25px;
}
.home-container .beyond-section .beyond-content .brand-identity .brand-logo {
  width: 120px;
  display: block;
  margin-bottom: 35px;
}
.home-container .beyond-section .beyond-content .brand-identity .brand-tag {
  background-color: #636363;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: 600;
}
.home-container .beyond-section .beyond-content h1.main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  line-height: 1.1;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.home-container .beyond-section .beyond-content .section-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #494949;
  line-height: 1.6;
  margin-bottom: 30px;
}
.home-container .beyond-section .beyond-content .customer-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  contain: content;
}
.home-container .beyond-section .beyond-content .customer-proof .avatar-group {
  display: flex;
  isolation: isolate;
  flex-direction: row;
}
.home-container .beyond-section .beyond-content .customer-proof .avatar-group img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  transform: translateZ(0);
  will-change: transform;
}
.home-container .beyond-section .beyond-content .customer-proof .avatar-group img:first-child {
  margin: 0;
}
.home-container .beyond-section .beyond-content .customer-proof .customer-count {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.home-container .beyond-section .beyond-content .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  gap: 20px;
  padding: 6px 6px 6px 25px;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.home-container .beyond-section .beyond-content .btn-explore .icon-circle {
  width: 35px;
  height: 35px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.home-container .beyond-section .beyond-content .btn-explore .icon-circle svg {
  width: 16px;
}
.home-container .beyond-section .beyond-content .btn-explore:hover {
  background-color: #000;
  color: #fff;
}
.home-container .beyond-section .beyond-content .btn-explore:hover .icon-circle {
  background-color: #fff;
  color: #000;
}
@media (max-width: 992px) {
  .home-container .beyond-section {
    padding: 80px 5%;
  }
  .home-container .beyond-section .beyond-container {
    flex-direction: column;
    gap: 30px;
  }
  .home-container .beyond-section .beyond-container .beyond-content .section-description {
    font-size: 16px;
  }
  .home-container .beyond-section .beyond-container .beyond-image {
    height: 400px;
  }
}

.about-container .about-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: 0 5%;
}
.about-container .about-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.about-container .about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.about-container .about-hero .hero-content .hero-title {
  font-family: "Montserrat", sans-serif;
  /* Scales from 48px on mobile to 80px on desktop */
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.about-container .about-hero .hero-content .hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-container .about-hero {
    height: 80vh;
  }
  .about-container .about-hero .hero-subtitle {
    line-height: 25px;
  }
  .about-container .about-hero .hero-subtitle br {
    display: none;
  }
}
.about-container .heritage-section {
  width: 100%;
  padding: 100px 2%;
  box-sizing: border-box;
  background-color: #fff;
}
.about-container .heritage-section .heritage-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.about-container .heritage-section .heritage-left {
  flex: 1.2;
}
.about-container .heritage-section .heritage-left .sub-heading {
  display: block;
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.about-container .heritage-section .heritage-left .main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  font-weight: 500;
  line-height: 70px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.about-container .heritage-section .heritage-left .stats-grid {
  display: flex;
  gap: 50px;
}
.about-container .heritage-section .heritage-left .stats-grid .stat-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}
.about-container .heritage-section .heritage-left .stats-grid .stat-item p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #929292;
  font-weight: 400;
}
.about-container .heritage-section .heritage-right {
  flex: 0.8;
  padding-top: 50px;
}
.about-container .heritage-section .heritage-right p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  color: #494949;
  margin-bottom: 30px;
}
.about-container .heritage-section .heritage-right p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .about-container .heritage-section {
    padding: 80px 5%;
    padding-bottom: 0px;
  }
  .about-container .heritage-section .heritage-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-container .heritage-section .heritage-container .stats-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
  .about-container .heritage-section .heritage-container .stats-grid .stat-item h3 {
    font-size: 25px;
  }
  .about-container .heritage-section .heritage-container .heritage-left .sub-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .about-container .heritage-section .heritage-container .heritage-left .main-heading {
    line-height: 50px;
    margin-bottom: 30px;
  }
  .about-container .heritage-section .heritage-container .heritage-right {
    padding-top: 0;
  }
  .about-container .heritage-section .heritage-container .heritage-right p {
    font-size: 16px;
  }
}
.about-container .values-section {
  padding: 100px 2%;
  padding-top: 50px;
  padding-bottom: 150px;
  background-color: #fff;
}
.about-container .values-section .values-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.about-container .values-section .value-card {
  padding: 25px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}
.about-container .values-section .value-card:hover {
  transform: translateY(-5px);
}
.about-container .values-section .value-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0 10px;
}
.about-container .values-section .value-card p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
.about-container .values-section .value-card .value-icon {
  width: 50px;
  height: 50px;
  background: #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-container .values-section .value-card .value-icon img {
  width: 24px;
}
.about-container .values-section .main-feature {
  grid-row: span 2;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.about-container .values-section .main-feature .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.about-container .values-section .main-feature .card-content {
  position: relative;
  z-index: 2;
}
.about-container .values-section .main-feature .card-content h1.main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-container .values-section .white-card {
  background-color: #f9f9f9;
  color: #000;
  border: 1px solid #eee;
}
.about-container .values-section .black-card {
  background-color: #000;
  color: #fff;
}
.about-container .values-section .black-card .value-icon {
  background: white;
}
@media (max-width: 992px) {
  .about-container .values-section {
    padding: 80px 5%;
  }
  .about-container .values-section .values-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-container .values-section .values-grid .value-card p {
    font-size: 16px;
  }
  .about-container .values-section .values-grid .value-card:nth-child(3) {
    grid-row-start: 5;
  }
  .about-container .values-section .values-grid .main-feature {
    grid-row: span 1;
    height: 350px;
  }
  .about-container .values-section .values-grid .main-feature .card-content h1.main-heading {
    line-height: 50px;
    text-align: center;
  }
  .about-container .values-section .values-grid .main-feature .card-content p {
    font-size: 16px;
    text-align: center;
  }
}
.about-container .culture-section {
  background-color: #000;
  color: #fff;
  padding: 50px 2%;
  box-sizing: border-box;
}
.about-container .culture-section .culture-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.about-container .culture-section .culture-content {
  flex: 1;
}
.about-container .culture-section .culture-content h1.main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.about-container .culture-section .culture-content .section-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #d1d1d1;
  margin-bottom: 40px;
  max-width: 500px;
}
.about-container .culture-section .culture-content .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.about-container .culture-section .culture-content .feature-list .feature-item .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
}
.about-container .culture-section .culture-content .feature-list .feature-item .icon svg {
  width: 100%;
  height: 100%;
}
.about-container .culture-section .culture-content .feature-list .feature-item .text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.about-container .culture-section .culture-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-container .culture-section .culture-image-wrapper .circle-mask {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.about-container .culture-section .culture-image-wrapper .circle-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .about-container .culture-section {
    padding: 50px 5%;
  }
  .about-container .culture-section .culture-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .about-container .culture-section .culture-container .culture-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-container .culture-section .culture-container .culture-content h1 {
    line-height: 50px;
  }
  .about-container .culture-section .culture-container .culture-content p {
    font-size: 16px;
  }
  .about-container .culture-section .culture-container .feature-list .feature-item {
    justify-content: center;
  }
}
.about-container .experience-section {
  padding: 100px 2%;
  box-sizing: border-box;
}
.about-container .experience-section .experience-banner {
  position: relative;
  width: 100%;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-container .experience-section .experience-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: 1;
}
.about-container .experience-section .experience-banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}
.about-container .experience-section .experience-banner .banner-content h1.main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.125rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.about-container .experience-section .experience-banner .banner-content .section-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-container .experience-section .experience-banner .banner-content .btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 8px 8px 30px;
  background-color: #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.about-container .experience-section .experience-banner .banner-content .btn-visit .icon-arrow {
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-container .experience-section .experience-banner .banner-content .btn-visit .icon-arrow svg {
  width: 18px;
}
.about-container .experience-section .experience-banner .banner-content .btn-visit:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.about-container .experience-section .experience-banner .banner-content .btn-visit:hover .icon-arrow {
  background-color: #fff;
  color: #000;
}
@media (max-width: 992px) {
  .about-container .experience-section {
    padding: 80px 2%;
  }
  .about-container .experience-section .experience-banner {
    min-height: 400px;
  }
  .about-container .experience-section .experience-banner .banner-content .section-description {
    font-size: 16px;
  }
  .about-container .experience-section .experience-banner .banner-content .section-description br {
    display: none;
  }
}

.gsap-blur {
  will-change: filter, transform, opacity;
}

/*# sourceMappingURL=style.css.map */
