/* Modern CSS Reset with Custom Properties */
:root {
  /* Color Palette */
  --primary-color: #ff6600;
  --secondary-color: #2c3e50;
  --accent-color: #ff6600;
  --dark-accent: #f15a24;
  --text-color: #212529;
  --light-text: #fff;
  --dark-bg: #111111;
  --light-bg: #ffffff;
  --medium-gray: #e0e0e0;
  --light-gray: #f5f5f5;

  /* Font Face Declarations */
  @font-face {
    font-family: 'Tropiline';
    src: url('font/Tropiline-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Tropiline';
    src: url('font/Tropiline-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Tropiline';
    src: url('font/Tropiline-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Tropiline';
    src: url('font/Tropiline-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Tropiline';
    src: url('font/Tropiline-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Tropiline';
    src: url('font/Tropiline-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Tropiline';
    src: url('font/Tropiline-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }

  :root {
    /* Typography */
    --base-font: 'Tropiline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
      Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --heading-font: 'Tropiline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
      Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  /* Spacing */
  --section-padding: 50px 0;
  --container-width: 1520px;
  --gutter: 20px;

  /* Effects */
  /* --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1); */
  --shadow-sm: 0 4px 30px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 8px;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--base-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: var(--base-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: transparent;
  transition: var(--transition);
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

button {
  cursor: pointer;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-bottom: 0.75em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: var(--section-padding) !important;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Header Styles */
header {
  width: 90%;
  padding: 1.5rem 0;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

header .logo img {
  height: 110px;
  width: auto;
}

/* Desktop Navigation */
nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  padding: 0.5rem;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 10px;
}

.hamburger span:nth-child(4) {
  top: 20px;
}

.hamburger.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* Overlay when menu is open */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section with Scroll Effect */
.hero {
  margin-top: 50px;
}

.hero h1 {
  color: var(--accent-color);
  font-size: 58px;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  text-transform: uppercase;
  line-height: 1;
}

.hero-section {
  position: relative;
  height: 64vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0px, 0px, 0px) scale3d(0.9, 1, 1);
  transition: var(--transition);
  will-change: transform;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 50px;
}

/* Awards Slider Section */
.awards-section {
  background-color: var(--dark-bg);
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
  width: 1520px;
}

.slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.slide-item {
  position: relative;
  height: 268px;
  overflow: hidden;
  margin: 0 var(--gutter);
  cursor: pointer;
  transition: var(--transition);
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.slide-item:hover img {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightboxes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(177, 135, 63, 0.95);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightboxes.active {
  opacity: 1;
  visibility: visible;
}

.lightboxes-content {
  position: relative;
  max-width: 750px;
  max-height: 90vh;
}

.lightboxes-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.lightboxes-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 100%);
  color: var(--light-text);
  text-align: center;
}

.lightboxes-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.lightboxes-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--light-text);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

.lightboxes-close:hover {
  color: var(--dark-accent);
  transform: rotate(90deg);
}

.lightboxes-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transform: translateY(-50%);
}

.lightboxes-prev,
.lightboxes-next {
  color: var(--light-text);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
}

.lightboxes-prev:hover,
.lightboxes-next:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* About Section */
.about-section {
  /* margin: 60px auto; */
  padding: 0 var(--gutter);
  text-align: center;
}

.title {
  color: var(--accent-color);
  margin-bottom: 30px;
  text-align: center;
  font-size: 54px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2em;
}

.description {
  margin-bottom: 40px;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
  color: #444;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gutter);
  justify-content: center;
}

.card {
  background: var(--light-text);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}

.card img {
  width: 40%;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.card .play {
  color: #888;
  font-size: 0.9em;
}

.card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
  color: #555;
}

/* Reels Section */
.reel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading Styles */
.heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.heading.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Video Section Styles */
.lightbox-reels {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.lightbox-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
}

.lightbox-trigger-inner {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.lightbox-trigger:hover .lightbox-trigger-inner {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-icon {
  font-size: 40px;
  color: white;
  margin-left: 5px;
}

/* Background Image Styles */
.lightbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .mask-layer-1,
.mask-layer-2 {
    display: none;
} */

.bg-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  /* Ensure image is displayed as block */
  position: absolute;
  /* Add absolute positioning */
  top: 0;
  left: 0;
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  width: 90%;
  max-width: 1200px;
  position: relative;
}

.lightbox-iframe {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  position: relative;
}

.lightbox-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Animation Classes */
.fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Key Works Section */
.key-works {
  padding: var(--section-padding);
}

.carousel-container {
  width: 1520px;
  margin: 0 auto;
  position: relative;
}

.video-item {
  margin: 0 10px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.video-wrapper {
  position: relative;
  height: 580px;
}

.short-video {
  position: relative;
  height: 100%;
  width: 100%;
}

.short-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 25px solid white;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
  transition: var(--transition);
}

.play-icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 255, 255, 0.2);
  animation: pulseRing 1.5s infinite;
}

.carousel-container .slick-prev:before {
  color: #000000;
}

.carousel-container .slick-next:before {
  color: #000000;
}

.carousel-container .slick-prev:hover:before {
  color: #555555;
}

.carousel-container .slick-next:hover:before {
  color: #555555;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem;
  color: var(--light-text);
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 1;
}

.short-video:hover .video-info {
  opacity: 1;
}

.video-info h3 {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.video-info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
  margin: 0;
}

/* Lightbox for Videos */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  width: 90%;
  max-width: 720px;
  position: relative;
}

.lightbox-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.lightbox-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: 0px;
  right: -10%;
  color: var(--light-text);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--dark-accent);
  transform: rotate(90deg);
}

.lightbox-info {
  color: var(--light-text);
  padding: 1.25rem 0;
}

.lightbox-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
  color: var(--dark-accent);
}

.accessibility-section {
  margin: auto;
  text-align: center;
}

.ad-video {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 0;
  overflow: hidden;
}

.ad-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ad-video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  cursor: pointer;
  color: #fff;
  font-size: 24px;
}

.accessibility-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  text-align: left;
}

.poster-video {
  position: relative;
  flex: 1 1 510px;
  max-width: 510px;
}

.poster-video img {
  width: 100%;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: url("play-button.png") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* accessibility section */
.accessibility-section {
  background-color: var(--light-bg);
}

.accessibility-text {
  flex: 1 1 400px;
}

.accessibility-text .logos {
  display: flex;
  justify-content: center;
  gap: 110px;
  margin-bottom: 20px;
}

.accessibility-text .logos img {
  height: 110px;
}

.accessibility-text p {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 1.2px;
}

.partners {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.partners h3 {
  font-size: 32px;
  color: #ff6600;
  font-weight: bold;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 110px;
}

.partner-logos img {
  height: 110px;
}

/* Services Section */
.services-section {
  background-color: var(--dark-bg);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  transition: all 0.5s ease 0s;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 340px;
  height: 270px;
}

.item:hover {
  background: #333333;
  color: #ffff;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
}

.item:hover h6,
.item:hover p {
  color: #fff;
}

.item img {
  width: 80px;
}

.item .icon {
  margin-bottom: 25px;
  color: #f91942;
  width: 120px;
  height: 120px;
  line-height: 96px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.2);
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
}

.item p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
}

.item h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
  /* color: #2f2f2f; */
}

/* Slick Slider Customization */
.slick-slider {
  position: relative;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
}

.slick-slide {
  position: relative;
}

.slick-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  opacity: 0.5;
  transition: var(--transition);
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button {
  opacity: 1;
  background: var(--primary-color);
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 1;
  background: none;
  border: none;
  font-size: 0;
  cursor: pointer;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-prev:before,
.slick-next:before {
  content: "→";
  font-size: 40px;
  color: var(--light-text);
  opacity: 0.8;
  transition: var(--transition);
}

.slick-prev:before {
  content: "←";
}

.slick-prev:hover:before,
.slick-next:hover:before {
  opacity: 1;
  color: var(--light-text);
}

/* Gallery  */
.press-highlights {
  padding: var(--section-padding);
  background-color: var(--dark-bg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}

/* Optional slight zoom on image hover */
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
  /* Slight darkening effect */
}

/* Overlay effect using a pseudo-element */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Dark semi-transparent overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Show overlay on hover */
.gallery-item:hover::before {
  opacity: 1;
}

/* Zoom Icon Styling */
.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  z-index: 2;
  font-size: 18px;
}

/* Show zoom icon on hover */
.gallery-item:hover .zoom-icon {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.load-more {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.load-more:hover {
  background: #d15400;
}

.lightbox-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-gallery-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-gallery-content img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  margin: 0 auto;
}

.close-lightbox-gallery {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Class to disable scrolling */
.no-scroll {
  overflow: hidden;
}

/* OUR CLIENTS */
.clients-section {
  background-color: var(--light-bg);
}

.rc-carousel {
  --box-gap: 1.5rem;
  --tile-size: 8rem;
  width: 100%;
  margin: 1.5rem auto;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.rc-carousel::before,
.rc-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5rem;
  height: 100%;
  background-image: linear-gradient(to var(--direction), transparent, #fff);
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.rc-carousel::before {
  left: 0;
  --direction: left;
}

.rc-carousel::after {
  right: 0;
  --direction: right;
}

.rc-carousel-strip {
  width: fit-content;
  display: flex;
  will-change: transform;
  backface-visibility: hidden;
}

.rc-carousel-strip.left-to-right {
  animation: slideLeftToRight 40s linear infinite;
}

.rc-carousel-strip.right-to-left {
  animation: slideRightToLeft 40s linear infinite;
}

.rc-carousel-strip.paused {
  animation-play-state: paused;
}

.rc-carousel-box {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--box-gap);
}

.rc-carousel-item {
  flex-shrink: 0;
  width: var(--tile-size);
  height: var(--tile-size);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-carousel-item-image {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.4s ease;
  cursor: pointer;
}

.rc-carousel-item-image:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.item:hover {
  background: #333333;
  color: #ffff;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

/* footer */

.footer {
  padding: 40px 20px;
  background: #f2f0eb;
  color: #000;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-left p {
  margin: 5px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
}

.footer-left a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
}

.footer-right {
  flex: 1;
  max-width: 600px;
}

.footer-right form input,
.footer-right form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.footer-right form .half-input {
  display: flex;
  gap: 10px;
}

.footer-right form .half-input input {
  flex: 1;
}

.footer-right form button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.footer-item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.footer-bottom {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
}

.sitemap {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1.2px;
}

.footer-bottom a {
  color: #ff6600;
  text-decoration: none;
}

.footer-right form input,
.footer-right form textarea {
  font-family: var(--base-font);
}

/* Form Response Styles */
.form-response {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

.form-response.success {
  background-color: rgba(0, 200, 83, 0.1);
  color: #00a152;
  border: 1px solid #00a152;
}

.form-response.error {
  background-color: rgba(255, 0, 0, 0.1);
  color: #d32f2f;
  border: 1px solid #d32f2f;
}

/* Form Input Styles */
.footer-right form input,
.footer-right form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--base-font);
  font-size: 18px;
  transition: var(--transition);
}

.footer-right form input:focus,
.footer-right form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.footer-right form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer-right form button {
  background-color: var(--accent-color);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  width: 100%;
}

.footer-right form button:hover {
  background-color: #e05a00;
}

.footer-right form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-right form .half-input {
    flex-direction: column;
  }
}

/* Left to right animation */
@keyframes slideLeftToRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50%));
  }
}

/* Right to left animation */
@keyframes slideRightToLeft {
  0% {
    transform: translateX(calc(-50%));
  }

  100% {
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  :root {
    --container-width: 1000px;
  }

  .slide-item {
    height: 500px;
  }

  .video-wrapper {
    height: 500px;
  }

  .rc-carousel-item {
    width: 7rem;
    height: 7rem;
  }
}

@media (max-width: 992px) {
  :root {
    --container-width: 800px;
    --gutter: 15px;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding: 0 15px;
  }

  /* Header & Navigation */
  header {
    width: 100%;
    padding: 1rem 15px;
  }

  header .logo img {
    height: 60px;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: all 0.4s ease;
    padding-top: 80px;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 20px;
  }

  nav a {
    font-size: 16px;
  }

  .hamburger {
    display: block;
    z-index: 1000;
  }

  /* Hero Section */
  .hero-section {
    height: 50vh;
  }

  .video-container video {
    margin-top: 30px;
  }

  /* Awards Section */
  .slick-dotted.slick-slider {
    width: 80% !important;
    margin-bottom: 20px;
  }

  .carousel-container .slick-dotted.slick-slider {
    width: 90% !important;
    margin-bottom: 20px;
    margin: 0 auto;
  }

  .slide-item img {
    width: 94%;
    height: 100%;
    margin: 0 auto;
  }

  .slick-dots li button {
    font-size: 0;
    width: 1px;
    height: 1px;
  }

  .slick-dots li {
    margin: 0;
  }

  .slide-item {
    height: 200px;
    margin: 0 5px;
  }

  /* About Section */
  .title {
    font-size: 28px;
  }

  .description {
    font-size: 16px;
    padding: 0 15px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .services-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }

  .item {
    width: 220px;
    height: 220px;
    padding: 0px;
    margin: 5px;
  }

  .item h4 {
    font-size: 16px;
    font-weight: 300;
  }

  .poster-video {
    max-width: 100%;
  }

  /* Reel Section */
  .lightbox-reels {
    height: 300px;
  }

  .bg-image {
    height: 300px;
  }

  /* Key Works Section */
  .video-wrapper {
    height: 300px;
  }

  .video-info h3 {
    font-size: 1rem;
  }

  .video-info p {
    font-size: 12px;
  }

  /* Services Section */
  .services-list {
    grid-template-columns: 1fr;
  }

  .item {
    width: 100%;
    height: auto;
    padding: 20px;
    width: 280px;
  }

  /* Accessibility Section */
  .accessibility-content {
    flex-direction: column;
  }

  .accessibility-text .logos,
  .partner-logos {
    flex-direction: row;
    gap: 20px;
  }

  .accessibility-text .logos img,
  .partner-logos img {
    height: 110px;
  }

  .accessibility-text p {
    font-size: 16px;
  }

  .partners {
    flex-direction: column;
    text-align: center;
  }

  /* Press Highlights */
  .gallery {
    grid-template-columns: 1fr;
  }

  /* Clients Section */
  .rc-carousel-item {
    width: 5rem;
    height: 5rem;
  }

  .rc-carousel-item-image {
    max-height: 60px;
  }

  .partners h3 {
    font-size: 20px;
  }

  /* Footer */
  .footer-container {
    flex-direction: row;
  }

  .footer-left p {
    font-size: 16px;
    font-weight: 300;
  }

  .footer-left a {
    font-size: 16px;
    font-weight: 300;
  }

  .footer-right {
    margin-top: 2rem;
    max-width: 420px;
  }

  .footer-right form .half-input {
    flex-direction: column;
  }

  .footer-item {
    text-align: center;
  }

  .footer-bottom {

    font-size: 16px;
    font-weight: 300;
  }

  .sitemap {
    font-size: 16px;
    font-weight: 300;
  }

  #screenReaderBtn {
    right: 40px !important;
  }

  /* Progress Bar & Cursor */
  .progress-wrap {
    right: 40px !important;
    bottom: 50px;
    height: 46px;
    width: 46px;
  }

  .cursor,
  .cursor2 {
    display: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --container-width: 660px;
    --section-padding: 4rem 0;
  }

  .slide-item {
    height: 400px;
  }

  .video-wrapper {
    height: 400px;
  }

  .slick-prev {
    left: -30px;
  }

  .slick-next {
    right: -30px;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 30px;
  }

  .lightboxes-img {
    width: 90vw;
  }

  .lightbox-close {
    top: -60px;
    font-size: 2rem;
    right: 20px;
  }

  .rc-carousel {
    --tile-size: 5.5rem;
    --box-gap: 1rem;
  }

  .rc-carousel-item-image {
    max-height: 90px;
  }
}

@media (max-width: 576px) {
  :root {
    --container-width: 100%;
    --section-padding: 3rem 0;
    --gutter: 10px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .slide-item {
    height: 150px;
  }

  .video-wrapper {
    height: 368px !important;
  }

  .lightbox-reels {
    height: 300px !important;
  }

  .bg-image {
    height: 250px;
  }

  .slide-item {
    height: 350px;
  }

  .video-wrapper {
    height: 350px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .item {
    height: auto;
    padding: 1.25rem;
    width: 270px;
  }

  .play-icon {
    width: 50px;
    height: 50px;
  }

  .play-icon::before {
    border-top: 12px solid transparent;
    border-left: 20px solid white;
    border-bottom: 12px solid transparent;
  }

  .rc-carousel {
    --tile-size: 4.5rem;
    --box-gap: 0.8rem;
    margin: 1rem auto;
  }

  .rc-carousel-item-image {
    max-height: 70px;
  }

  .rc-carousel::before,
  .rc-carousel::after {
    width: 2rem;
  }
}

/* Extra Small Mobile Devices (up to 400px) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .description {
    font-size: 14px;
  }

  .slide-item {
    height: 120px;
  }

  .video-wrapper {
    height: 200px;
  }

  .lightbox-reels {
    height: 200px;
  }

  .bg-image {
    height: 200px;
  }

  .rc-carousel-item {
    width: 4rem;
    height: 4rem;
  }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-width: 992px) {
  .hero-section {
    height: 100vh;
  }

  .video-container video {
    height: 100vh;
    object-fit: cover;
  }

  .scroll-indicator {
    bottom: 1rem;
  }

  .lightbox-reels {
    height: 80vh;
  }

  .bg-image {
    height: 80vh;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 18px;
  }

  .video-wrapper {
    height: 300px;
  }

  .lightbox-info h3 {
    font-size: 1.3rem;
  }

  .lightbox-info p {
    font-size: 0.9rem;
  }

  .nav ul {
    gap: 1rem;
  }

  .rc-carousel {
    --tile-size: 3.8rem;
    --box-gap: 0rem;
  }

  .rc-carousel-item-image {
    max-height: 60px;
  }

  .rc-carousel-item {
    width: 5rem;
    height: 4rem;
  }
}