/* ========================================
   CSS VARIABLES & GLOBAL STYLES
   ======================================== */
:root {
 
  --bs-primary: #ffffff;
  --bs-dropdown-link-active-bg: #ffffff;
  --bs-dropdown-link-active-color: #000000;
  --bs-link-color: #ffffff;
  --bs-link-hover-color: #cccccc;
  --theme-color: #00d2ff;
  --theme-color-dark: #00a8cc;   /* optional darker shade */
  --theme-color-light: #66e6ff;  /* optional lighter shade */
  /* Theme Colors */

}

/* Global Reset for Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Global Media Reset */
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
  /* Ensure images have dimension for CLS */
  aspect-ratio: attr(width) / attr(height);
}

/* ========================================
   NAVBAR STYLES
   (Moved to Consolidated Section at the end of file to match navbar.html structure)
   ======================================== */
/* Old #navbar styles removed to prevent conflict with nav class styles */

/* ========================================
   TYPOGRAPHY & BASE STYLES
   ======================================== */
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: black;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* Typography Scale - Consistent across all pages */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.3rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

.theme-text {
  color: var(--theme-color) !important;
}

/* Button Styles */
.rounded-pill {
  background-color: var(--btn-color);
  border: none;
}

.btn {
  background-color: var(--btn-color);
  border: none;
}

/* ========================================
   VIDEO BANNER SECTION
   ======================================== */

.video-banner {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Changed from height to min-height */
  overflow: hidden;
  margin-bottom: 0;
  /* aspect-ratio: 16/9; Remove strict aspect ratio constraint that might force height */
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-banner iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Aspect ratio handling for full cover simulation */
@media (min-aspect-ratio: 16/9) {
  .video-banner iframe {
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-banner iframe {
    width: 177.78vh;
    max-width: none;
  }
}


.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.video-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ========================================
   AI CAPABILITIES SECTION
   ======================================== */
.ai-capabilities-section {
  background: black;
  color: white;
  /* padding: 80px 0; */
}

.ai-capabilities-section .container {
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.ai-capabilities-section .section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00d2ff;
  padding-top: 60px;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  white-space: normal;
  word-break: keep-all;
}

.feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 60px;
  text-align: left;
}

.feature-video-wrapper {
  flex: 1;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  height: 500px;
  background: #000;
  display: block;
  /* Robust fix for border-radius clipping on iframes */
  mask-image: -webkit-radial-gradient(white, black); /* Some browsers need this specific gradient for antialiasing */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  z-index: 1; /* Ensure stacking context */
}

.feature-video-wrapper .background-video,
.feature-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.35);
  height: 100%;
  aspect-ratio: 16/9;
  z-index: 0;
  display: block;
  visibility: visible;
  pointer-events: none;
  border: 0;
  max-width: none; /* Override global max-width to allow overflow for cover effect */
}

.feature-video-wrapper .background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Reset standard video placement for non-iframes */
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
}

.feature-video-wrapper .video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.ai-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}





.feature-content {
  flex: 1;
  padding: 20px;
}

.service-feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  /* margin-bottom: 25px; */
  line-height: 1.2;
  color: #00d2ff;
}

.service-feature-heading {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 2.4vw + 1rem, 2.9rem);
  letter-spacing: 0.04em;
  font-weight: 800;
}

.feature-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.service-feature-desc {
  max-width: 600px;
  color: #cccccc;
  margin-bottom: 0;
}

.service-feature-lists {
  margin-top: 5px;
}

.service-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(226, 232, 240, 0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.service-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.95) 0%, rgba(0, 210, 255, 0.25) 65%, transparent 100%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.btn-service-cta {
  display: inline-flex;
  align-items: start;
  justify-content: start;
  padding: 0;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #e6f8ff;
  border: none;
  background: transparent;
  gap: 12px;
}

.btn-service-cta:hover,
.btn-service-cta:focus {
  color: #00c2ff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .service-feature-heading {
    font-size: 2.3rem;
  }

  .service-feature-lists .col-6 {
    width: 100%;
  }

  .btn-service-cta {
    width: 100%;
  }

  .section-subtitle {
    margin-bottom: 40px;
  }
}

/* Know More Link Styling */
.know-more-link {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.know-more-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.know-more-link:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(168, 85, 247, 0.4) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.know-more-link:hover::before {
  left: 100%;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

/* ========================================
   INTERACTIVE SERVICES SECTION
   ======================================== */
.services-showcase {
  background: #0f1219;
  color: white;
  min-height: 100vh;
  padding: 80px 20px;
}

.showcase-header {
  max-width: 1400px;
  margin: 0 auto 60px;
}

.showcase-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px !important;
  background: #00d2ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.section-subtitle .highlightX {
  color: #00d2ff;
}

.showcase-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* Service Menu */
.service-menu {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1 0%, #a855f7 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.service-item:hover {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(10px);
}

.service-item.active {
  border-color: #6366f1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
  transform: translateX(15px);
}

.service-item.active::before {
  transform: scaleY(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.service-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin: 0;
}

/* Video Display Area */
.video-display {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 700px;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.video-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 60px 40px 40px;
  z-index: 2;
}

.service-video-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.service-video-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}

.video-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px;
  text-align: center;
  min-height: 700px;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.empty-state p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-menu {
    position: relative;
    top: 0;
  }

  .video-display {
    min-height: 500px;
  }

  .empty-state {
    min-height: 500px;
  }

  .showcase-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Video Banner */
  .video-banner {
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: 16/9;
  }

  .video-banner iframe {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
    max-width: none !important;
  }

  .video-content h1 {
    font-size: 2rem;
  }

  .video-content p {
    font-size: 1rem;
  }

  /* AI Capabilities */
  .ai-capabilities-section {
    padding: 1px 0;
  }
  
  .ai-capabilities-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    margin-bottom: 50px;
    gap: 30px;
    width: 100%;
  }

  .feature-video-wrapper {
    max-width: 100%;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    display: block;
    visibility: visible;
  }
  
  .feature-video-wrapper .background-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .feature-video-wrapper .video-card-overlay {
    background: transparent;
    pointer-events: none;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .feature-content {
    padding: 0 15px;
    width: 100%;
  }

  .feature-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .feature-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Interactive Services */
  .services-showcase {
    padding: 60px 15px;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-subtitle {
    font-size: 1rem;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 1.2rem;
  }

  .service-video-content h2 {
    font-size: 1.8rem;
  }

  .service-video-content p {
    font-size: 1rem;
  }

  .service-video-overlay {
    padding: 40px 20px 30px;
  }

  .video-display {
    min-height: 400px;
  }

  .empty-state {
    min-height: 400px;
    padding: 40px 20px;
  }

  .empty-state-icon {
    font-size: 3rem;
  }

  .empty-state h3 {
    font-size: 1.5rem;
  }

  .empty-state p {
    font-size: 1rem;
  }
}

/* ========================================
   OUR VIDEOS SECTION
   ======================================== */
.video-showcase-section {
  /* padding: 80px 20px; */
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-title h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  

}

.showcase-title h2{
  color: red;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.video-grid.large-grid {
  grid-template-columns: repeat(2, 1fr);
}

.video-grid.small-grid {
  grid-template-columns: repeat(3, 1fr);
}

.video-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  /* Fix for border-radius clipping */
  mask-image: -webkit-radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  z-index: 1;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 360px;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-card:hover .video-card-overlay {
  opacity: 1;
}

.play-button {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  transition: transform 0.3s ease;
}

.video-card:hover .play-button {
  transform: scale(1.1);
}

.capabilities-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .video-grid.large-grid {
    grid-template-columns: 1fr;
  }
  .video-grid.small-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .video-grid.small-grid {
    grid-template-columns: 1fr;
  }
  .showcase-title {
    font-size: 1.8rem;
  }
  .capabilities-title {
    font-size: 1.5rem;
  }

    /* Mobile: ensure showcase videos are one-per-row and scale properly */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Increased gap */
    }

    .video-card {
        height: auto;
        aspect-ratio: 16/9; /* Enforce aspect ratio */
    }

    .video-card video,
    .video-card iframe { /* Added iframe support */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Make industry cards use a wider aspect on small screens for better visual balance */
@media (max-width: 576px) {
    .about-industry-card {
        aspect-ratio: 16/9;
    }
    .about-industry-section {
        padding: 2.5rem 1rem;
    }
    .about-industry-card-overlay {
        height: 30%;
        padding: 1rem;
    }
}

    /* ========================================
         SERVICE PAGE - RESPONSIVE FIXES
         Improves layout for .brand-cinema-split, .feature-row, and youtube deck
         ======================================== */

    /* Ensure videos scale and keep 16:9 across the site */
    .brand-video-wall video,
    .youtube-media-stage video,
    .about-industry-card video,
    .about-industry-card iframe,
    .feature-video-wrapper .background-video,
    .video-card video {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .about-industry-card {
      position: relative;
      overflow: hidden;
      border: none; /* Ensure no border */
      background: #000; /* Ensure background matches */
    }

    .about-industry-card iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1.35); /* Zoom to hide UI */
      width: 150%; 
      height: 150%;
      pointer-events: none;
      z-index: 0;
      filter: grayscale(100%);
      transition: filter 0.4s ease;
    }

    .about-industry-card:hover iframe {
        filter: grayscale(0%);
    }
    
    .about-industry-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: #ffffff;
        padding: 1.5rem;
        z-index: 2;
        pointer-events: none; /* Let clicks pass through if needed, or auto if interactive */
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .about-industry-card:hover .about-industry-card-overlay {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .about-industry-card-overlay h3 {
        color: #00c2ff; /* Cyan theme color */
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .about-industry-card-overlay p {
        color: #333333;
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.4;
    }

    /* Medium screens (tablets) - stack some large split sections */
    @media (max-width: 992px) {
        .feature-row,
        .feature-row.reverse {
            flex-direction: column;
            gap: 24px;
        }

        .feature-video-wrapper,
        .feature-content {
            max-width: 100%;
            height: auto;
        }

        .brand-cinema-split {
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding: 2rem 1rem;
        }

        .brand-video-wall {
            height: auto;
            min-height: 220px;
        }

        .brand-story-panel {
            padding: 1rem 0;
        }

        .youtube-deck-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
    }
    .about-pillar-card{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Small screens (mobile) - one column layouts, adjusted paddings & font sizes */
    @media (max-width: 576px) {
        /* Make all split sections stack vertically */
        .feature-row,
        .feature-row.reverse,
        .brand-cinema-split,
        .youtube-deck-container {
            flex-direction: column !important;
            align-items: stretch;
        }

        .brand-video-wall,
        .youtube-media-stage,
        .feature-video-wrapper,
        .service-simple-video-wrapper {
            width: 100%;
            min-height: 250px;
            height: auto;
        }

        /* Fix YouTube iframe scaling & interaction on mobile */
        .youtube-screen-frame iframe,
        .service-simple-video-wrapper iframe {
            width: 100% !important;
            height: 100% !important;
            top: 0 !important;
            left: 0 !important;
            transform: none !important;
            max-width: none !important;
            pointer-events: auto !important;
        }

        .brand-story-panel,
        .youtube-info-card,
        .feature-content {
            padding: 0.75rem 0;
        }

        .brand-story-panel h2,
        .youtube-info-card h2,
        .service-feature-heading {
            font-size: 1.6rem;
            line-height: 1.2;
        }

        .btn-service-cta {
            display: block;
            width: 100%;
            text-align: center;
            padding: 0.8rem 1rem;
        }

        /* Reduce large section padding on mobile for better fit */
       
        .about-industry-section,
        .brand-cinema-split,
        .youtube-deck-layout {
            padding: 2rem 1rem;
        }

        /* Make cards and video-showcase one-per-row where applicable */
        .video-grid,
        .gallery,
        .row.g-3 {
            gap: 0px;
        }
        .cta-ptext{
            margin-top: 2rem !important;
        }
        .about-comparison-divider span{
            rotate: 267deg;
        }

        .about-pillar-highlight{
            line-height: 40px;
            padding: 15px;
        }
        .about-video-overlay{
            background: rgba(0, 0, 0, 0.75) !important;
        }


        /* Ensure overlays are readable on smaller heights */
        .about-industry-card-overlay,
        .video-card-overlay {
            height: 36%;
            padding: 0.75rem;
        }
    }


/* ========================================
   IMAGE GALLERY SECTION
   ======================================== */

      .gallery {
  --s: 150px; /* control the size */
  --f: 1.5;   /* control the scale factor */
  
  display: grid;
  gap: 15px;
  width: 100%;
  min-height: 400px;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 20px;
  box-sizing: border-box;
}

.gallery > img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform .35s ease;
  border-radius: 8px;
}

.gallery img:hover{
  transform: scale(1.2);
  z-index: 10;
}










/* Modal Styles */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.modal-body {
  padding: 0;
  overflow: hidden;
}

.modal-body img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-header {
  border: none;
  background: transparent;
  padding: 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.btn-close {
  opacity: 1;
  width: 40px;
  height: 40px;
  background: transparent;
  position: relative;
  filter: none;
  transition: transform 0.15s;
}

.btn-close:hover {
  transform: scale(0.95);
}

.btn-close::before,
.btn-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transition: all 0.15s;
  transform-origin: 0 0;
}

.btn-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.btn-close:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.btn-close:hover::after {
  transform: translate(-50%, -50%) rotate(315deg);
}

.modal-title-caption {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: white;
  padding: 1em;
  font-weight: 600;
  text-align: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  height: 30%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.15s;
}

.modal-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.modal-nav::before,
.modal-nav::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  opacity: 1;
  transition: all 0.15s;
}

.modal-nav-prev {
  left: 0;
}

.modal-nav-prev::before,
.modal-nav-prev::after {
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(-45deg) translate(-50%, -100%);
}

.modal-nav-prev::after {
  margin-left: 2rem;
}

.modal-nav-prev:hover::before {
  margin-left: 2rem;
}

.modal-nav-prev:hover::after {
  margin-left: 0;
}

.modal-nav-next {
  right: 0;
}

.modal-nav-next::before,
.modal-nav-next::after {
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(-50%, -100%);
}

.modal-nav-next::after {
  margin-left: 2rem;
}

.modal-nav-next:hover::before {
  margin-left: 2rem;
}

.modal-nav-next:hover::after {
  margin-left: 0;
}



/* contact page */
 .studio351-contact-section {
            background-color: #000000;
            color: #ffffff;
            padding: 80px 0;
            font-family: 'Inter', sans-serif;
        }

        .studio351-heading {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .studio351-subheading {
            font-size: 1rem;
            color: #cccccc;
            margin-bottom: 50px;
            line-height: 1.6;
        }

        .studio351-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 100%;
            min-height: 650px;
        }

        /* Video background used in the contact form section - match form height */
        .studio351-video-background {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background: #000;
            min-height: 780px; /* match the form min-height */
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .studio351-video-background video {
            width: 100%;
            height: 100%;
            /* show the full video frame rather than cropping */
            object-fit: contain;
            object-position: center center;
            display: block;
            background: #000; /* avoid bright gaps when letterboxed */
        }

        /* Ensure form and video remain equal height and scroll if viewport is smaller */
        .studio351-form-wrapper,
        .studio351-video-background {
            min-height: 780px;
            height: 100%;
        }

        .studio351-form-wrapper {
            overflow: auto;
        }

        .studio351-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .studio351-form-wrapper {
            background-color: #111111;
            padding: 40px;
            border-radius: 8px;
            height: 100%;
            min-height: 780px; /* increased so the form appears taller on desktop */
            display: flex;
            flex-direction: column;
        }

        .studio351-form-wrapper form {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .studio351-form-wrapper form > :last-child {
            margin-top: auto;
        }

        .studio351-form-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .studio351-form-subtitle {
            font-size: 0.9rem;
            color: #cccccc;
            margin-bottom: 30px;
        }

        .studio351-form-group {
            margin-bottom: 35px;
        }

        .studio351-form-group.studio351-row-group {
            margin-bottom: 0;
        }

        .studio351-form-row {
            margin-bottom: 35px;
        }

        .studio351-form-control {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #333333;
            border-radius: 0;
            color: #ffffff;
            padding: 12px 0;
            font-size: 0.95rem;
        }

        .studio351-form-control:focus {
            background-color: transparent;
            border-bottom-color: #666666;
            box-shadow: none;
            color: #ffffff;
        }

        .studio351-form-control::placeholder {
            color: #666666;
        }

        .studio351-textarea {
            min-height: 180px; /* larger textarea for better usability */
            resize: vertical;
        }

        .studio351-select {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #333333;
            color: #666666;
            padding: 12px 0;
            font-size: 0.95rem;
            width: 100%;
            cursor: pointer;
        }

        .studio351-select:focus {
            outline: none;
            border-bottom-color: #666666;
        }

        .studio351-select option {
            background-color: #111111;
            color: #ffffff;
        }

        .studio351-submit-btn {
            background-color: transparent;
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 12px 40px;
            font-size: 0.9rem;
            font-weight: bold;
            letter-spacing: 1px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .studio351-submit-btn:hover {
            background-color: #ffffff;
            color: #000000;
        }

        .studio351-privacy-text {
            font-size: 0.75rem;
            color: #889888;
            margin-top: 20px;
            line-height: 1.5;
        }

        .studio351-privacy-text a {
            color: #889888;
            text-decoration: underline;
        }

        .studio351-privacy-text a:hover {
            color: #ffffff;
        }

        /* Make StudioX CTA fit nicely inside the contact form */
        .studio351-form-wrapper .studiox-contact-btn {
            padding: 14px 36px;
            border-width: 3px;
            font-size: 15px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-transform: uppercase;
        }

        .studio351-form-wrapper .studiox-contact-btn span {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 991px) {
            .studio351-image-wrapper {
                margin-bottom: 40px;
                height: 400px;
            }
            .studio351-video-background,
            .studio351-form-wrapper {
                min-height: 500px;
            }
        }

        @media (max-width: 767px) {
            .studio351-heading {
                font-size: 2rem;
            }

            .studio351-form-wrapper {
                padding: 30px 20px;
            }

            .studio351-form-title {
                font-size: 1.5rem;
            }
        }
  .studio351-direct-contact-section {
            background-color: #000000;
            /* padding: 60px 0; */
            font-family: 'Inter', sans-serif;
        }

        .studio351-direct-wrapper {
            background-color: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 16px;
            padding: 50px 40px;
        }

        .studio351-direct-title {
            color: #ffffff;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 50px;
        }

        .studio351-contact-cards-wrapper {
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: stretch;
        }

        .studio351-contact-card {
            background-color: #1a1a1a;
            border-radius: 12px;
            padding: 50px 40px;
            flex: 1;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.3s ease;
        }

        .studio351-contact-card:hover {
            background-color: #222222;
            transform: translateY(-5px);
        }

        .studio351-icon-wrapper {
            width: 80px;
            height: 80px;
            margin-bottom: 30px;
        }

        .studio351-icon-wrapper img {
            width: 100%;
            height: 100%;
        }

        .studio351-contact-label {
            color: var(--theme-color);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .studio351-contact-info {
            color: #cccccc;
            font-size: 1.1rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .studio351-contact-info:hover {
            color: #ffffff;
        }

        @media (max-width: 991px) {
            .studio351-contact-cards-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .studio351-contact-card {
                max-width: 100%;
            }

            .studio351-direct-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .studio351-direct-wrapper {
                padding: 40px 20px;
            }

            .studio351-direct-title {
                font-size: 1.75rem;
                margin-bottom: 40px;
            }

            .studio351-contact-card {
                padding: 40px 30px;
            }

            .studio351-icon-wrapper {
                width: 60px;
                height: 60px;
            }
        }
      .studio351-faq-section {
            background-color: #000000;
            /* padding: 80px 0; */
            font-family: 'Inter', sans-serif;
        }

        .studio351-faq-title {
            color: #ffffff;
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 60px;
        }

        .studio351-faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .studio351-faq-item {
            background-color: #0f0f0f;
            border: 1px solid #1a1a1a;
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .studio351-faq-item:hover {
            border-color: #2a2a2a;
        }

        .studio351-faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .studio351-faq-question:hover {
            background-color: #151515;
        }

        .studio351-faq-icon {
            color: var(--theme-color);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .studio351-faq-item.active .studio351-faq-icon {
            transform: rotate(180deg);
        }

        .studio351-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #cccccc;
            font-size: 1rem;
            line-height: 1.7;
        }

        .studio351-faq-answer-content {
            padding: 0 30px 25px 30px;
        }

        .studio351-faq-item.active .studio351-faq-answer {
            max-height: 500px;
        }

        @media (max-width: 767px) {
            .studio351-faq-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .studio351-faq-question {
                font-size: 1rem;
                padding: 20px;
            }

            .studio351-faq-answer-content {
                padding: 0 20px 20px 20px;
            }

            .studio351-faq-icon {
                margin-left: 15px;
            }
        }

/* the problem and the solution section */
.story-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .split-container {
            position: relative;
            width: 100%;
        }

        .split-side {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 40px;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Problem Side - Dark */
        .problem-side {
            background: #000;
            position: relative;
        }

        .problem-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
            animation: darkPulse 8s ease-in-out infinite;
        }

        @keyframes darkPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .problem-side::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 50%, transparent 52%);
            background-size: 30px 30px;
            opacity: 0.1;
        }

        .problem-side:hover {
            box-shadow: inset 0 0 0 2px rgba(255,255,255,0.3);
        }

        .problem-side:hover::before {
            animation-duration: 4s;
        }

        /* Solution Side - Light emerging */
        .solution-side {
            background: #000;
            position: relative;
        }

        .solution-side::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            background: 
                radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 30%, transparent 70%),
                linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
            animation: lightRays 6s ease-in-out infinite;
        }

        @keyframes lightRays {
            0%, 100% { 
                transform: rotate(0deg) scale(1);
                opacity: 0.8;
            }
            50% { 
                transform: rotate(180deg) scale(1.2);
                opacity: 1;
            }
        }

        .solution-side::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
            animation: glow 4s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }

        /* Divider between sections */
        .divider {
            position: absolute;
            top: 0;
            left: 50%;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(255,255,255,0.3) 20%, 
                rgba(255,255,255,0.6) 50%, 
                rgba(255,255,255,0.3) 80%, 
                transparent 100%);
            transform: translateX(-50%);
            z-index: 10;
        }

        .divider::before {
            content: '→';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 32px;
            background: #000;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.4);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.1);
                box-shadow: 0 0 0 10px rgba(255,255,255,0);
            }
        }

        /* Content styling */
        .content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 500px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease-out forwards;
        }

        .problem-side .content-wrapper {
            animation-delay: 0.2s;
        }

        .solution-side .content-wrapper {
            animation-delay: 0.4s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
            font-weight: 800;
        }

        .problem-side .section-title {
            color: rgba(255,255,255,0.5);
        }

        .solution-side .section-title {
            color: #fff;
        }

       

        .section-text {
            font-size: 20px;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 0;
        }

        .problem-side .section-text {
            color: rgba(255,255,255,0.7);
        }

        .solution-side .section-text {
            color: #fff;
        }

        .solution-side .section-text strong {
            font-weight: 600;
            color: #fff;
            text-shadow: 0 0 20px rgba(255,255,255,0.3);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .divider {
                width: 100%;
                height: 1px;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }

            .divider::before {
                content: '↓';
            }

            .split-side {
                min-height: 400px;
                padding: 60px 30px;
            }

            .section-text {
                font-size: 18px;
            }

            .section-title {
                font-size: 12px;
            }
        }

        /* Hover effects */
        .split-side {
            cursor: default;
        }

        .problem-side:hover .content-wrapper {
            transform: translateX(-5px);
        }

        .solution-side:hover .content-wrapper {
            transform: translateX(5px);
        }

        .content-wrapper {
            transition: transform 0.4s ease;
        }

        /* Accent elements */
        .accent-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .problem-side .accent-dot:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .problem-side .accent-dot:nth-child(2) {
            top: 70%;
            right: 15%;
            animation-delay: 1s;
        }

        .solution-side .accent-dot:nth-child(1) {
            top: 30%;
            left: 20%;
            animation-delay: 0.5s;
            background: rgba(255,255,255,0.5);
        }

        .solution-side .accent-dot:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 1.5s;
            background: rgba(255,255,255,0.5);
        }

/* who we serve section */
.services-section {
    background: #000;
  }

  .services-section h2 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
  }

  .services-section p {
    color: #ccc;
  }

  .service-pill {
    background-color: #111;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .service-pill:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
  }

  @media (max-width: 576px) {
    .service-pill {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
    }
  }

  .story-section {
  background-color: #000;
  color: #fff;
}
.video-placeholder {
  width: 100%;
  height: 300px;
  border: 2px dashed #444;
  border-radius: 10px;
}
/* Story section specific styles */
.story-section .section-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  border-left: 4px solid #fff;
  padding-left: 10px;
  margin-bottom: 15px;
}

.story-section .section-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}


/* what you get section */
 .ad-film-section {
            padding: 80px 0;
            color: white;
        }

        .main-heading {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .intro-text {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .benefit-row {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .benefit-row:hover {
            transform: translateX(10px);
        }

        .checkmark-box {
            width: 40px;
            height: 40px;
            background-color: black;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .checkmark-box::before {
            content: "→";
            color: var(--accent-orange);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .benefit-label {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin: 0;
        }

        .contact-btn {
            background-color: var(--accent-orange);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 20px;
        }

        .contact-btn:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        /* Overlapping Image Layout */
        .media-wrapper {
            position: relative;
            height: 600px;
        }

        .media-block {
            position: absolute;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, z-index 0.3s ease;
        }

        .media-block:hover {
            transform: scale(1.05);
            z-index: 10 !important;
        }

        .media-block img,
        .media-block video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Section 1: Images on Left */
        .media-block.position-top-left {
            top: 0;
            left: 0;
            width: 55%;
            height: 350px;
            z-index: 3;
        }

        .media-block.position-bottom-right {
            bottom: 0;
            right: 0;
            width: 60%;
            height: 300px;
            z-index: 2;
        }

        .media-block.centered-overlay {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50%;
            height: 280px;
            z-index: 4;
            border: 5px solid white;
        }

        /* Section 2: Images on Right */
        .media-wrapper-alternate .media-block.position-top-right {
            top: 0;
            right: 0;
            width: 55%;
            height: 350px;
            z-index: 3;
        }

        .media-wrapper-alternate .media-block.position-bottom-left {
            bottom: 0;
            left: 0;
            width: 60%;
            height: 300px;
            z-index: 2;
        }

        .media-wrapper-alternate .media-block.centered-overlay {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50%;
            height: 280px;
            z-index: 4;
            border: 5px solid white;
        }

        

        @media (max-width: 992px) {
            .media-wrapper,
            .media-wrapper-alternate {
                height: 500px;
                margin-bottom: 40px;
            }

            .media-block.position-top-left,
            .media-block.position-top-right {
                width: 65%;
                height: 280px;
            }

            .media-block.position-bottom-right,
            .media-block.position-bottom-left {
                width: 70%;
                height: 250px;
            }

            .media-block.centered-overlay,
            .media-wrapper-alternate .media-block.centered-overlay {
                width: 60%;
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 2rem;
            }

            .ad-film-section {
                padding: 50px 0;
            }

            .media-wrapper,
            .media-wrapper-alternate {
                height: 400px;
            }

            .media-block.position-top-left,
            .media-block.position-top-right {
                width: 75%;
                height: 220px;
            }

            .media-block.position-bottom-right,
            .media-block.position-bottom-left {
                width: 75%;
                height: 200px;
            }

            .media-block.centered-overlay,
            .media-wrapper-alternate .media-block.centered-overlay {
                width: 70%;
                height: 180px;
            }
        }
  /* expertise section */
  
        .expertise-showcase-area {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?q=80&w=2071') center/cover no-repeat;
        }

        .expertise-showcase-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .content-wrapper-block {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px 20px;
        }

        .primary-headline-text {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.5px;
        }

        .supporting-description-text {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #e0e0e0;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-weight: 300;
        }

        .cta-action-button {
            display: inline-block;
            padding: 16px 48px;
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }

        .cta-action-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
            background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
            color: #ffffff;
        }

        .cta-action-button:active {
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .expertise-showcase-area {
                min-height: 80vh;
            }

            .primary-headline-text {
                margin-bottom: 20px;
            }

            .supporting-description-text {
                margin-bottom: 30px;
            }

            .cta-action-button {
                padding: 14px 36px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .content-wrapper-block {
                padding: 30px 15px;
            }
        }
/* our promise section */
   .professional-approach-section {
            background-color: #f5f5f5;
            padding: 80px 0;
        }

        .section-heading-main {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 20px;
            text-align: center;
        }

        .section-description-text {
            color: #6c6c6c;
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .approach-feature-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.4s ease;
        }

        .approach-feature-card:hover {
            background-color: #000000;
            border-color: #000000;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 30px;
            transition: color 0.4s ease;
        }

        .approach-feature-card:hover .feature-card-title {
            color: #ffffff;
        }

        .feature-icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) saturate(100%);
            transition: filter 0.4s ease;
        }

        .approach-feature-card:hover .feature-icon-wrapper img {
            filter: brightness(0) saturate(100%) invert(1);
        }

        .feature-description-text {
            color: #6c6c6c;
            font-size: 1rem;
            line-height: 1.7;
            text-align: center;
            transition: color 0.4s ease;
        }

        .approach-feature-card:hover .feature-description-text {
            color: #d0d0d0;
        }

        .approach-card-column {
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .section-heading-main {
                font-size: 2rem;
            }
            
            .approach-feature-card {
                padding: 30px 20px;
            }
        }

  /* contact section */
  
        .vb-contact-wrapper {
            background: black;
            min-height: 100vh;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .vb-contact-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .vb-main-container {
            position: relative;
            z-index: 1;
        }

        .vb-content-area {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .vb-text-section {
            flex: 1;
            color: white;
        }

        .vb-badge-label {
            display: inline-block;
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .vb-main-heading {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .vb-description-text {
            font-size: 18px;
            line-height: 1.7;
            color: #cbd5e1;
            max-width: 540px;
        }

        .vb-form-section {
            flex: 1;
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 45px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .vb-input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .vb-field-group {
            position: relative;
        }

        .vb-field-label {
            display: block;
            color: #e2e8f0;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .vb-required-mark {
            color: #ef4444;
            margin-left: 3px;
        }

        .vb-text-input,
        .vb-textarea-input {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(203, 213, 225, 0.3);
            border-radius: 10px;
            font-size: 15px;
            color: #1e293b;
            transition: all 0.3s ease;
        }

        .vb-text-input:focus,
        .vb-textarea-input:focus {
            outline: none;
            border-color: #3b82f6;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .vb-textarea-input {
            resize: vertical;
            min-height: 130px;
            font-family: inherit;
        }

        .vb-submit-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 15px 45px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            margin-top: 10px;
        }

        .vb-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        .vb-submit-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 991px) {
            .vb-content-area {
                flex-direction: column;
                gap: 40px;
            }

            .vb-main-heading {
                font-size: 42px;
            }

            .vb-form-section {
                padding: 35px;
            }
        }

        @media (max-width: 768px) {
            .vb-contact-wrapper {
                padding: 50px 0;
            }

            .vb-input-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .vb-main-heading {
                font-size: 36px;
            }

            .vb-description-text {
                font-size: 16px;
            }

            .vb-form-section {
                padding: 25px;
            }
        }

  /* service page */
   /* Services Hero */
        .services-hero-zone {
            padding: 100px 0 80px;
            text-align: center;
            background: linear-gradient(180deg, #000 0%, #111 100%);
        }

        .services-hero-zone h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
        }

        .services-hero-zone p {
            font-size: 1.3rem;
            color: #aaa;
            max-width: 700px;
            margin: 0 auto;
        }

        /* SERVICE 1: BRAND VIDEO - Full Width Split Screen */
        .brand-cinema-split {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: #000;
            overflow: hidden;
            margin-top: 0;
        }

        .brand-video-wall {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: #111;
        }

        .brand-video-wall video,
        .brand-video-wall img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .brand-video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            font-size: 1.3rem;
        }

        .brand-story-panel {
            position: relative;
            z-index: 2;
            width: 50%;
            padding: 80px 60px;
            color: white;
        }

        .brand-story-panel h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .brand-story-panel .tagline-brand {
            font-size: 1.5rem;
            color: #889;
            margin-bottom: 8px;
        }

        .brand-story-panel .desc-brand {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 40px;
        }

        .feature-grid-brand {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .feature-item-brand {
            background: #111;
            padding: 20px;
            border-radius: 8px;
            border-left: 3px solid #fff;
        }

        .feature-item-brand h4 {
            font-size: 1rem;
            margin: 0;
            font-weight: 600;
        }

        .timeline-bar-brand {
            background: #fff;
            color: #000;
            padding: 8px 12px;
            display: inline-block;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 30px;
        }

        /* SERVICE 2: YOUTUBE - Card Overlay Style */
        .youtube-deck-layout {
            padding: 120px 0;
            background: #0a0a0a;
            position: relative;
        }

        .youtube-deck-layout::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(180deg, #000 0%, transparent 100%);
            z-index: 1;
        }

        .youtube-deck-container {
            position: relative;
            z-index: 2;
        }

        .youtube-media-stage {
            position: relative;
            height: 600px;
            margin-bottom: -200px;
            z-index: 1;
        }

        .youtube-screen-frame {
            width: 100%;
            height: 100%;
            background: #111;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

        .youtube-screen-frame video,
        .youtube-screen-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .youtube-info-card {
            background: #fff;
            color: #000;
            padding: 60px;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .youtube-info-card h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 15px;
        }

        .youtube-info-card .sub-yt {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 25px;
        }

        .youtube-info-card .desc-yt {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .yt-benefits-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }

        .yt-benefit-tag {
            background: #fff;
            color: #000;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }

        .yt-action-zone {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 2px solid #eee;
            padding-top: 30px;
        }

        .yt-timeline {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .yt-cta-btn {
            background: #000;
            color: #fff;
            padding: 15px 40px;
            border: none;
            font-weight: 600;
            cursor: pointer;
        }

        /* SERVICE 3: AI AVATAR - Futuristic Grid */
        .avatar-tech-grid {
            /* padding: 120px 0; */
            background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
        }

        .avatar-showcase-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: #111;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #222;
        }

        .avatar-visual-zone {
            position: relative;
            min-height: 700px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .avatar-visual-zone video,
        .avatar-visual-zone img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .avatar-tech-panel {
            padding: 80px 60px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        }

        .avatar-tech-panel h2 {
          font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
        }

        .avatar-tech-panel .tech-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 8px;
           
        }

        .avatar-tech-panel .desc-avatar {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #aaa;
            margin-bottom: 40px;
        }

        .tech-specs-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .tech-specs-list li {
            padding: 18px 0;
            border-bottom: 1px solid #222;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            color: white;
        }

        .tech-specs-list li::before {
            content: '→';
            margin-right: 15px;
            font-size: 1.5rem;
            color: #fff;
        }

        .avatar-use-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .avatar-pill {
            background: #000;
            border: 1px solid #333;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            color: #889;
        }

        .avatar-cta-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
           
            
            border-radius: 10px;
        }

        .avatar-timeline-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
        }

        .avatar-action-btn {
            background: #fff;
            color: #000;
            padding: 5px 35px;
            border: none;

            
            cursor: pointer;
        }

        /* SERVICE 4: LEARNING - Magazine Layout */
        .learning-magazine-spread {
            padding: 120px 0;
            background: #000;
        }

        .magazine-layout-grid {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 60px;
            align-items: start;
        }

        .learning-content-column {
            position: sticky;
            top: 120px;
        }

        .learning-content-column h2 {
            font-size: 3rem;
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 30px;
            color: white;
        }

        .learning-content-column .magazine-subtitle {
            font-size: 1.2rem;
            color: #889;
            margin-bottom: 8px;
        }

        .learning-content-column .desc-learning {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 40px;
            ;
        }

        .learning-features-stack {
            margin-bottom: 40px;
        }

        .learning-feature-row {
            background: #111;
            padding: 25px;
            margin-bottom: 10px;
            border-left: 5px solid #fff;
            transition: all 0.3s ease;
        }

        .learning-feature-row:hover {
            background: #1a1a1a;
            border-left-width: 10px;
        }

        .learning-feature-row h4 {
            font-size: 1.2rem;
            margin: 0;
            font-weight: 700;
             color: white;
        }

        .learning-cta-box {
            
            
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .learning-cta-box .timeline-learning {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

         button {
            background: #000;
            color: #fff;
            padding: 7px 14px;
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            border: 2px solid;
        }

        .learning-visual-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .learning-visual-box {
            background: #111;
            border-radius: 12px;
            overflow: hidden;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .learning-visual-box:first-child {
            grid-column: 1 / -1;
            height: 400px;
        }

        .learning-visual-box video,
        .learning-visual-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        
        .consultation-cta {
            margin-top: 40px;
        }

        .consultation-cta a {
            background: #fff;
            color: #000;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        /* Custom Solutions */
        .custom-solutions-hub {
            padding: 100px 0;
            background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
        }

        .custom-header-zone {
            text-align: center;
            margin-bottom: 60px;
        }

        .custom-header-zone h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            color: white;
        }

        .custom-header-zone p {
            font-size: 1.2rem;
            color: #889;
        }

        .custom-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .custom-service-card {
            background: #111;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #222;
            transition: all 0.3s ease;
        }

        .custom-service-card:hover {
            border-color: #fff;
            transform: translateY(-5px);
        }

        .custom-service-card i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .custom-service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: white;
        }

        .custom-service-card p {
            color: #889;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .custom-cta-zone {
            text-align: center;
        }

        .custom-quote-btn {
            background: #fff;
            color: #000;
            padding: 18px 50px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .brand-cinema-split {
                flex-direction: column;
                min-height: auto;
            }

            .brand-video-wall {
                position: relative;
                width: 100%;
                height: 400px;
            }

            .brand-story-panel {
                width: 100%;
                padding: 60px 30px;
            }

            .youtube-media-stage {
                height: 400px;
                margin-bottom: -100px;
            }

            .youtube-info-card {
                padding: 40px 30px;
            }

            .avatar-showcase-wrapper {
                grid-template-columns: 1fr;
            }

            .avatar-visual-zone {
                min-height: 400px;
            }

            .magazine-layout-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .learning-content-column {
                position: relative;
                top: 0;
            }

            .learning-content-column h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .video-content h1 {
                font-size: 2.5rem;
            }
            .learning-magazine-spread {
            padding: 12px 0;
          
        }

            .services-hero-zone h1 {
                font-size: 2.5rem;
            }

            .brand-story-panel h2 {
                font-size: 2.5rem;
            }

            .feature-grid-brand {
                grid-template-columns: 1fr;
            }

            .youtube-info-card h2 {
                font-size: 2.2rem;
            }

            .yt-action-zone {
                flex-direction: column;
                gap: 20px;
            }

            .avatar-tech-panel {
                padding: 40px 30px;
            }

            .learning-visual-column {
                grid-template-columns: 1fr;
            }
        }
        

  /* test */
      .svc-morph-matrix-wrapper {
            min-height: 100vh;
            /* padding: 80px 20px; */
            background: #000;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .svc-morph-container-main {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        .svc-morph-header-section {
            text-align: center;
           
        }

        .svc-morph-header-section h2 {
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 20px;
            color: #fff;
            letter-spacing: -2px;
        }

        .svc-morph-header-section p {
            font-size: 1.4rem;
            color: #889;
            font-weight: 300;
        }

        .svc-morph-grid-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            align-items: center;
        }

        .svc-morph-selector-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .svc-morph-selector-card {
            padding: 2px 30px;
            background: #0a0a0a;
            border: 2px solid #1a1a1a;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .svc-morph-selector-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: #fff;
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        .svc-morph-selector-card:hover {
            background: #111;
            border-color: #333;
            transform: translateX(10px);
        }

        .svc-morph-selector-card.svc-morph-active {
            background: #111;
            border-color: #fff;
            transform: translateX(15px);
        }

        .svc-morph-selector-card.svc-morph-active::before {
            transform: scaleY(1);
        }

        .svc-morph-selector-number {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 8px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .svc-morph-selector-card.svc-morph-active .svc-morph-selector-number {
            color: #fff;
        }

        .svc-morph-selector-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
        }

        .svc-morph-display-panel {
            background: #0a0a0a;
            border: 2px solid #1a1a1a;
            border-radius: 24px;
            padding: 80px 60px;
            position: relative;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .svc-morph-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.8s ease;
            z-index: 0;
        }

        .svc-morph-video-bg.svc-morph-active {
            opacity: 0.4;
        }

        .svc-morph-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 100%);
            z-index: 0;
        }

        .svc-morph-display-panel::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            background-size: 200% 200%;
            opacity: 0;
            transition: opacity 0.5s ease;
            border-radius: 24px;
            z-index: 0;
        }

        .svc-morph-display-panel.svc-morph-animating::before {
            opacity: 1;
            animation: svcMorphShimmer 0.8s ease;
        }

        @keyframes svcMorphShimmer {
            0% { background-position: 200% 200%; }
            100% { background-position: -200% -200%; }
        }

        .svc-morph-content-inner {
            position: relative;
            z-index: 1;
        }

        .svc-morph-icon-display {
            font-size: 6rem;
            margin-bottom: 40px;
            display: inline-block;
            animation: svcMorphFadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes svcMorphFadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.5) rotate(-10deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .svc-morph-title-main {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            letter-spacing: -1px;
            animation: svcMorphFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
        }

        @keyframes svcMorphFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .svc-morph-meta-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .svc-morph-meta-item {
            animation: svcMorphFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
        }

        .svc-morph-meta-item:nth-child(1) { animation-delay: 0.2s; }
        .svc-morph-meta-item:nth-child(2) { animation-delay: 0.3s; }

        .svc-morph-meta-label {
            font-size: 0.9rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .svc-morph-meta-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
        }

        .svc-morph-description-text {
            font-size: 1.2rem;
            color: #889;
            line-height: 1.8;
            animation: svcMorphFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        .svc-morph-indicator-dots {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 8px;
            z-index: 1;
        }

        .svc-morph-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #1a1a1a;
            transition: all 0.3s ease;
        }

        .svc-morph-dot.svc-morph-active {
            background: #fff;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .svc-morph-cta-section {
            text-align: center;
            margin-top: 80px;
            padding: 60px 40px;
            background: rgba(10,10,10,0.6);
            border: 2px solid #1a1a1a;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        /* Background video (fills the CTA area) */
        .svc-morph-cta-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        /* Overlay to darken video for readability */
        .svc-morph-cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
            z-index: 0;
        }

        .svc-morph-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
            animation: svcMorphSlideAcross 4s infinite;
            z-index: 1;
        }

        @keyframes svcMorphSlideAcross {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .svc-morph-cta-section h3 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 3;
        }

        .svc-morph-cta-section p {
            font-size: 1.2rem;
            color:var(--theme-color);
            margin-bottom: 35px;
            position: relative;
            z-index: 3;
            font-weight: 900s;
        }

        .svc-morph-cta-section a {
            display: inline-block;
            padding: 20px 60px;
            background: #fff;
            color: #000;
            text-decoration: none;
           
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 3;
        }

        .svc-morph-cta-section a:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 1024px) {
            .svc-morph-grid-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .svc-morph-selector-column {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .svc-morph-selector-card:hover,
            .svc-morph-selector-card.svc-morph-active {
                transform: translateX(0) translateY(-5px);
            }
        }

        @media (max-width: 768px) {
            .svc-morph-matrix-wrapper{
                display: none
            }
            ;
            .svc-morph-selector-column {
                grid-template-columns: 1fr;
            }

            .svc-morph-display-panel {
                padding: 50px 30px;
            }

            .svc-morph-title-main {
                font-size: 2.5rem;
            }

            .svc-morph-meta-grid {
                grid-template-columns: 1fr;
            }

            .svc-morph-cta-section {
                padding: 40px 20px;
            }
        }
        .svc-morph-title-main{
          color: white;
        }

  /* custom tables */
   .studiox-custom-wrapper {
            position: relative;
            min-height: 100vh;
            padding: 80px 5%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .studiox-dual-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            width: 100%;
            max-width: 1400px;
            position: relative;
        }

        /* Left Side - Creative */
        .studiox-creative-zone {
            background: #fff;
            color: #000;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
            height: 95%;
        }

        .studiox-watermark {
            position: absolute;
            font-size: 180px;
            font-weight: 900;
            opacity: 0.05;
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .studiox-watermark.pos-top {
            top: -40px;
            left: -20px;
        }

        .studiox-watermark.pos-bottom {
            bottom: -60px;
            right: -20px;
            transform: rotate(180deg);
        }

        .studiox-hero-heading {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            position: relative;
        }

        .studiox-hero-desc {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 15px;
            max-width: 450px;
        }

        .studiox-divider-bar {
            width: 3px;
            height: 100px;
            background: #000;
            margin: 40px 0;
        }

        .studiox-statement {
            font-size: 24px;
            font-weight: 300;
            line-height: 1.4;
            position: relative;
            padding-left: 30px;
            border-left: 4px solid #000;
        }

        /* Right Side - Services */
        .studiox-services-zone {
            background: #000;
            color: #fff;
            padding: 80px 60px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .studiox-offerings-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .studiox-offer-row {
            border-bottom: 1px solid #333;
            padding: 35px 0;
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .studiox-offer-row:first-child {
            border-top: 1px solid #333;
        }

        .studiox-offer-row::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: #fff;
            transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: 0;
        }

        .studiox-offer-row:hover::before {
            width: 100%;
        }

        .studiox-offer-row:hover {
            padding-left: 30px;
        }

        .studiox-offer-row:hover .studiox-offer-num,
        .studiox-offer-row:hover .studiox-offer-title,
        .studiox-offer-row:hover .studiox-offer-icon {
            color: #000;
           
        }
        .studiox-offer-row:hover .data-hide {
            display: block;
        }

        .studiox-offer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .studiox-offer-details {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .studiox-offer-num {
            font-size: 18px;
            font-weight: 700;
            color: #666;
            transition: color 0.3s;
            min-width: 30px;
        }

        .studiox-offer-title {
            font-size: 24px;
            font-weight: 700;
            transition: color 0.3s;
        }

        .studiox-offer-icon {
            font-size: 24px;
            transition: all 0.3s;
            color: #fff;
        }

        .studiox-offer-row:hover .studiox-offer-icon {
            display: none;
        }

        /* CTA Section */
        .studiox-action-block {
            margin-top: 60px;
            text-align: center;
            position: relative;
        }

        .studiox-action-label {
            font-size: 16px;
            letter-spacing: 3px;
            color: var(--theme-color);
            margin-bottom: 20px;
            font-weight: bold;
        }


        .studiox-contact-btn {
            background: transparent;
            border: 3px solid #fff;
            color: #fff;
            padding: 12px 40px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            text-transform: uppercase;
            /* border-radius: 25px; */
            margin-top: 20px;
            z-index: 1;
            margin-bottom: -20px;
        }
        .studiox-contact-btn::before,
        .studiox-contact-btn::after {
            content: '';
            position: absolute;
            background: #fff;
            transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: 0;
        }
        .studiox-contact-btn::before {
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
        }
        .studiox-contact-btn::after {
            bottom: 0;
            right: -100%;
            width: 100%;
            height: 100%;
        }
        .studiox-contact-btn:hover::before {
            left: 0;
        }
        .studiox-contact-btn:hover::after {
            right: 0;
        }
        .studiox-contact-btn:hover {
            color: #000;
        }
        .studiox-contact-btn span {
            position: relative;
            z-index: 1;
        }

        .studiox-contact-btn::before,
        .studiox-contact-btn::after {
            content: '';
            position: absolute;
            background: #fff;
            transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .studiox-contact-btn::before {
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
        }

        .studiox-contact-btn::after {
            bottom: 0;
            right: -100%;
            width: 100%;
            height: 100%;
        }

        .studiox-contact-btn:hover::before {
            left: 0;
        }

        .studiox-contact-btn:hover::after {
            right: 0;
        }

        .studiox-contact-btn:hover {
            color: #000;
        }

        .studiox-contact-btn span {
            position: relative;
            z-index: 1;
        }

        /* Avatar CTA — matches .studiox-contact-btn visuals */
        .avatar-cta-btn {
                background: transparent;
    border: 3px solid #fff;
    color: #fff;
    padding: 8px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s;
    text-transform: uppercase;
        }

        .avatar-cta-btn::before,
        .avatar-cta-btn::after {
            content: '';
            position: absolute;
            background: #fff;
            z-index: -1;
            transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .avatar-cta-btn::before { top: 0; left: -100%; width: 100%; height: 100%; }
        .avatar-cta-btn::after  { bottom: 0; right: -100%; width: 100%; height: 100%; }
        .avatar-cta-btn:hover::before { left: 0; }
        .avatar-cta-btn:hover::after  { right: 0; }
        .avatar-cta-btn:hover { color: #000; }
        .avatar-cta-btn span { position: relative; z-index: 1; }
        .avatar-cta-btn:focus-visible { outline: 3px solid rgba(0,210,255,0.25); outline-offset: 3px; }
        /* ========================================
           Individual StudioX CTA Button Styles
           Each class mirrors .studiox-contact-btn visuals
           ======================================== */

        /* YouTube CTA button */
        .yt-cta-btn {
            background: transparent;
            border: 3px solid #fff;
            color: #fff;
            padding: 18px 45px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.25s;
            text-transform: uppercase;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .yt-cta-btn::before,
        .yt-cta-btn::after {
            content: '';
            position: absolute;
            background: #fff;
            z-index: -1;
            transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .yt-cta-btn::before { top: 0; left: -100%; width: 100%; height: 100%; }
        .yt-cta-btn::after  { bottom: 0; right: -100%; width: 100%; height: 100%; }
        .yt-cta-btn:hover::before { left: 0; }
        .yt-cta-btn:hover::after  { right: 0; }
        .yt-cta-btn:hover { color: #000; }
        .yt-cta-btn:focus-visible { outline: 3px solid rgba(0,210,255,0.25); outline-offset: 3px; }

        /* Timeline brand CTA (anchor styled as button) */
        .timeline-bar-brand {
            background: transparent;
            border: 3px solid #fff;
            color: #fff;
            padding: 18px 45px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.25s;
            text-transform: uppercase;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .timeline-bar-brand::before,
        .timeline-bar-brand::after {
            content: '';
            position: absolute;
            background: #fff;
            z-index: -1;
            transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .timeline-bar-brand::before { top: 0; left: -100%; width: 100%; height: 100%; }
        .timeline-bar-brand::after  { bottom: 0; right: -100%; width: 100%; height: 100%; }
        .timeline-bar-brand:hover::before { left: 0; }
        .timeline-bar-brand:hover::after  { right: 0; }
        .timeline-bar-brand:hover { color: #000; }
        .timeline-bar-brand:focus-visible { outline: 3px solid rgba(0,210,255,0.25); outline-offset: 3px; }

        /* Learning column plain button */
        .learning-visual-column > button {
            background: transparent;
            border: 3px solid #fff;
            color: #fff;
            padding: 7px 45px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.25s;
            text-transform: uppercase;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .learning-visual-column > button::before,
        .learning-visual-column > button::after {
            content: '';
            position: absolute;
            background: #fff;
            z-index: -1;
            transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .learning-visual-column > button::before { top: 0; left: -100%; width: 100%; height: 100%; }
        .learning-visual-column > button::after  { bottom: 0; right: -100%; width: 100%; height: 100%; }
        .learning-visual-column > button:hover::before { left: 0; }
        .learning-visual-column > button:hover::after  { right: 0; }
        .learning-visual-column > button:hover { color: #000; }
        .learning-visual-column > button:focus-visible { outline: 3px solid rgba(0,210,255,0.25); outline-offset: 3px; }

        /* YouTube info-card specific CTA (if nested) */
        .youtube-info-card .yt-cta-btn {
            background: #fff;
            border: 1px solid #e0e0e0;
            color: #000;
            padding: 18px 45px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.25s;
            text-transform: uppercase;
            display: inline-block;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .youtube-info-card .yt-cta-btn::before,
        .youtube-info-card .yt-cta-btn::after {
            content: '';
            position: absolute;
            background: #000;
            z-index: -1;
            transition: all 0.35s;
        }

        .youtube-info-card .yt-cta-btn::before { top: 0; left: -100%; width: 100%; height: 100%; }
        .youtube-info-card .yt-cta-btn::after  { bottom: 0; right: -100%; width: 100%; height: 100%; }
        .youtube-info-card .yt-cta-btn:hover::before { left: 0; }
        .youtube-info-card .yt-cta-btn:hover::after  { right: 0; }
        .youtube-info-card .yt-cta-btn:hover { color: #fff; }
        .youtube-info-card .yt-cta-btn:focus-visible { outline: 3px solid rgba(0,210,255,0.25); outline-offset: 3px; }

        /* Comparison CTA anchor in svc-morph section */
        .svc-morph-cta-section a {
            background: transparent;
            border: 3px solid #fff;
            color: #fff;
            padding: 18px 45px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.25s;
            text-transform: uppercase;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .svc-morph-cta-section a::before,
        .svc-morph-cta-section a::after {
            content: '';
            position: absolute;
            background: #fff;
            z-index: -1;
            transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .svc-morph-cta-section a::before { top: 0; left: -100%; width: 100%; height: 100%; }
        .svc-morph-cta-section a::after  { bottom: 0; right: -100%; width: 100%; height: 100%; }
        .svc-morph-cta-section a:hover::before { left: 0; }
        .svc-morph-cta-section a:hover::after  { right: 0; }
        .svc-morph-cta-section a:hover { color: #000; }
        .svc-morph-cta-section a:focus-visible { outline: 3px solid rgba(0,210,255,0.25); outline-offset: 3px; }

        /* Divider Line */
        .studiox-center-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, #666, transparent);
        }

        @media (max-width: 1024px) {
            .studiox-dual-layout {
                grid-template-columns: 1fr;
            }

            .studiox-creative-zone,
            .studiox-services-zone {
                padding: 60px 40px;
            }

            .studiox-hero-heading {
                font-size: 48px;
            }

            .studiox-watermark {
                font-size: 120px;
            }

            .studiox-center-line {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .studiox-creative-zone,
            .studiox-services-zone {
                padding: 40px 30px;
            }

            .studiox-hero-heading {
                font-size: 36px;
            }

            .studiox-hero-desc {
                font-size: 16px;
            }

            .studiox-statement {
                font-size: 18px;
            }

            .studiox-offer-title {
                font-size: 18px;
            }

            .studiox-contact-btn {
                padding: 20px 50px;
                font-size: 14px;
            }

            .studiox-watermark {
                font-size: 80px;
            }
        }


/* StudioX Workflow Section */
.studiox__workflow__wrapper {
    background: #000;
    color: #fff;
    border-radius: 0;
    padding: 80px 100px;
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ================================
   STUDIO X – VISUAL DOTS & HEADER
================================ */

.studiox__visual__dots {
    text-align: center;
    margin-bottom: 30px;
}

.studiox__visual__dots svg {
    width: 50px;
    height: 50px;
}

.studiox__primary__header {
    text-align: center;
    margin-bottom: 15px;
}

.studiox__primary__header h1 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.studiox__primary__header h1 .studiox__heading--accent {
    color: var(--theme-color);
}

.studiox__primary__header h1 .studiox__heading--rest {
    color: #fff;
    opacity: 0.95;
}

.studiox__supporting__text {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   TIMELINE LAYOUT
================================ */

.studiox__timeline__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 20px;
    gap: 40px;
}

.studiox__phase__card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    align-self:center;
}

.studiox__phase__index {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

/* ================================
   BADGE / ICON CIRCLES
================================ */

.studiox__badge__holder {
    width: 140px;
    height: 140px;
    margin: 0 auto 35px;
    position: relative;
}

.studiox__badge__outline {
    width: 100%;
    height: 100%;
    border: 2px dashed white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.studiox__badge__core img{
    width: 80px;
    height: 80px;
    /* background: #4fd1c5; */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Badge Colors by Step */
.studiox__phase__card:nth-child(2) .studiox__badge__core {
    background: #4299e1;
}

.studiox__phase__card:nth-child(3) .studiox__badge__core {
    background: #48bb78;
}

.studiox__graphic__element {
    color: white;
    font-size: 32px;
}

/* ================================
   PHASE TEXTS
================================ */

.studiox__phase__label {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.studiox__phase__details {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ================================
   CONNECTOR CURVES
================================ */

.studiox__connector__path {
    position: absolute;
    top: 180px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.studiox__connector__left {
    left: 10%;
    width: 38%;
}

.studiox__connector__right {
    left: 52%;
    width: 38%;
}

.studiox__connector__path path {
    stroke: rgba(255, 255, 255, 0.12);
}

/* ================================
   STRAIGHT ARROWS
================================ */

.studiox__card-arrow {
    position: absolute;
    top: 210px;
    width: 120px;
    height: 24px;
    z-index: 1;
    display: block;
}

.studiox__card-arrow path {
    stroke: rgba(255, 255, 255, 0.9);
}

.studiox__card-arrow.arrow-1 {
    left: 33%;
}

.studiox__card-arrow.arrow-2 {
    left: 66%;
}

/* Hide arrows on tablet/mobile */
@media (max-width: 1024px) {
    .studiox__card-arrow {
        display: none;
    }
}

/* ================================
   CUSTOM ICON DESIGNS
================================ */

/* Consultation Icon */
.studiox__icon__consultation {
    width: 40px;
    height: 40px;
    background: #4fd1c5;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.studiox__icon__consultation::before {
    content: '';
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.studiox__icon__consultation::after {
    content: '';
    width: 24px;
    height: 12px;
    background: white;
    border-radius: 12px 12px 0 0;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

/* Proposal Icon */
.studiox__icon__proposal {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
}

.studiox__icon__proposal::before {
    content: '';
    width: 28px;
    height: 36px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 2px;
    left: 6px;
}

.studiox__icon__proposal::after {
    content: '';
    width: 18px;
    height: 2px;
    background: #4299e1;
    position: absolute;
    top: 16px;
    left: 11px;
    box-shadow: 0 5px 0 #4299e1, 0 10px 0 #4299e1;
}

/* Launch Icon */
.studiox__icon__launch {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
}

.studiox__icon__launch::before {
    content: '';
    width: 16px;
    height: 28px;
    background: white;
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 4px;
    left: 12px;
}

.studiox__icon__launch::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    position: absolute;
    bottom: 4px;
    left: 12px;
}

/* ================================
   RESPONSIVE - MOBILE
================================ */

@media (max-width: 768px) {
    .studiox__workflow__wrapper {
        padding: 40px 20px;
        height: auto;
        min-height: 100vh;
    }

    .studiox__timeline__grid {
        flex-direction: column;
        gap: 60px;
    }

    .studiox__connector__path {
        display: none;
    }

    .studiox__primary__header h1 {
        font-size: 28px;
    }

    .studiox__supporting__text {
        font-size: 14px;
        margin-bottom: 60px;
    }
}


/* Form backdrop blur and placeholder color */
.studio351-form-wrapper {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 12px;
}

.studio351-form-control::placeholder,
.studio351-textarea::placeholder {
    color: #666 !important;
    opacity: 1;
}

.studio351-form-control,
.studio351-select,
.studio351-textarea {
    background: rgba(255,255,255,0.03);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
}

/* about page */
:root {
            --about-color-white: #FFFFFF;
            --about-color-black: #000000;
            --about-color-gray-light: #F5F5F5;
            --about-color-gray-mid: #808080;
            --about-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Ensure about page uses Inter font */
        .about-page,
        .about-page * {
            font-family: 'Inter', sans-serif;
        }

        .about-industry-card-caption {
            margin-top: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .about-team-note {
            margin-top: 1.25rem;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--theme-color);
            letter-spacing: 0.5px;
        }

        .about-team-note-text,
        .about-typewriter-text {
            display: inline-block;
            font-size: 27px;
            font-weight: 800;
        }

        .about-typewriter {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--theme-color);
        }

        .about-cta-description {
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: -44px auto 3rem;
            line-height: 1.8;
        }

        .about-btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 3rem;
            background: white;
            color: black;
            text-decoration: none;
            border-radius: 0;
            transition: all 0.4s ease;
            border: 2px solid white;
            position: relative;
            overflow: hidden;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes about-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes about-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes about-scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes about-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes about-slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes about-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes about-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .about-animate-on-scroll {
            opacity: 0;
        }

        .about-animate-on-scroll.about-animated {
            animation-duration: 0.8s;
            animation-fill-mode: forwards;
        }

        /* ===== SECTION 1: HERO ===== */
        .about-hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .about-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .about-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--about-color-white);
            padding: 0 1rem;
        }

        .about-hero-content h1 {
            /* font-size: clamp(2.5rem, 8vw, 6rem); */
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .about-hero-content p {
            /* font-size: clamp(1.2rem, 3vw, 2rem); */
            font-weight: 300;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .about-btn-hero {
            padding: 1rem 2rem;
            /* font-size: 1.1rem; */
            font-weight: 500;
            border: 2px solid var(--about-color-white);
            background: transparent;
            color: var(--about-color-white);
            transition: var(--about-transition-smooth);
            text-decoration: none;
            display: inline-block;
        }

        .about-btn-hero:hover {
            background: var(--about-color-white);
            color: var(--about-color-black);
        }

        .about-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 8px;
            animation: about-bounce 2s infinite;
        }

        .about-scroll-indicator::before {
            content: '';
            width: 6px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 3px;
        }

        /* ===== SECTION 2: STORY ===== */
        .about-story-section {
            min-height: 100vh;
            padding: 5rem 0;
        }

        .about-video-placeholder {
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: 10px;
        }

        .about-section-title {
            font-size: clamp(1rem, 3vw, 1.5rem);
             color: var(--theme-color) ;
            margin-bottom: 1.5rem;
        }


        /* ===== SECTION 3: SOLUTION ===== */
        .about-solution-section {
            position: relative;
            min-height: 100vh;
            background: var(--about-color-black);
            color: var(--about-color-white);
            display: flex;
            align-items: center;
            padding: 5rem 0;
            overflow: hidden;
        }

        .about-video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

.about-video-background video,
.about-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.35); /* Zoom to hide UI */
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    z-index: 1;
    pointer-events: none;
    object-fit: cover;
}

        .about-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.25);
            z-index: 1;
        }

        .about-solution-section .container {
            position: relative;
            z-index: 2;
        }

        .about-solution-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .about-solution-icon {
            position: relative;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-solution-icon svg {
            width: 100%;
            height: 100%;
            animation: about-pulse 2s infinite;
        }

        .about-solution-icon-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            filter: blur(30px);
            border-radius: 50%;
            animation: about-pulse 2s infinite;
        }

        .about-solution-text {
            text-align: left;
        }

        .about-solution-text h2 {
            font-size: 30px;
            line-height: 1.2;
            margin-bottom: 2rem;
            color: var(--theme-color);
        }

        .about-solution-text p {
            font-size: 1.125rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: white !important;
        }

        .about-solution-text .about-bold {
            font-weight: 700;
        }

        .about-solution-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--about-color-white), transparent);
            max-width: 600px;
            margin: 3rem auto 0;
        }

        /* ===== ABOUT PROBLEM & SOLUTION CINEMATIC SECTIONS ===== */

    .about-problem-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.about-problem-container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-problem-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-problem-content {
    flex: 1;
    max-width: 600px;
}

.about-problem-heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.theme-text {
    color: #fff;
    position: relative;
    display: inline-block;
}

.about-problem-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.about-problem-text strong {
    color: #fff;
    font-weight: 600;
}

.about-problem-video {
    flex: 1;
    max-width: 600px;
}

/* Container adjustment for masking */
.about-problem-video {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    transform: translateZ(0); /* Fix for border-radius clipping */
    aspect-ratio: 16 / 9;
}

.about-problem-video video,
.about-problem-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    border: none;
    box-shadow: none; /* Shadow handled by container */
    border-radius: 0; /* Radius handled by container */
}

/* Animation classes */
.about-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.about-fade-in-up:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-problem-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-problem-content,
    .about-problem-video {
        max-width: 100%;
    }
    
    .about-problem-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .about-problem-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .about-problem-container-fluid {
        padding: 0 20px;
    }
    
    .about-problem-heading {
        font-size: 2rem;
    }
    
    .about-problem-text {
        font-size: 1rem;
    }
}
.about-solution-alt-section {
    /* background: #fff; */
    color: #000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Grid Background */
.about-problem-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Orbs */
.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 2;
}

.about-orb-1 {
    width: 400px;
    height: 400px;
    background: #000;
    top: -100px;
    right: -100px;
}

.about-orb-2 {
    width: 300px;
    height: 300px;
    background: #333;
    bottom: -80px;
    left: -80px;
}

.about-solution-container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.about-solution-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-solution-content {
    flex: 1;
    max-width: 600px;
}

.about-problem-heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-main-heading-dark {
    color: white;
}

.theme-text {
    color: #000;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.about-solution-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.about-problem-video {
    flex: 1;
    max-width: 600px;
}

.about-problem-video video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Animation classes */
.about-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-solution-wrapper .about-fade-in-up:nth-child(1) {
    animation-delay: 0.2s;
}

.about-solution-wrapper .about-fade-in-up:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-solution-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-solution-content,
    .about-problem-video {
        max-width: 100%;
    }
    
    .about-problem-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .about-solution-alt-section {
        padding: 60px 0;
    }
    
    .about-solution-container-fluid {
        padding: 0 20px;
    }
    
    .about-problem-heading {
        font-size: 2rem;
    }
    
    .about-solution-text {
        font-size: 1rem;
    }
    
    .about-orb-1,
    .about-orb-2 {
        display: none;
    }
}
       
.about-solution-wrapper .about-fade-in-up:nth-child(1) {
    animation-delay: 0.2s;
}

.about-solution-wrapper .about-fade-in-up:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-solution-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-solution-content,
    .about-problem-video {
        max-width: 100%;
        order: unset;
    }
    
    .about-problem-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .about-solution-alt-section {
        padding: 60px 0;
    }
    
    .about-solution-container-fluid {
        padding: 0 20px;
    }
    
    .about-problem-heading {
        font-size: 2rem;
    }
    
    .about-solution-text {
        font-size: 1rem;
    }
    
    .about-orb-1,
    .about-orb-2 {
        display: none;
    }
}
       
        




        .about-solution-text {
            font-size: 1.125rem;
            line-height: 1.9;
            color: white;
            margin-bottom: 30px;
        }

        .about-solution-text strong {
            color: #000;
            font-weight: 700;
        }

        .about-video-parallelo {
            position: relative;
            perspective: 1000px;
        }

        .about-video-parallelo-inner {
            position: relative;
            transform: rotateY(-5deg) rotateX(2deg);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 35px;
            overflow: hidden;
            box-shadow: 
                -20px 20px 60px rgba(0,0,0,0.15),
                20px -20px 60px rgba(0,0,0,0.05);
        }

        .about-video-parallelo:hover .about-video-parallelo-inner {
            transform: rotateY(0deg) rotateX(0deg) scale(1.02);
            box-shadow: 0 40px 80px rgba(0,0,0,0.2);
        }

        .about-solution-alt-section .about-problem-video-inner {
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            border: 3px solid #000;
        }

        .about-fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            animation: about-fadeInUp 1s ease forwards;
        }

        @keyframes about-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .about-problem-heading {
                font-size: 3rem;
            }

            .about-problem-text,
            .about-solution-text {
                font-size: 1.2rem;
            }

            .about-problem-video-inner {
                height: 350px;
            }

            .about-problem-section,
            .about-solution-alt-section {
                padding: 0;
            }
        }

        @media (max-width: 768px) {
            .about-problem-heading {
                font-size: 2.2rem;
            }

            .about-problem-text,
            .about-solution-text {
                font-size: 1.1rem;
            }

            .about-problem-video-inner {
                height: 280px;
            }

            .about-problem-section,
            .about-solution-alt-section {
                padding: 0;
            }
        }

        @media (max-width: 576px) {
            .about-problem-heading {
                font-size: 1.8rem;
                letter-spacing: -1px;
            }
            .about-solution-wrapper{
                flex-direction: column-reverse;
                margin-top: 20px;
            }


            .about-problem-video-inner {
                height: 220px;
            }

            .about-problem-glass-card,
            .about-solution-glass-card {
                padding: 25px;
            }
        }

        /* Pillar Cards Styling */
        .about-pillar-card {
            background: rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .about-pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .about-pillar-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .about-pillar-card:hover::before {
            opacity: 1;
        }

        .about-pillar-icon img{
          
            height: 80px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: rgba(255, 255, 255, 0.1); */
            /* border-radius: 50%; */
            transition: all 0.4s ease;
            /* padding: 6px; */
        }

       


        .about-pillar-card:hover .about-pillar-icon svg {
            stroke: #3b82f6;
            transform: rotate(5deg);
        }

        .about-pillar-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--about-color-white);
            letter-spacing: -0.01em;
        }

        .about-pillar-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
        }

        .about-pillar-highlight {
            font-weight: 600 !important;
            color: var(--about-color-white) !important;
            font-size: 2.05rem !important;
            margin-top: 1.5rem !important;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--theme-color)  !important;
            background-color: rgba(0, 0, 0, 0.6); 
            align-items: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== SECTION 4: INDUSTRIES ===== */
        .about-industry-section {
            min-height: 100vh;
            padding: 5rem 0;
            background: black;
        }

        .about-industry-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .about-industry-header h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            color: var(--theme-color);
        }

        .about-industry-card {
            position: relative;
            aspect-ratio: 1/1;
            border: 2px solid var(--about-color-black);
            overflow: hidden;
            cursor: pointer;
            transition: var(--about-transition-smooth);
        }

        .about-industry-card:hover {
            transform: scale(1.05);
        }

        .about-industry-card img,
        .about-industry-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: var(--about-transition-smooth);
        }

        .about-industry-card:hover img,
        .about-industry-card:hover video {
            filter: grayscale(0%);
        }

        .about-industry-card-overlay {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .about-industry-card:hover .about-industry-card-overlay {
            transform: translateY(0);
        }

        .about-industry-card-overlay h3 {
            color: var(--theme-color);
            font-size: 1.6rem;
            margin: 0;
        }

        .about-industry-card-overlay p {
            color: #000;
            font-size: 0.9rem;
            margin: 0.5rem 0 0;
        }

        /* ===== SECTION 5: BENEFITS ===== */
        .about-benefits-section {
            position: relative;
            min-height: 100vh;
            background: var(--about-color-black);
            color: var(--about-color-white);
            padding: 6rem 0;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .about-benefits-section .container {
            position: relative;
            z-index: 2;
        }

        .about-benefits-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .about-benefits-header h2 {
            font-size: clamp(2rem, 5vw, 3rem);
           
        }

        .about-subtitle {
            /* font-size: 1.2rem; */
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
            font-weight: 300;
        }

        .about-comparison-container {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-comparison-side {
            flex: 1;
            border-radius: 28px;
            padding: 3.5rem 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .about-comparison-side::before{
            content:'';
            position:absolute;
            inset:12px;
            border-radius:22px;
            border:1px solid rgba(255,255,255,0.08);
            pointer-events:none;
        }

        .about-comparison-side h3 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
            color: #fff;
        }

        .about-traditional{
            background: rgba(0, 0, 0, 0.85);
            color: rgba(255,255,255,0.85);
            border: 1px solid rgba(0, 255, 255, 0.12);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
        }

        .about-studiox{
            background: rgba(0, 0, 0, 0.85);
            color: rgba(255,255,255,0.95);
            border: none;
            box-shadow: 0 45px 90px rgba(5, 198, 250, 0.45);
        }

        .about-comparison-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-comparison-item:last-child {
            margin-bottom: 0;
        }

        .about-comparison-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
        }

        .about-traditional .about-comparison-icon{
            background: rgba(0,0,0,0.4);
            border-color: rgba(255,255,255,0.25);
        }

        .about-studiox .about-comparison-icon{
            background: rgba(255,255,255,0.18);
            border-color: rgba(255,255,255,0.45);
        }

        .about-comparison-icon img {
            width: 26px;
            height: 26px;
            color: #fff;
            opacity: 0.9;
        }

        .about-comparison-value {
            font-size: 1.05rem;
            font-weight: 600;
            color: inherit;
            margin: 0;
        }

        .about-comparison-divider {
            width: 90px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-comparison-divider::before,
        .about-comparison-divider::after{
            content:'';
            position:absolute;
            width:2px;
            height:80%;
            background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
        }

        .about-comparison-divider span {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        @media (max-width: 992px) {
            .about-comparison-container{
                flex-direction:column;
                gap:1.5rem;
            }

            .about-comparison-divider{
                width:100%;
                height:90px;
            }

            .about-comparison-divider::before,
            .about-comparison-divider::after{
                width:80%;
                height:2px;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            }
        }

/* ========================================
     VIDEO SHOWCASE (Custom styles for the 2-column showcase)
     ======================================== */
.showcase-grid {
    /* display: flex; */
    gap: 1.5rem;
    align-items: flex-start;
}
.showcase-column {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.video-card.large {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 420px; /* increased tile height */
    background: #000;
}
.video-card.large video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}
.play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.autoplay-card video {
    /* keep playing but slightly lower z to allow overlays */
    z-index: 1;
}

@media (max-width: 768px) {
    .showcase-grid { flex-direction: column; }
    .video-card.large { height: 260px; }
}
        

        /* legacy overrides cleaned up */

        /* ===== SECTION 6: PROMISE ===== */
        .about-promise-section {
            min-height: 100vh;
            padding: 5rem 0;
            background: var(--about-color-white);
            display: flex;
            align-items: center;
            color: black;
        }

        .about-promise-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .about-promise-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
        }

        .about-promise-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--about-color-black);
            margin-bottom: 2rem;
        }

        .about-promise-check {
            width: 32px;
            height: 32px;
            border: 2px solid var(--about-color-black);
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.25rem;
        }

        .about-promise-check svg {
            width: 20px;
            height: 20px;
            stroke-width: 3;
        }

        .about-promise-item p {
            font-size: 1rem;
            font-weight: 500;
            margin: 0;
        }

        /* Promise Cards Styling */
        .about-promise-card {
            background: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 2.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

.section-heading{
    font-weight: bolder;
    font-size: 30px;
}


.about-promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 194, 255, 1) 0%,      /* strong theme color */
        rgba(0, 194, 255, 0.5) 50%,   /* mid fade */
        rgba(0, 194, 255, 0.2) 100%   /* soft fade */
    );
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}


        .about-promise-card:hover {
            transform: translateY(-5px);
            border-color: #3b82f6;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
        }

        .about-promise-card:hover::before {
            transform: scaleY(1);
        }

        .about-promise-icon-wrapper {
            flex-shrink: 0;
        }

        .about-promise-card .about-promise-check {
            width: 48px;
            height: 48px;
            border: 2px solid #3b82f6;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .about-promise-card .about-promise-check svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 3;
        }

        .about-promise-card:hover .about-promise-check {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }

        .about-promise-content {
            flex: 1;
        }

        .about-promise-content h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #111827;
            letter-spacing: -0.01em;
        }

        .about-promise-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: #6b7280;
            margin: 0;
            font-weight: 400;
        }

        .about-promise-card:hover .about-promise-content h4 {
            color: #3b82f6;
        }

        /* ===== SECTION 7: TEAM ===== */
        /* ===== SECTION 7: TEAM ===== */
.about-team-section {
    position: relative;
    min-height: 100vh;
    background: var(--about-color-black);
    color: var(--about-color-white);
    padding: 5rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-team-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-team-video-background video,
.about-team-video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.35); /* Zoom to hide UI */
    pointer-events: none;
}
.about-team-section .container {
    position: relative;
    z-index: 2;
}

.about-team-image-wrapper {
    position: relative;
    margin-bottom: 4rem;
}

.about-team-image-overlay {
    position: relative;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-team-image-overlay h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    padding: 0 1rem;
    margin: 0;
}

.about-team-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 3rem 2rem;
    border-radius: 20px;
}

.about-team-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

        .about-btn-cta {
            padding: 1.5rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            background: var(--about-color-white);
            color: var(--about-color-black);
            border: none;
            transition: var(--about-transition-smooth);
            text-decoration: none;
            display: inline-block;
            margin-top: 2rem;
        }

        .about-btn-cta:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }

        /* ===== RESPONSIVE ADJUSTMENTS ===== */
        @media (max-width: 768px) {
            .about-solution-icons {
                gap: 1.5rem;
            }

            .about-solution-icon {
                width: 80px;
                height: 80px;
            }

            .about-comparison-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .about-comparison-divider {
                transform: rotate(90deg);
            }
        }

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   All Devices Support
   ======================================== */

/* Extra Small Devices (Phones, 320px and up) */
@media (max-width: 480px) {
    /* Typography */
    h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    
    /* Video Banner - Mobile */
    .video-banner {
        height: 40vh;
        min-height: 250px;
        margin-bottom: 0;
    }
    
    .video-banner video {
        object-fit: cover;
        object-position: center;
    }
    
    .video-content h1 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
    
    /* Service Page - Brand Cinema Split Mobile */
    .brand-cinema-split {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        margin-top: 0;
        gap: 0;
    }
    
    .brand-story-panel {
        width: 100%;
        padding: 30px 20px;
        order: 1;
        position: relative;
        margin-top: 0;
        background: #000;
    }
    
    .brand-video-wall {
        position: relative;
        width: 100%;
        height: 350px;
        order: 2;
        margin: 0;
        overflow: hidden;
    }
    
    .brand-video-wall video,
    .brand-video-wall iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .brand-story-panel h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .brand-story-panel .tagline-brand {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .brand-story-panel .desc-brand {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* YouTube Video Production - Mobile Overlap */
    .youtube-deck-layout {
        padding: 60px 0;
    }
    
    .youtube-deck-container {
        position: relative;
    }
    
    .youtube-media-stage {
        height: 300px;
        margin-bottom: -80px;
        position: relative;
        z-index: 1;
    }
    
    .youtube-screen-frame {
        border-radius: 15px;
    }
    
    .youtube-info-card {
        position: relative;
        z-index: 2;
        margin-top: -80px;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .youtube-info-card h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 12px;
    }
    
    .youtube-info-card .sub-yt {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .youtube-info-card .desc-yt {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    /* AI Capabilities Section - Mobile */
   
    
    /* Feature Rows */
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
        padding: 0;
        width: 100%;
    }
    
    .feature-video-wrapper {
        height: 280px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: block;
        visibility: visible;
    }
    
    .feature-video-wrapper .background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 0;
    }
    
    .feature-video-wrapper .video-card-overlay {
        background: transparent;
        pointer-events: none;
        z-index: 1;
    }
    
    .feature-content {
        padding: 0 15px;
        width: 100%;
        text-align: left;
    }
    
    .feature-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    /* Video Controls - Mobile */
    .video-controls {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .ai-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        bottom: 60px;
        white-space: nowrap;
    }
    
    /* Container adjustments */
    .ai-capabilities-section .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Ensure feature rows don't overflow */
    .feature-row {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Force video visibility on mobile */
    .feature-video-wrapper video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    /* Ensure video wrapper has proper background */
    .feature-video-wrapper {
        background: #000;
        min-height: 280px;
    }
    
    /* Service page navbar fix - ensure transparent on mobile */
    .navbar-content {
        background: transparent !important;
    }
    
    .navbar-content.scrolled {
        background: rgba(10, 10, 10, 0.95) !important;
    }
    
    /* Better text wrapping */
    .feature-content p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Link styling in content */
    .feature-content p a {
        display: inline-block;
        margin-top: 10px;
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .showcase-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    /* Gallery */
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    /* Service Page */
    .services-hero-zone {
        padding: 60px 20px 40px;
    }
    
    .services-hero-zone h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .services-hero-zone p {
        font-size: 1rem;
    }
    
    .brand-story-panel {
        padding: 40px 20px;
    }
    
    .brand-story-panel h2 {
        font-size: 1.8rem;
    }
    
    .brand-story-panel .tagline-brand {
        font-size: 1.1rem;
    }
    
    .brand-story-panel .desc-brand {
        font-size: 0.95rem;
    }
    
    .feature-grid-brand {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item-brand {
        padding: 15px;
    }
    
    .feature-item-brand h4 {
        font-size: 0.9rem;
    }
    
    .timeline-bar-brand {
        font-size: 0.75rem;
        padding: 10px 15px;
    }
    
    /* YouTube Section */
    .youtube-info-card {
        padding: 30px 20px;
    }
    
    .youtube-info-card h2 {
        font-size: 1.6rem;
    }
    
    .youtube-info-card .sub-yt {
        font-size: 1rem;
    }
    
    .youtube-info-card .desc-yt {
        font-size: 0.95rem;
    }
    
    .yt-benefits-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .yt-benefit-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    /* Avatar Section */
    .avatar-tech-panel {
        padding: 30px 20px;
    }
    
    .avatar-tech-panel h2 {
        font-size: 1.6rem;
    }
    
    .avatar-tech-panel .tech-subtitle {
        font-size: 1rem;
    }
    
    .avatar-tech-panel .desc-avatar {
        font-size: 0.95rem;
    }
    
    .tech-specs-list {
        font-size: 0.9rem;
    }
    
    .avatar-use-pills {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .avatar-pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    /* Learning Section */
    .learning-content-column h2 {
        font-size: 1.6rem;
    }
    
    .learning-content-column .magazine-subtitle {
        font-size: 1.2rem;
    }
    
    .learning-content-column .desc-learning {
        font-size: 0.95rem;
    }
    
    .learning-feature-row h4 {
        font-size: 0.95rem;
    }
    
    /* Service Morph */
    .svc-morph-container-main {
        padding: 40px 15px;
    }
    
    .svc-morph-header-section h2 {
        font-size: 1.5rem;
    }
    
    .svc-morph-header-section p {
        font-size: 0.9rem;
    }
    
    .svc-morph-grid-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .svc-morph-selector-column {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
    }
    
    .svc-morph-selector-card {
        min-width: 120px;
        padding: 15px 10px;
    }
    
    .svc-morph-selector-number {
        font-size: 0.9rem;
    }
    
    .svc-morph-selector-label {
        font-size: 0.75rem;
    }
    
    
    .svc-morph-display-panel {
        padding: 40px 20px;
        min-height: 400px;
    }
    
    .svc-morph-title-main {
        font-size: 1.5rem;
    }
    
    .svc-morph-description-text {
        font-size: 0.95rem;
    }
    
    .svc-morph-cta-section {
        padding: 40px 20px;
    }
    
    .svc-morph-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .svc-morph-cta-section p {
        font-size: 0.95rem;
    }
    
    /* Learning Visual Boxes */
    .learning-visual-column {
        grid-template-columns: 1fr;
    }
    
    .learning-visual-box {
        min-height: 250px;
    }
    
    /* Magazine Layout */
    .magazine-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .learning-content-column {
        position: relative;
        top: 0;
    }
    
    /* Avatar Visual Zone */
    .avatar-visual-zone {
        min-height: 300px;
    }
    
    .avatar-showcase-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* YouTube Media Stage */
    .youtube-media-stage {
        height: 300px;
        margin-bottom: 0;
    }
    
    .youtube-deck-layout {
        padding: 60px 0;
    }
    
    /* Contact Page */
    .studio351-heading {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .studio351-subheading {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .studio351-form-wrapper {
        padding: 30px 20px;
    }
    
    .studio351-form-title {
        font-size: 1.3rem;
    }
    
    .studio351-form-subtitle {
        font-size: 0.9rem;
    }
    
    .studio351-direct-title {
        font-size: 1.5rem;
    }
    
    .studio351-contact-card {
        padding: 25px 20px;
    }
    
    .studio351-faq-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .studio351-faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    /* About Page */
    .about-section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .about-section-text {
        font-size: 0.95rem;
    }
    
    .about-solution-text h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .about-solution-text p {
        font-size: 0.95rem;
    }
    
    .about-industry-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .about-comparison-side h3 {
        font-size: 1.3rem;
    }
    
    .about-comparison-value {
        font-size: 1.2rem;
    }
    
    .about-promise-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .about-promise-item p {
        font-size: 0.95rem;
    }

    .about-pillar-card {
        padding: 2rem 1.5rem;
    }

    .about-pillar-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .about-pillar-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-pillar-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-pillar-card p {
        font-size: 0.95rem;
    }

    .about-promise-card {
        padding: 2rem 1.5rem;
    }

    .about-promise-card .about-promise-check {
        width: 40px;
        height: 40px;
    }

    .about-promise-card .about-promise-check svg {
        width: 20px;
        height: 20px;
    }

    .about-promise-content h4 {
        font-size: 1.25rem;
    }

    .about-promise-content p {
        font-size: 0.95rem;
    }
    
    .about-team-image-overlay h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .about-team-text p {
        font-size: 0.95rem;
    }
    
    /* Video Showcase */
    /* .video-showcase-section {
        padding: 40px 15px;
    } */
    
    .showcase-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .video-grid {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .video-grid.large-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-grid.small-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        height: 250px;
        min-height: 200px;
    }
    
    .video-card video {
        width: 100%;
        height: 100%;
    }
    
    /* Custom Solutions */
    .studiox-dual-layout {
        flex-direction: column;
    }
    
    .studiox-creative-zone,
    .studiox-services-zone {
        width: 100%;
        padding: 40px 20px;
    }
    
    .studiox-hero-heading {
        font-size: clamp(2rem, 10vw, 3rem)!important;
    }
    
    .studiox-hero-desc {
        font-size: 0.95rem;
    }
    
    .studiox-statement {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    /* Container Padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* AI Capabilities Section */
    .ai-capabilities-section {
        /* padding: 50px 0; */
    }
    
    /* Buttons */
    .btn,
    .cta-button,
    .about-btn-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Small Devices (Landscape Phones, 481px to 576px) */
@media (min-width: 481px) and (max-width: 576px) {
    .video-banner {
        height: 55vh;
    }
    
    .feature-video-wrapper {
        height: 300px;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-story-panel {
        padding: 50px 25px;
    }
    
    .feature-grid-brand {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .svc-morph-display-panel {
        padding: 50px 25px;
    }
    
    .avatar-visual-zone {
        min-height: 350px;
    }
    
    .youtube-media-stage {
        height: 350px;
    }
    
    .video-grid.small-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-card {
        height: 280px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
}

/* Medium Devices (Tablets, 577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .video-banner {
        height: 60vh;
    }
    
    .feature-video-wrapper {
        height: 350px;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid.large-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid.small-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-card {
        height: 300px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .brand-story-panel {
        padding: 60px 40px;
    }
    
    .svc-morph-grid-layout {
        flex-direction: row;
    }
    
    .svc-morph-selector-column {
        flex-direction: column;
        width: 200px;
    }
    
    .avatar-showcase-wrapper {
        grid-template-columns: 1fr;
    }
    
    .avatar-visual-zone {
        min-height: 400px;
    }
    
    .youtube-media-stage {
        height: 400px;
    }
    
    .magazine-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Devices (Small Desktops, 769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .feature-row {
        gap: 40px;
    }
    
    .feature-video-wrapper {
        max-width: 500px;
        height: 400px;
    }
    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-grid.small-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-story-panel {
        padding: 70px 50px;
    }
    
    .brand-story-panel h2 {
        font-size: 2.5rem;
    }
    
    .svc-morph-display-panel {
        padding: 60px 40px;
    }
    
    .avatar-showcase-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .avatar-visual-zone {
        min-height: 500px;
    }
    
    .youtube-media-stage {
        height: 500px;
    }
    
    .magazine-layout-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Extra Large Devices (Large Desktops, 993px and up) */
@media (min-width: 993px) {
    .container {
        max-width: 1200px;
    }
    
    .feature-row {
        gap: 60px;
    }
    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .video-banner {
        height: 100vh;
    }
    
    .feature-video-wrapper {
        height: 300px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .video-banner video,
    .feature-video-wrapper video {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for mobile */
    .btn,
    .cta-button,
    .about-btn-cta,
    .play-pause-btn,
    .mute-unmute-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    /* Disable hover effects on touch devices */
    .gallery img:hover {
        transform: none;
    }
    
    .feature-item-brand:hover,
    .custom-service-card:hover {
        transform: none;
    }
    
    /* Better spacing for touch */
    .nav-item {
        padding: 12px 0;
    }
}

/* Very Small Devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .video-banner {
        height: 40vh;
        min-height: 250px;
    }
    
    .feature-video-wrapper {
        height: 200px;
    }
    
    .brand-story-panel,
    .youtube-info-card,
    .avatar-tech-panel {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .video-banner,
    .feature-video-wrapper,
    video {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .navbar,
    .mobile-menu-canvas,
    .mobile-overlay {
        display: none;
    }
}
.studio351-video-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.studio351-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.studio351-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio351-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 2;
}

.studio351-video-section .col-lg-6 {
    position: relative;
    z-index: 3;
    padding: 60px 30px;
}

.studio351-form-wrapper {
    background: transparent;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .studio351-video-section {
        min-height: auto;
    }
    
    .studio351-video-section .col-lg-6 {
        padding: 40px 20px;
    }
}

/* White placeholders for inputs and textarea */
.studio351-form-control::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}

.studio351-form-control:-ms-input-placeholder {
    color: white; /* Internet Explorer 10-11 */
}

.studio351-form-control::-ms-input-placeholder {
    color: white; /* Microsoft Edge */
}

/* White placeholder for select */
.studio351-select {
    color: white;
}

.studio351-select option {
    color: #333; /* Dark color for dropdown options */
    background: white;
}

/* Optional: If you want slightly transparent white */
.studio351-form-control::placeholder {
    color: rgba(255, 255, 255, 0.9);
}





/* out commitment section in about page */


.benefits-section {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            background: #000;
            color: #fff;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .benefits-section *,
        .benefits-section *::before,
        .benefits-section *::after {
            box-sizing: border-box;
        }

        .benefits-section .animated-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .benefits-section .animated-backdrop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 194, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 20%, rgba(0, 150, 255, 0.08) 0%, transparent 40%);
            animation: benefits-gradientShift 15s ease infinite;
        }

        @keyframes benefits-gradientShift {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-30px, 50px) scale(0.9);
            }
        }

        .benefits-section .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .benefits-section .light-particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(0, 194, 255, 0.6);
            border-radius: 50%;
            animation: benefits-float linear infinite;
            box-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
        }

        @keyframes benefits-float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

        .benefits-section .main-wrapper {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits-section .page-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .benefits-section .page-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            position: relative;
            display: inline-block;
            margin: 0;
        }

        .benefits-section .page-header h2::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -40px;
            /* width: 80px; */
            height: 4px;
            background: #fff;
        }

        .benefits-section .benefits-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .benefits-section .benefit-card {
            position: relative;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            gap: 20px;
            padding: 24px 28px;
            background: rgba(0, 0, 0, 0.75);
            border-radius: 18px;
            border: 1px solid rgba(0, 194, 255, 0.25);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
            overflow: hidden;
        }

        .benefits-section .benefit-card::before {
            content: '';
            position: absolute;
            left: 36px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, rgba(0,194,255,0.4), transparent);
            opacity: 0.6;
        }

        .benefits-section .sequence-number {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
            margin-right: 16px;
            background: linear-gradient(135deg, #fff 0%, #666 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.3;
        }

        .benefits-section .check-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 194, 255, 0.12);
            border: 1px solid rgba(0, 194, 255, 0.3);
            box-shadow: 0 0 12px rgba(0, 194, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 4px;
            position: relative;
            transition: all 0.4s ease;
        }

        .benefits-section .benefit-card:hover .check-icon {
            transform: rotate(360deg);
            border-color: rgba(0, 194, 255, 0.5);
            background: rgba(0, 194, 255, 0.2);
            box-shadow: 0 0 25px rgba(0, 194, 255, 0.4);
        }

        .benefits-section .check-icon svg {
            width: 20px;
            height: 20px;
            stroke: rgba(0, 194, 255, 1);
            transition: stroke 0.4s ease;
        }

        .benefits-section .benefit-card:hover .check-icon svg {
            stroke: rgba(0, 194, 255, 1);
        }

        .benefits-section .benefit-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        .benefits-section .benefit-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(222, 244, 255, 0.8);
            font-weight: 400;
        }

        .benefits-section .hover-underline {
            display: none;
        }

        @media (max-width: 768px) {
            .benefits-section {
                padding: 60px 20px;
            }

            .benefits-section .page-header {
                margin-bottom: 60px;
            }

            .benefits-section .page-header h2::before {
                left: 50%;
                transform: translateX(-50%);
                top: -30px;
            }

            .benefits-section .benefit-card {
                flex-direction: row;
                padding: 20px 20px;
            }
        }

        @keyframes benefits-fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .benefits-section .benefit-card {
            animation: benefits-fadeIn 0.6s ease backwards;
        }

        .benefits-section .benefit-card:nth-child(1) { animation-delay: 0.1s; }
        .benefits-section .benefit-card:nth-child(2) { animation-delay: 0.2s; }
        .benefits-section .benefit-card:nth-child(3) { animation-delay: 0.3s; }
        .benefits-section .benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* what you get */
.traingles{
    margin:0;
    height:100vh;
    position: relative;
}
svg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.design{
    margin:0;
    display:flex;
    justify-content:center;
    align-items:center;
}

.box{
    position:relative;
    width:700px;
    height:600px;
    background:black;
    overflow:hidden;
    right: 10%;
}

/* COMMON STYLE FOR TRIANGLES */
.tri{
    position:absolute;
    width:100%;
    height:100%;
    color:white;
    transition:opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:scale(0.9);
    filter:blur(4px);
}

.tri.tri-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:scale(1);
    filter:blur(0);
}

.traingles.tri-show-all .tri{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.tri:hover video{
    filter:grayscale(0%);
}

.tri-content{
    position:absolute;
    z-index:5;
    text-align:center;
    pointer-events:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

/* Position content in middle of each triangle */
.tri1 .tri-content{
    left:-5%;
    top:50%;
    transform:translateY(-50%);
    width: 220px;
}

.tri2 .tri-content{
    left:50%;
    top:9%;
    transform:translateX(-50%);
}

.tri3 .tri-content{
    left:50%;
    bottom:15%;
    transform:translateX(-50%);
}

.tri4 .tri-content{
    right:-8%;
    top:50%;
    transform:translateY(-50%);
    width: 220px;
}

.tri-icon{
    font-size:3rem;
    margin-bottom:10px;
}

.tri-heading{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    line-height:23px;
    color: var(--theme-color);
}

.tri-text{
    font-size:15px;
    font-weight:400;
    opacity:0.9;
    line-height:23px;
    text-align: center;
}

/* Studio Text on Left Side */
.studio-text h1{
    position:absolute;
    left:-120px;
    top:50%;
    transform:translateY(-50%);
    font-size:8rem;
    font-weight:900;
    color:white;
    letter-spacing:5px;
    z-index:15;
    text-transform:uppercase;
    writing-mode:vertical-rl;
    text-orientation:mixed;
}

/* 4 PERFECT NON-OVERLAPPING TRIANGLES */

/* TOP LEFT */
.tri1{
    clip-path: polygon(0 0, 50% 50%, 0 100%);
}

/* TOP RIGHT */
.tri2{
    clip-path: polygon(100% 0, 50% 50%, 0 0);
}

/* BOTTOM LEFT */
.tri3{
    clip-path: polygon(0 100%, 50% 50%, 100% 100%);
}

/* BOTTOM RIGHT */
.tri4{
    clip-path: polygon(100% 100%, 50% 50%, 100% 0);
}

/* WHITE X LINES WITH VIDEO */
.line{
    position:absolute;
    top:50%;
    left:50%;
    width:120%;
    height:40px;
    background:white;
    transform-origin:center;
    z-index:10;
    pointer-events:none;
    overflow:hidden;
}

.line video{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    min-width:200%;
    min-height:200%;
    object-fit:cover;
    z-index:1;
}

.line1{ 
    transform:translate(-50%, -50%) rotate(45deg);
}

.line1 video{
    transform:translate(-50%, -50%) rotate(-45deg);
}

.line2{ 
    transform:translate(-50%, -50%) rotate(-45deg);
}

.line2 video{
    transform:translate(-50%, -50%) rotate(45deg);
}

.video-text {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-text video {
    position: absolute;
    top: 50%;
    left: 34%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    
    /* mask video inside text - correct syntax */
    -webkit-mask: url(#mask);
    mask: url(#mask);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.data-hide {
    display: none;
}






/* ========================================
   TABLET RESPONSIVE (768px - 992px)
   ======================================== */
@media (max-width: 992px) and (min-width: 769px) {
    .traingles{
        height: auto;
        min-height: 100vh;
        padding: 60px 30px;
    }

    .design{
        flex-direction: column;
        gap: 30px;
    }

    .box{
        width: 90%;
        max-width: 600px;
        height: 500px;
        right: 0;
        margin: 0 auto;
    }

    .tri-content{
        padding: 20px 16px;
    }

    .tri1 .tri-content,
    .tri4 .tri-content{
        width: 200px;
    }

    .tri-heading{
        font-size: 18px;
    }

    .tri-text{
        font-size: 14px;
        line-height: 20px;
    }

    .video-text{
        height: 70vh;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 8rem;
    }
}

/* ========================================
   MOBILE RESPONSIVE (Below 768px)
   ======================================== */
@media (max-width: 768px) {
    .traingles{
        height: auto !important;
        padding: 40px 15px !important;
        min-height: auto !important;
    }

    .design{
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    /* Hide video text section on mobile */
    .video-text{
        display: none !important;
    }

    .box{
        position: static !important;
        width: 100% !important;
        height: auto !important;
        right: 0 !important;
        background: transparent !important;
        overflow: visible !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Reset triangle clips on mobile - show as cards */
    .tri{
        position: static !important;
        width: 100% !important;
        height: auto !important;
        clip-path: none !important;
        background: rgba(0, 0, 0, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 16px !important;
        padding: 20px !important;
        margin-bottom: 0 !important;
        transform: none !important;
        filter: none !important;
        min-height: 140px !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .tri.tri-active,
    .traingles.tri-show-all .tri{
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Hide videos on mobile for performance */
    .tri video{
        display: none !important;
    }

    .tri-content{
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        text-align: left !important;
        align-items: flex-start !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .tri-icon{
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    .studiox-creative-zon{
        height: 100% !important;
    }

    .tri-heading{
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }

    .tri-text{
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
        opacity: 0.85 !important;
    }

    /* Hide X lines on mobile */
    .line{
        display: none !important;
    }

    h1 {
        font-size: 4rem !important;
        letter-spacing: 5px !important;
        /* -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5) !important; */
    }

    .studio-text{
        display: none !important;
    }

    /* Heading adjustments */
    .about-main-heading{
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }
}

/* ========================================
   SMALL MOBILE (Below 480px)
   ======================================== */
@media (max-width: 480px) {
    .traingles{
        padding: 30px 12px !important;
    }

    .tri{
        padding: 18px !important;
        min-height: 130px !important;
        gap: 0 !important;
    }

    .tri-icon{
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }

    .tri-heading{
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    .tri-text{
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    h1 {
        font-size: 3rem !important;
        letter-spacing: 3px !important;
    }

    .about-main-heading{
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (Below 375px)
   ======================================== */
@media (max-width: 375px) {
    .traingles{
        padding: 25px 10px !important;
    }

    .tri{
        padding: 15px !important;
        min-height: 120px !important;
        border-radius: 12px !important;
    }

    .tri-icon{
        font-size: 1.5rem !important;
    }

    .tri-heading{
        font-size: 0.95rem !important;
    }

    .tri-text{
        font-size: 0.8rem !important;
    }

    .about-main-heading{
        font-size: 1.3rem !important;
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */
@media (max-height: 600px) and (orientation: landscape) and (max-width: 992px) {
    .traingles{
        height: auto !important;
        min-height: auto !important;
        padding: 30px 15px !important;
    }

    .video-text{
        display: none !important;
    }

    .tri{
        min-height: 100px !important;
    }
}

/* ========================================
   LARGE DESKTOP (Above 1400px)
   ======================================== */
@media (min-width: 1400px) {
    .box{
        width: 800px;
        height: 700px;
    }

    .tri1 .tri-content,
    .tri4 .tri-content{
        width: 260px;
    }

    .tri-heading{
        font-size: 22px;
    }

    .tri-text{
        font-size: 16px;
    }

    h1 {
        font-size: 14rem;
    }
}
.cta-zone{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


/* contact -form */
   .prj-inquiry-zone {
            padding: 80px 20px;
            background: #000;
        }

        .prj-max-bound {
            max-width: 1400px;
            margin: 0 auto;
        }

        .prj-title-block {
            text-align: center;
            margin-bottom: 60px;
        }

        .prj-main-title {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .prj-sub-caption {
            font-size: 1.25rem;
            color: #999;
        }

        .prj-dual-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 700px;
        }

        .prj-media-panel {
            position: relative;
            overflow: hidden;
            background: #111;
        }
        .prj-media-panel video {
             width: 100%;
             height: 100%;
             object-fit: cover;
             filter: grayscale(100%) contrast(1.1);
         }
 
         .prj-media-panel iframe {
             position: absolute;
             top: 50%;
             left: 50%;
             width: 100vw;
             height: 56.25vw; /* 16:9 ratio */
             min-height: 100%;
             min-width: 177.77vh; /* 16:9 ratio based on height */
             transform: translate(-50%, -50%) scale(1.35); /* Zoom in to hide black bars/controls */
             pointer-events: none; /* Prevent clicks on background video */
             border: none;
         }
 
         @media (max-aspect-ratio: 16/9) {
             .prj-media-panel iframe {
                 width: 177.78vh;
                 height: 100vh; 
             }
         }

        .prj-visual-shade {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
            pointer-events: none;
        }

        .prj-input-panel {
            background: #0a0a0a;
            padding: 60px 50px;
            border-left: 1px solid #222;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .prj-field-wrapper {
            margin-bottom: 25px;
        }

        .prj-field-tag {
            color: #fff;
            margin-bottom: 8px;
            display: block;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .prj-text-field,
        .prj-choice-field,
        .prj-message-field {
            width: 100%;
            padding: 14px 18px;
            background: #111;
            border: 1px solid #333;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .prj-text-field:focus,
        .prj-choice-field:focus,
        .prj-message-field:focus {
            outline: none;
            border-color: var(--theme-color);
            background: #1a1a1a;
        }

        .prj-text-field::placeholder,
        .prj-message-field::placeholder {
            color: #666;
        }

        .prj-choice-field {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }

        .prj-choice-field option {
            background: #111;
            color: #fff;
        }

        .prj-message-field {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .prj-split-fields {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .prj-action-trigger {
            width: 100%;
            padding: 16px 32px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .prj-action-trigger:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
        }

        .prj-action-trigger:active {
            transform: translateY(0);
        }

        .prj-legal-note {
            text-align: center;
            color:var(--theme-color);
            font-size: 0.9rem;
            margin-top: 20px;
            line-height: 1.5;
        }

        @media (max-width: 992px) {
            .prj-dual-layout {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .prj-media-panel {
                min-height: 400px;
            }

            /* Fix iframe visibility on mobile */
            .prj-media-panel iframe {
                width: 100% !important;
                height: 100% !important;
                top: 0 !important;
                left: 0 !important;
                transform: none !important;
                max-width: none !important;
                min-width: auto !important;
                min-height: auto !important;
                pointer-events: auto !important;
            }

            .prj-input-panel {
                border-left: none;
                border-top: 1px solid #222;
                padding: 40px 30px;
            }

            .prj-main-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .prj-split-fields {
                grid-template-columns: 1fr;
            }

            .prj-main-title {
                font-size: 2rem;
            }

            .prj-inquiry-zone {
                padding: 60px 15px;
            }
        }

/* Mobile: center coverage cards and add border */
@media (max-width: 500px) {
    .coverage-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .coverage-cards .coverage-item {
        width: auto !important;
        max-width: 420px;
        margin: 0;
        box-sizing: border-box;
        border: 1px solid rgba(0, 210, 255, 0.18);
        border-radius: 10px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.02);
    }
}

/* Extra small screens - improve spacing and touch targets */
@media (max-width: 420px) {
    .prj-inquiry-zone { padding: 28px 12px; }
    .prj-main-title { font-size: 1.6rem; }
    .prj-sub-caption { font-size: 1rem; }

    .prj-dual-layout { min-height: auto; }
    .prj-media-panel { min-height: 140px; }
    .prj-input-panel { padding: 18px 14px; }

    .prj-field-tag { font-size: 0.9rem; }
    .prj-text-field, .prj-choice-field, .prj-message-field { padding: 12px 14px; font-size: 0.95rem; }

    .prj-split-fields { gap: 12px; }

    .prj-action-trigger { padding: 14px 18px; font-size: 1rem; border-radius: 8px; }

    .prj-legal-note { font-size: 0.85rem; }
}

/* NAVBAR: mobile behavior — transparent at top, restore background on scroll */
@media (max-width: 576px) {
    /* Keep navbar transparent by default on mobile */
    #navbar {
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        backdrop-filter: none !important;
    }

    /* Do NOT override `#navbar.scrolled` here — allow the global scrolled rule to restore background on scroll */

    /* Ensure nav links remain visible on transparent background */
    #navbar a,
    #navbar .navbar-brand,
    #navbar .nav-item,
    #navbar .dropdown-item {
        color: #fff !important;
    }
}

/* Disable backdrop filters on mobile for better performance and clarity */
@media (max-width: 576px) {
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}


/* ========================================
   CUSTOM YOUTUBE CONTROLS - NATIVE STYLE
   ======================================== */
.video-card.youtube-card {
    position: relative;
    overflow: hidden; 
    width: 100%;
    height: 100%;
    border-radius: 24px;
    isolation: isolate;
}

.video-card.youtube-card iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    height: 150%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none; 
    border: none;
}

/* Overlay & Control Container */
.video-card.youtube-card .video-card-overlay {
    pointer-events: none; /* Let clicks pass through overlay unless on controls */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align controls to bottom */
    padding: 0;
    transition: opacity 0.3s ease;
}

/* The actual control bar container */
.custom-video-controls.native-style {
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    padding: 10px 20px 20px; /* Padding for bottom spacing */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto; /* Enable interaction only on the bar */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-card:hover .custom-video-controls.native-style {
    opacity: 1;
}

/* Controls Row (Buttons & Time) */
.controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Spacer to push right-side controls */
.spacer {
    flex: 1;
}

/* Icon Buttons */
.control-btn-icon {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.control-btn-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #fff; /* Keep white on hover, or use theme color if preferred */
}

/* Time Display */
.time-display {
    font-family: inherit;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Progress Bar Container */
.progress-container {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: height 0.1s ease;
}

.progress-container:hover {
    height: 7px; /* Enlarge on hover */
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #00d2ff; /* Theme Color */
    border-radius: 2px;
    position: relative;
}

/* =========================================
   Video Showcase Section Styles
   ========================================= */

.video-showcase-section {
    padding: 60px 0;
    background-color: #000;
}

.showcase-title {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-card iframe,
.video-card video,
.iframe-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

/* Overlay Styles */
.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none; /* Let clicks pass through to video/iframe if needed, but overlays usually block */
}

.video-card:hover .video-card-overlay {
    opacity: 1;
}

/* Custom Controls Container */
.custom-video-controls {
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    pointer-events: auto;
}

/* Hide ONLY Play button (Container is clickable) */
.custom-video-controls.native-style .play-pause-btn {
    display: none !important;
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.control-btn-icon {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform 0.2s, color 0.2s;
}

.control-btn-icon:hover {
    color: var(--theme-color, #00d4ff); /* Fallback color */
    transform: scale(1.1);
}

.time-display {
    color: #fff;
    font-size: 0.9rem;
    font-family: monospace;
}

.spacer {
    flex: 1;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    transition: height 0.2s;
}

.progress-container:hover {
    height: 6px;
}

.progress-bar {
    height: 100%;
    background: var(--theme-color, #00d4ff);
    width: 0%;
    border-radius: 2px;
    position: relative;
}

/* Ensure youtube-card behaves correctly if it uses API injection */
.youtube-card > div:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Scrubber Dot (optional, creates the circle at end of bar) */
.progress-bar::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transition: transform 0.1s ease;
}

.progress-container:hover .progress-bar::after {
    transform: translateY(-50%) scale(1);
}
/* Fix for 'The Studio We Always Wanted to Hire' section on Mobile */
@media (max-width: 768px) {
    .about-team-section {
        min-height: auto !important;
        height: auto !important;
        padding: 2rem 0 !important;
    }

    .about-team-image-overlay {
        padding: 2rem 1.5rem !important; /* Tighter padding */
    }

    .about-team-image-overlay h2 {
        font-size: 1.5rem !important; /* Smaller heading */
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .about-team-image-overlay p {
        font-size: 0.95rem !important; /* Readable body text */
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    
    .about-team-note {
         font-size: 0.85rem !important;
         margin-top: 0.5rem !important;
    }
}
/* CONSOLIDATED STYLES */
/* --- Simple Services --- */
/* ========================================
   SIMPLE SERVICE SECTIONS
   ======================================== */

.service-simple-section {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.service-simple-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-simple-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-simple-row.reverse {
    flex-direction: row-reverse;
}

.service-simple-content {
    flex: 1;
}

.service-simple-media {
    flex: 1;
    position: relative;
}

.service-simple-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-simple-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-simple-subtitle {
    font-size: 1.25rem;
    color: #00d2ff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-simple-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.service-simple-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 2.5rem;
}

.service-simple-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-simple-feature-item::before {
    content: "•";
    color: #00d2ff;
    font-size: 1.5rem;
    line-height: 1;
}

.service-simple-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-simple-timeline {
    font-weight: 600;
    color: #fff;
}

.service-simple-timeline span {
    color: #00d2ff;
    margin-left: 5px;
}

.service-simple-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #00d2ff;
    color: #00d2ff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-simple-btn:hover {
    background: #00d2ff;
    color: #000;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .service-simple-section {
        padding: 60px 0;
    }

    .service-simple-row {
        flex-direction: column !important;
        gap: 40px;
    }

    .service-simple-media {
        width: 100%;
    }
    
    .service-simple-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .service-simple-features {
        grid-template-columns: 1fr;
    }

    .service-simple-video-wrapper {
        padding-bottom: 75%; /* 4:3 Aspect Ratio for larger mobile view */
    }

    .service-simple-video-wrapper iframe {
       position: absolute !important;
       display: block !important;
       /* Width > 100% to simulate cover effect (16:9 video in 4:3 container) */
       width: 140% !important; 
       height: 100% !important;
       top: 50% !important;
       left: 50% !important;
       transform: translate(-50%, -50%) !important;
       z-index: 10 !important;
       border: none !important;
       pointer-events: none; /* Keep consistent with desktop behavior */
    }
}

@media (min-width: 993px) {
    .service-simple-row {
        align-items: stretch; /* Match height of content */
    }

    .service-simple-media {
        display: flex;
        flex-direction: column;
    }

    .service-simple-video-wrapper {
        width: 100%;
        height: 100%; /* Fill the flex item */
        padding-bottom: 0;
        display: block;
        position: relative;
        overflow: hidden; 
        border-radius: 20px;
    }
    
    .service-simple-video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .service-simple-video-wrapper iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        /* Scale increased to 1.75 to ensure coverage in tall containers (prevents black bars when stretched) */
        transform: translate(-50%, -50%) scale(1.75); 
        object-fit: cover;
        pointer-events: none;
        border: none;
    }
}
/* --- Navbar Styles --- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Navbar container */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        padding: 0;
    }

    .navbar-content {
        max-width: 100%;
        margin: 0;
        background: transparent;
        backdrop-filter: blur(8px);
        border: none;
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
        padding: 1rem 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: none;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .navbar-content.scrolled {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }

    /* Logo */
    .logo {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        cursor: pointer;
        position: relative;
        z-index: 2;
        text-decoration: none;
    }

    .logo-text {
        height: 100px;
        width: auto;
        object-fit: contain;
    }

    /* Navigation menu */
    .nav-menu {
        display: flex;
        gap: 2.5rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .nav-item {
        position: relative;
        color: #00d2ff;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        text-decoration: none;
        display: inline-block;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #fff, transparent);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        transition: transform 0.4s ease;
    }

    .nav-item:hover {
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    .nav-item:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    /* CTA Button */
    .cta-button {
        position: relative;
        z-index: 2;
        padding: 0.75rem 1.8rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        color: #fff;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        overflow: hidden;
        letter-spacing: 0.5px;
        background: rgba(0, 194, 255, 0.12);
        border: 1px solid rgba(0, 194, 255, 0.3);
        box-shadow: 0 0 18px rgba(0, 194, 255, 0.25);
        color: rgba(222, 244, 255, 0.8);

    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
        transition: transform 0.6s ease;
    }

    .cta-button:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .cta-button:hover::before {
        transform: translate(-50%, -50%) scale(1);
    }

    .arrow {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .cta-button:hover .arrow {
        transform: translateX(5px);
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2;
        padding: 0.5rem;
    }

    .menu-toggle span {
        width: 25px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile Canvas Menu */
    .mobile-menu-canvas {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        z-index: 999;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .mobile-menu-canvas.active {
        right: 0;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-item {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #000;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
    }

    .mobile-nav-item:hover {
        padding-left: 1rem;
        color: #333;
    }

    .mobile-cta {
        margin-top: 2rem;
        padding: 1rem 2rem;
        background: #000;
        color: #fff;
        border: none;

        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s ease;

    }

    .mobile-cta:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
        nav {
            padding: 0;
        }

        .navbar-content {
            padding: 1rem 1.5rem;
            background: transparent !important;
            border-bottom: none !important;
        }

        .navbar-content.scrolled {
            background: rgba(10, 10, 10, 0.95) !important;
        }

        /* Reduce logo size on mobile */
        .logo-text {
            height: 60px !important;
        }

        .nav-menu,
        .cta-button {
            display: none;
        }

        .menu-toggle {
            display: flex;
        }
    }
/* --- About Page Styles --- */
        :root {
            --bs-primary: #ffffff;
            --bs-dropdown-link-active-bg: #ffffff;
            --bs-dropdown-link-active-color: #000000;
            --bs-link-color: #ffffff;
            --bs-link-hover-color: #cccccc;
            --theme-color: #00d2ff;
            --theme-color-dark: #00a8cc;
            --theme-color-light: #66e6ff;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: black;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
        }

        /* Navbar Critical */
        #navbar {
            background-color: transparent !important;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        #navbar.scrolled {
            background-color: black !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* Hero Critical */
        .video-banner {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            margin-bottom: 0;
        }

        .video-banner .hero-poster {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
            pointer-events: none;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        /* what you get */
        /* ========================================
   STUDIO X AI SECTION (REWRITE)
   ======================================== */
        .studio-x-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background: black;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 1. BACKGROUND VIDEO LAYER */
        .studio-bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            /* Lowest level */
        }

        .studio-bg-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 2. TEXT MASK LAYER (Black bg + White text + Multiply blend) */
        .studio-mask-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: black;
            z-index: 5;
            /* Above video */
            mix-blend-mode: multiply;
            /* The Magic: White text becomes transparent to video below */
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            /* Let clicks pass specific areas if needed */
        }

        .studio-text-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 0;
            /* Gap handled by spacer */
        }

        .studio-section-title {
            position: absolute;
            top: 4%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 56px;
            font-weight: 700;
            color: white;
            z-index: 20;
            /* Above everything */
            /* text-transform: uppercase; <-- Removed */
            /* letter-spacing: 2px; <-- Removed */
            opacity: 1;
            text-align: center;
            width: 100%;
        }

        .studio-highlight {
            color: #00d2ff;
            /* Cyan highlight */
        }

        .studio-title-text {
            font-size: 100px;
            font-weight: 900;
            color: white;
            /* Becomes transparent in multiply mode */
            margin: 0;
            line-height: 1;
            letter-spacing: -2px;
        }

        /* Shift only the "AI" text closer to the center */
        .studio-title-text:last-child {
            position: relative;
            left: -100px;
        }

        /* Shift "STUDIO" text left to avoid overlapping content */
        .studio-title-text:first-child {
            position: relative;
            left: -60px;
        }

        .studio-x-spacer {
            width: 800px;
            /* Increased to 800px as requested */
            height: 100px;
            flex-shrink: 0;
        }

        /* 3. X INTERACTION LAYER */
        .studio-x-layer {
            position: absolute;
            inset: 0;
            z-index: 10;
            /* Topmost */
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            /* Allow clicks through empty areas */
        }

        /* REUSING .box and .tri styles, just adjusting container */
        .studio-x-box {
            position: relative;
            width: 200px;
            height: 200px;
            background: black;
            /* The X center needs to cover the video/text lines behind it? */
            /* Actually with multiply mode, the text layer covers everything with black except text. 
       The Box sits ON TOP. It has its own videos. 
       We ensure it stands out. */
            /* overflow: hidden;  <-- REMOVED TO ALLOW TEXT OUTSIDE */
            pointer-events: auto;
            /* Re-enable clicks on the X */
        }

        /* Responsive adjustments for Studio X section */
        @media (max-width: 1600px) {
            .studio-x-spacer {
                width: 600px;
            }

            .studio-title-text {
                font-size: 128px;
            }

            .studio-x-tri1 .studio-x-tri-content {
                left: -175px;
                width: 155px;
            }

            .studio-x-tri4 .studio-x-tri-content {
                right: -175px;
                width: 155px;
            }
        }

        @media (max-width: 1200px) {
            .studio-title-text {
                font-size: 80px;
            }

            .studio-x-spacer {
                width: 450px;
            }

            .studio-x-box {
                width: 160px;
                height: 160px;
            }
        }

        .studio-x-tri {
            position: absolute;
            width: 100%;
            height: 100%;
            color: white;
            transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            /* Important: pass through clicks in empty areas */
            transform: scale(0.9);
            filter: blur(4px);
        }

        .studio-x-tri.studio-x-tri-active {
            opacity: 1;
            visibility: visible;
            /* pointer-events:auto; <-- Handled by children */
            transform: scale(1);
            filter: blur(0);
        }

        .studio-x-section.studio-x-show-all .studio-x-tri {
            opacity: 1;
            visibility: visible;
            /* pointer-events:auto; */
        }

        /* CLIPPER HANDLES THE SHAPE AND CLICKS */
        .studio-x-clipper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: auto;
            /* Catch clicks on the triangle shape */
        }

        .studio-x-tri:hover .studio-x-clipper video {
            filter: grayscale(0%);
        }

        .studio-x-tri-content {
            position: absolute;
            z-index: 5;
            text-align: center;
            pointer-events: auto;
            /* Allow interaction with text */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;


            padding: 24px 20px;

            box-sizing: border-box;
        }

        /* Position content outside the smaller X box */
        /* LEFT */
        .studio-x-tri1 .studio-x-tri-content {
            left: -74px;
            top: 50%;
            transform: translateY(-50%);
            width: 200px;
            text-align: center;
            align-items: center;
        }

        /* TOP */
        .studio-x-tri2 .studio-x-tri-content {
            top: -147px;
            left: 85%;
            transform: translateX(-50%);
            width: 220px;
            text-align: center;
            align-items: center;
        }

        /* BOTTOM */
        .studio-x-tri3 .studio-x-tri-content {
            bottom: -137px;
            left: 87%;
            transform: translateX(-50%);
            width: 220px;
            text-align: center;
            align-items: center;
        }

        /* RIGHT */
        .studio-x-tri4 .studio-x-tri-content {
            right: -263px;
            top: 50%;
            transform: translateY(-50%);
            width: 200px;
            text-align: center;
            align-items: center;
        }

        .studio-x-tri-icon {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .studio-x-tri-heading {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.2;
            color: var(--theme-color);
        }

        .studio-x-tri-text {
            font-size: 15px;
            font-weight: 400;
            opacity: 0.9;
            line-height: 23px;
            text-align: center;
        }

        /* 4 PERFECT NON-OVERLAPPING TRIANGLES - APPLIED TO CLIPPER */

        /* TOP LEFT */
        .studio-x-tri1 .studio-x-clipper {
            clip-path: polygon(0 0, 50% 50%, 0 100%);
        }

        /* TOP RIGHT */
        .studio-x-tri2 .studio-x-clipper {
            clip-path: polygon(100% 0, 50% 50%, 0 0);
        }

        /* BOTTOM LEFT */
        .studio-x-tri3 .studio-x-clipper {
            clip-path: polygon(0 100%, 50% 50%, 100% 100%);
        }

        /* BOTTOM RIGHT */
        .studio-x-tri4 .studio-x-clipper {
            clip-path: polygon(100% 100%, 50% 50%, 100% 0);
        }

        /* WHITE X LINES WITH VIDEO */
        .studio-x-line {
            position: absolute;
            top: 50%;
            left: 91%;
            width: 302%;
            height: 35px;
            background: white;
            transform-origin: center;
            z-index: 10;
            pointer-events: none;
            overflow: hidden;
        }

        .studio-x-line video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 200%;
            min-height: 200%;
            object-fit: cover;
            z-index: 1;
        }

        .studio-x-line1 {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .studio-x-line1 video {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .studio-x-line2 {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .studio-x-line2 video {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .video-text {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .video-text video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;

            /* mask video inside text - correct syntax */
            -webkit-mask: url(#mask);
            mask: url(#mask);
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
        }



        /* ========================================
   MOBILE RESPONSIVE (Below 768px)
   ======================================== */
        @media (max-width: 768px) {

            /* Hide the complex Studio/X/Video layers */
            .studio-bg-layer,
            .studio-mask-layer,
            .studio-x-line,
            .studio-x-box::before,
            /* any pseudo elements if any */
            .studio-x-clipper {
                /* Hide the video clips, just show text content */
                display: none !important;
            }

            .studio-x-section {
                display: none !important;
                height: auto;
                min-height: auto;
                padding: 80px 20px 40px;
                /* Space for title */
                overflow-y: visible;
                display: block;
                /* Reset flex */
            }

            /* Position the title normally */
            .studio-section-title {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin-bottom: 40px;
                font-size: 32px;
                /* Smaller for mobile */
            }

            /* Reset the box container */
            .studio-x-box {
                width: 100% !important;
                height: auto !important;
                background: transparent;
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            /* Reset the triangle containers to be static blocks */
            .studio-x-tri {
                position: relative;
                width: 100%;
                height: auto;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                filter: none !important;
                pointer-events: auto !important;
            }

            /* Style the content as the card itself */
            .studio-x-tri-content {
                position: relative;
                width: 100% !important;
                /* Full width */
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                transform: none !important;

                background: #000;
                border: 1px solid #333;
                border-radius: 20px;
                padding: 30px;
                text-align: left;
                align-items: flex-start;
                justify-content: flex-start;
                box-shadow: none;
            }

            .studio-x-tri-heading {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .studio-x-tri-text {
                text-align: left;
                font-size: 16px;
                line-height: 1.5;
            }
        }
        

/* GLOBAL MODAL STYLES ADDED BY AGENT */
.studiox-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.85); backdrop-filter: blur(8px); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.studiox-modal.show { display: flex; opacity: 1; }
.studiox-modal-content { background: linear-gradient(145deg, #0d1117 0%, #161b22 100%); margin: auto; padding: 40px; border: 1px solid rgba(255,255,255,0.1); width: 90%; max-width: 600px; border-radius: 20px; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.studiox-close-btn { color: #aaa; position: absolute; top: 20px; right: 25px; font-size: 28px; font-weight: bold; cursor: pointer; transition: color 0.3s; }
.studiox-close-btn:hover { color: #fff; }
.studiox-modal-title { font-family: 'Inter', sans-serif; color: #fff; font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; text-align: center; }
.studiox-modal-subtitle { color: rgba(255,255,255,0.7); text-align: center; margin-bottom: 2rem; font-size: 1rem; }
.studiox-modal-form .form-group { margin-bottom: 1.5rem; }
.studiox-modal-form label { display: block; margin-bottom: 0.5rem; color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; }
.studiox-modal-form input, .studiox-modal-form select, .studiox-modal-form textarea { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 1rem; transition: all 0.3s; }
.studiox-modal-form select option { color: #000; background-color: #fff; }
.studiox-modal-form input:focus, .studiox-modal-form select:focus, .studiox-modal-form textarea:focus { outline: none; border-color: #00d2ff; background: rgba(255,255,255,0.1); box-shadow: 0 0 0 4px rgba(0,210,255,0.1); }
.studiox-modal-form textarea { min-height: 120px; resize: vertical; }
.studiox-modal-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, #00d2ff 0%, #00a3cc 100%); color: white; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; margin-top: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.studiox-modal-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(0,210,255,0.5); background: linear-gradient(135deg, #33dbff 0%, #00b8e6 100%); }

