/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/* Global Styles */
body {
  font-family: "Inter", sans-serif;
  background-color: #f0f0f0;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header .header-left {
  display: flex;
  align-items: center;
  position: relative;
}
.header .logo, .header .logo-dropdown {
  padding-bottom: 5px;
}
.header .logo a, .header .logo-dropdown a {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.header .logo .logo-mi, .header .logo-dropdown .logo-mi {
  font-style: italic;
}
.header .logo-img {
  height: 28px;
  width: auto;
}

/* Hamburger Dropdown (Desktop) */
.hamburger-dropdown {
  background: none;
  border: none;
  padding: 2px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 100%;
  margin-top: 0.2px;
  gap: 5px;
}
.hamburger-dropdown .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Logo Dropdown Menu */
.logo-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
}
.logo-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.logo-dropdown ul {
  margin: 0;
  padding: 0;
}
.logo-dropdown .dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.6rem;
  transition: background-color 0.2s ease;
}
.logo-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #1a1a1a;
}

/* Desktop Navigation */
.desktop-nav {
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
}
.desktop-nav .nav-link-custom {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-bottom: 5px;
  text-decoration: none;
  color: #1a1a1a;
}
.desktop-nav .nav-link-custom::after {
  content: "";
  position: absolute;
  left: calc(49.1228070175% - 10px);
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #1a1a1a;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}
.desktop-nav .nav-link-custom:hover::after, .desktop-nav .nav-link-custom.active-link::after {
  transform: scaleX(1);
}

/* Email Link & Copied Message */
.email-link {
  font-weight: 600;
  font-size: 16px;
  padding: 0.55rem 1.05rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: rgba(14, 14, 14, 0.03) 0px 1px 2.5px 0px, rgba(14, 14, 14, 0.05) 0px 4px 9px 1px;
  height: 100%;
  opacity: 1;
  color: rgba(0, 0, 0, 0.5490196078);
}
.email-link:hover {
  box-shadow: rgba(255, 255, 255, 0.03) 0px 1px 2.5px 0px, rgba(255, 255, 255, 0.05) 0px 4px 9px 1px;
}

.email-copied-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1a1a;
  font-weight: 500;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
  font-size: 0.9rem;
}
.email-copied-message.show {
  opacity: 1;
  visibility: visible;
}

/* Hamburger Menu (Mobile) */
.hamburger-menu {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 19px;
  position: relative;
}
.hamburger-menu .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  border-radius: 2px;
}
.hamburger-menu.menu-open {
  height: 28px;
}
.hamburger-menu.menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-menu.menu-open .hamburger-line:nth-child(2) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.7s ease-out;
}
.mobile-menu-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-overlay .close-icon {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
  color: #1a1a1a;
  transition: transform 0.3s ease;
}
.mobile-menu-overlay .menu-content {
  text-align: center;
}
.mobile-menu-overlay .mobile-menu-item {
  font-size: 2.5rem !important;
}
.mobile-menu-overlay .menu-connect {
  margin-top: 2rem;
}
.mobile-menu-overlay .menu-connect span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.mobile-menu-overlay .email-link-mobile {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #1a1a1a;
  border-radius: 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.mobile-menu-overlay .email-link-mobile:hover {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title-container {
  overflow: hidden; /* Hide overflowing text for animation */
}

.hero-title {
  font-size: 115px;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation class for titles */
.animate-text.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/*--------------------------------------------------------------
# Companies Section
--------------------------------------------------------------*/
.companies-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  overflow: hidden;
}
.companies-section .companies-line {
  background-color: rgba(143, 143, 143, 0.4431372549);
  height: 1px;
  width: 60%;
  margin: auto;
}
.companies-section .companies-line.t {
  margin-bottom: 60px;
}
.companies-section .companies-line.b {
  margin-top: 60px;
}

.companies-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  width: auto !important;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.swiper-slide:hover {
  opacity: 1;
}

.swiper-slide:hover img {
  filter: grayscale(0%);
}

.swiper-slide img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  display: block;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .swiper-slide {
    min-width: 70px;
  }
  .swiper-slide img {
    height: 35px;
  }
}
@media (max-width: 480px) {
  .swiper-slide {
    min-width: 50px;
  }
  .swiper-slide img {
    height: 30px;
  }
}
/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.video-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 3px solid #000000;
}
.video-container:hover {
  transform: translateY(-5px);
}

.video-element {
  width: 100%;
  height: 820px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.video-fallback {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Dim overlay over video to improve contrast when paused */
.video-dim-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 1; /* visible by default when not playing */
  transition: opacity 200ms ease;
  pointer-events: none;
  z-index: 1; /* below controls and play button */
}

/* Stack play button and controls above the dim overlay */
.video-play-btn {
  z-index: 2;
}

.video-controls {
  z-index: 2;
}

/* Hide overlay while video is playing */
.video-container.playing .video-dim-overlay {
  opacity: 0;
}

/* Play overlay button centered */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, background 200ms ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.video-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-progress {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  outline: none;
}

.video-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.video-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Hide controls when not needed, show on hover */
.video-container .video-controls {
  opacity: 0;
  transition: opacity 200ms ease;
}

.video-container:hover .video-controls, .video-container.playing .video-controls, .video-container:not(.playing) .video-controls {
  opacity: 1;
}

/* Hide play button when playing */
.video-container.playing .video-play-btn {
  display: none;
}

/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/*--------------------------------------------------------------
# Work Items Section
--------------------------------------------------------------*/
.work-items-section {
  padding-top: 0;
  padding-bottom: 3rem;
}

.work-item {
  display: block;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(0.88);
  text-decoration: none;
  color: inherit;
  height: 600px;
}
.work-item.last-one {
  border: 5px solid #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.work-item.last-one h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 85px;
}
.work-item.last-one .work-item-overlay {
  background: #E7E7E7;
  border-top: 2px solid #000000;
}
.work-item.last-one h2, .work-item.last-one p {
  color: #000000;
}
.work-item.last-one h2 {
  font-weight: 500;
}
.work-item.active {
  transform: scale(1.05);
}
.work-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(100%);
  z-index: 1;
}
.work-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}
.work-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.work-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3490196078);
  color: #ffffff;
  z-index: 2;
  display: flex;
  align-items: center;
}

.overlay-content {
  display: flex;
  align-items: baseline;
  gap: 20px;
  width: 100%;
}

.work-item-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  flex-shrink: 0;
}

.work-item-status {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin: 0;
  font-style: italic;
  white-space: nowrap;
}

/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/*--------------------------------------------------------------
# footer-title Section
--------------------------------------------------------------*/
.footer-title-container {
  overflow: hidden; /* Hide overflowing text for animation */
}

.footer-title {
  font-size: 90px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation class for titles */
.animate-text.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #0e0e0e;
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  border-radius: 3px 3px 0 0;
}
.footer .footer-content {
  min-height: 200px;
  align-items: flex-start;
  display: flex;
  gap: 40px;
}
.footer .footer-left {
  flex: 1;
}
.footer .footer-right {
  flex: 1;
  max-width: 400px;
}
.footer .footer-logo-img {
  height: 38px;
  width: auto;
}
.footer .footer-location {
  margin-top: 30px;
}
.footer .footer-location img {
  width: 35px;
}
.footer .location-text {
  font-size: 0.9rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer .cursor-icon {
  color: #999999;
  margin-left: 8px;
}
.footer .footer-cta .cta-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer .footer-contact {
  font-size: 0.9rem;
}
.footer .contact-item {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .contact-item .contact-icon {
  color: #999999;
  flex-shrink: 0;
  margin-right: 8px;
}
.footer .contact-item a {
  color: #999999;
  text-decoration: none;
}
.footer .contact-item a:hover {
  color: #ffffff;
}
.footer .phone-numbers div {
  line-height: 1.3;
  color: #999999;
}
.footer .phone-numbers a {
  color: #999999;
  text-decoration: none;
}
.footer .phone-numbers a:hover {
  color: #ffffff;
}
.footer .footer-social {
  margin-top: 20px;
  gap: 0;
  display: flex;
}
.footer .footer-social .social-link {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-social .social-link:hover {
  color: #ffffff;
}
.footer .footer-links-text {
  display: flex;
  align-items: center;
}
.footer .footer-link {
  color: #999999;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.footer .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer .separator {
  color: #666666;
  margin: 0 8px;
}

.footer-stripes {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 8px 0;
}
.footer-stripes img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-stripes .stripe {
  width: 100%;
  background-color: #1a1a1a;
  margin: 0;
}
.footer-stripes .stripe:nth-child(odd) {
  background-color: #1a1a1a;
}
.footer-stripes .stripe:nth-child(even) {
  background-color: #f0f0f0;
}

/* Font Variables */
/* Color Palette */
/* Footer Colors */
/* Transitions & Animations */
/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (min-width: 1300px) {
  .container {
    max-width: 1230px;
  }
  .hamburger-menu {
    display: none;
  }
}
@media (max-width: 1300px) {
  .desktop-nav {
    display: none !important;
  }
  .hamburger-menu {
    display: flex;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .footer-title {
    font-size: 3rem;
  }
  .video-element,
  .video-fallback {
    height: 350px;
  }
  .work-item {
    height: 280px;
  }
  .work-item img {
    height: 350px;
  }
  .work-item.last-one h3 {
    font-size: 2.5rem;
    margin-bottom: 5.25rem;
  }
  .work-item .work-item-overlay {
    padding: 30px;
    min-height: 120px;
  }
  .work-item .overlay-content {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .work-item .work-item-title {
    font-size: 1.5rem;
  }
  .work-item .work-item-status {
    font-size: 0.9rem;
  }
  .footer-content {
    gap: 40px;
  }
  .footer-right {
    max-width: 100%;
  }
  .footer-right .text-end {
    text-align: start !important;
  }
  .contact-item {
    justify-content: flex-start !important;
  }
  .footer-social {
    justify-content: flex-start !important;
  }
  .mobile-menu-overlay .mobile-menu-item {
    font-size: 2rem !important;
  }
}
@media (max-width: 767px) {
  .header .logo a {
    font-size: 1.1rem;
  }
  .header .logo-img {
    height: 24px;
    width: auto;
  }
  .companies-section .companies-line {
    display: none;
  }
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .hero-title {
    font-size: 2.6rem;
    margin-bottom: 0.25rem;
  }
  .video-play-btn {
    width: 50px;
    height: 50px;
  }
  .footer-title {
    font-size: 2rem;
  }
  .companies-section {
    padding: 40px 0;
  }
  .video-section {
    padding: 60px 0;
  }
  .video-element,
  .video-fallback {
    height: 290px;
  }
  .work-item img {
    height: 280px;
  }
  .work-item.last-one h3 {
    font-size: 2rem;
  }
  .work-item .work-item-overlay {
    padding: 0 20px;
    min-height: 95px;
  }
  .work-item .work-item-title {
    font-size: 1rem;
  }
  .work-item .work-item-status {
    font-size: 0.85rem;
  }
  .footer {
    padding: 40px 0;
  }
  .footer .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer .footer-left, .footer .footer-right {
    width: 100%;
  }
  .footer .footer-cta .cta-text {
    font-size: 1rem;
  }
  .footer .location-text {
    font-size: 0.8rem;
  }
  .footer .footer-contact {
    font-size: 0.85rem;
  }
  .footer .footer-social {
    flex-wrap: wrap;
    gap: 15px;
  }
  .logo-dropdown {
    min-width: 200px;
  }
  .mobile-menu-overlay .mobile-menu-item {
    font-size: 1.8rem !important;
  }
}/*# sourceMappingURL=style.css.map */