.video-wrapper {
      height: 100vh;
      width: 100%;
      position: relative;
    }

    video {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    /* Default: show desktop video, hide mobile video */
    .mobile {
      display: none;
    }

    .desktop {
      display: block;
    }

    /* On screens less than 768px, show mobile video */
    @media (max-width: 767px) {
      .mobile-video {
        display: block;
      }
      .desktop-video {
        display: none;
      }
    }


    .down-arrow {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 30px;
      color: white;
      animation: bounce 2s infinite;
      cursor: pointer;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      50% {
        transform: translateX(-50%) translateY(15px);
      }
    }


.video-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.3s ease, transform 0.3s ease;
}

.video-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.video-toggle i {
  font-size: 18px;
  color: white;
}







/* Contact Wrapper */
    .contact-wrapper {
 display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 20px;
    }

    .contact-left,
    .contact-right {
      flex: 1 1 400px;
    }

    .contact-left h2,
    .contact-right h2 {
      color: #fff;
      font-size: 32px;
      margin-bottom: 20px;
    }

    .contact-left p {
      color: #fff;
      margin: 10px 0;
    }

    .social-icons {
      margin-top: 20px;
    }

    .social-icons a {
      color: #fff;
      margin-right: 10px;
      font-size: 20px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #ff9900;
    }

    /* Contact Form */
    .contact-right form {
      display: flex;
      flex-direction: column;
    }

    .contact-right input,
    .contact-right textarea {
      background: #111;
      border: 1px solid #444;
      border-radius: 999px;
      color: #fff;
      font-size: 16px;
      margin-bottom: 15px;
      padding: 14px 20px;
    }

    .contact-right textarea {
      border-radius: 20px;
      min-height: 120px;
      resize: vertical;
    }

    .curve-button {
      background:  #da2d36;
      border: none;
      padding: 14px 20px;
      color: #fff;
      font-size: 16px;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.3s;
    }

    /* .curve-button  */

    .curve-button:hover {
      background: #6b0c0f;
    }

    /* Map Section */
    .map-section {
      margin: 0 auto 60px;
      max-width: 1200px;
      padding: 0 20px;
    }

    .map-section h2 {
      font-size: 32px;
      margin-bottom: 20px;
      text-align: center;
      color: white;
    }

    .map-container iframe {
      border: none;
      border-radius: 10px;
      height: 400px;
      width: 100%;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header h1 {
        font-size: 32px;
      }

      .contact-wrapper {
        flex-direction: column;
      }
    }


/* footer */

       .apple-footer {
            background-color: #000;
            color: white;
            font-size: 12px;
            padding: 20px 0;
            border-top: 1px solid #d2d2d7;
        }
        
        .footer-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
        }
        
        .footer-note {
            padding: 10px 0;
            border-bottom: 1px solid #d2d2d7;
            color: white;
        }
        
        .footer-columns {
            display: flex;
            flex-wrap: wrap;
            padding: 20px 0;
        }
        
        .footer-column {
            flex: 1;
            min-width: 150px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column li {
            margin-bottom: 8px;
        }
        
        .footer-column a {
            color: white;
            text-decoration: none;
        }
        
        .footer-column a:hover {
            text-decoration: underline;
            color: white;
        }
        
        .footer-legal {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #d2d2d7;
        }
        
        .footer-legal-links {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        
        .footer-legal-links a {
            margin-right: 20px;
            color: white;
            text-decoration: none;
            white-space: nowrap;
        }
        
        .footer-legal-links a:hover {
            text-decoration: underline;
        }
        
        .footer-copyright {
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-column {
                min-width: 50%;
            }
        }
        
        @media (max-width: 480px) {
            .footer-column {
                min-width: 100%;
            }
            
            .footer-legal-links a {
                margin-right: 10px;
                margin-bottom: 5px;
            }
        }


        .footer-column a i {
  font-size: 20px;
  color: white;
  transition: color 0.3s;
}

.footer-column a:hover i {
  color: #ccc;
}

.footer-column ul {
  display: flex;
  gap: 15px;
}





/* client */

   .clients-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .clients-section h2 {
      color: white;
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      align-items: center;
      justify-items: center;
    }

    .client-logo {
      width: 100%;
      max-width: 150px;
      transition: transform 0.3s ease;
    }

    .client-logo:hover {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
  

      .clients-section h2 {
        font-size: 2rem;
      }
    }


  /* about */

  .who-we-are {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }

    .who-text {
        color: white;
      flex: 1 1 500px;
    }

    .who-slider {
      flex: 1 1 400px;
    }

    .who-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .who-text p {
      margin-bottom: 15px;
      color: #ccc;
      line-height: 1.6;
    }

    .splide__slide img {
      width: 100%;
      border-radius: 10px;
    }

    .team {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .team h2 {
      color: #fff;
      font-size: 2rem;
      margin-bottom: 30px;
      text-align: center;
    }

    .member {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
      align-items: center;
    }

    .member img {
      width: 200px;
      border-radius: 12px;
    }

    .member-info {
      flex: 1;
    }

    .member-info h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .member-info p {
      color: #ccc;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
     

      .who-we-are {
        flex-direction: column;
        padding: 40px 20px;
      }

      .member {
        flex-direction: column;
        align-items: flex-start;
      }

      .team h2 {
        font-size: 1.8rem;
      }
    }



    /* project */

/* Section styling */
.projects-section {
  padding: 60px 20px;
  text-align: center;
  background: #000;
}

.projects-section h1 {
  font-size: 80px;
  margin-bottom: 10px;
  color: #fff;
}

.projects-section p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

/* Grid layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Project box */
.project-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-box img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.project-box:hover img {
  transform: scale(1.05);
}

/* Overlay with centered play icon */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-box:hover .overlay {
  opacity: 1;
}

/* Play icon style */
.play-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Mobile - always show overlay */
@media (max-width: 768px) {
  .overlay {
    opacity: 1;
  }

  .projects-section h1 {
    font-size: 48px;
  }

  .play-icon {
    width: 50px;
    height: 50px;
  }

  .play-icon::before {
    border-left: 14px solid white;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
}


/* service */


 .services-section {
      padding: 60px 20px;
      text-align: center;
      /* background-color: #000; */
    }

    .services-section h1 {
      font-size: 5rem;
      color: white;
      margin-bottom: 10px;
    }

    .services-section p {
      font-size: 1.1rem;
      color: #ccc;
      margin-bottom: 40px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: #111;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
      transition: transform 0.3s;
    }

    .service-card img {
      width: 100%;
      height: auto;
      transition: transform 0.4s ease;
      display: block;
    }

    .service-card:hover img {
      transform: scale(1.07);
    }

    .service-content {
      padding: 20px;
    }

    .service-content h3 {
      margin-top: 0;
      margin-bottom: 10px;
      color: #fff;
    }

    .service-content p {
      margin: 0;
      font-size: 0.95rem;
      color: #aaa;
    }

    @media (max-width: 600px) {
  /* .services-section h1 {
    font-size: 2rem;
  } */

  .services-section p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr; /* Stack in one column on mobile */
    gap: 20px; /* Smaller gap for mobile */
  }
}


    .ready-next-section {
      /* background: linear-gradient(135deg, #ffffff, #f5f5f5); */
      padding: 100px 20px;
      text-align: center;
    }

    .ready-next-section h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 40px;
    }

.clients-section {
  padding: 60px 20px;
  text-align: center;
}

.clients-section h1 {
  font-size: 5.625em;
  margin-bottom: 10px;
  color: white;
}

.clients-section p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 30px;
}

.clients-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.clients-carousel {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.clients-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  /* height: 80px; */
  width: auto;
  margin: 0 20px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); optional: makes dark logo white on black bg */
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 8px 15px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background-color: rgba(255,255,255,0.4);
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}






/* work */

  #app {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    h2, h3 {
      /* text-align: center; */
      margin: 10px 0;
    }

    h2 {
      font-size: 32px;
    }

    h3 {
      font-size: 20px;
      color: #ccc;
      font-weight: 400;
    }

    .tabs, .video-subtabs {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .tabs button, .video-subtabs button {
      padding: 10px 20px;
      background: #222;
      border: none;
      color: #fff;
      cursor: pointer;
      border-radius: 5px;
    }

    .tabs button.active, .video-subtabs button.active {
      background: #fff;
      color: #000;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px;
    }

    .image-card, .video-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

    .image-card img, .video-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-card span, .video-card span {
      position: absolute;
      bottom: 0;
      background: rgba(0,0,0,0.7);
      color: #fff;
      width: 100%;
      font-size: 14px;
      padding: 5px;
      text-align: center;
      border-radius: 0 0 10px 10px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-card:hover span,
    .video-card:hover span {
      opacity: 1;
    }

    .preview-modal {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .preview-modal img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }

    .preview-modal span {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      cursor: pointer;
      color: #fff;
    }

    .video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.video-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  border-radius: 0 0 10px 10px;
}

.video-card:hover .video-title-overlay {
  opacity: 1;
}


