/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #030712;
}

::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 10px;
  border: 2px solid #030712;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1f2937 #030712;
}

body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #030712;
  background-image: url('../bluturtlefilmsindia-BG.jpeg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container-constrained {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* Dynamic Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: transparent;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled,
header.solid {
  background: transparent;
  backdrop-filter: blur(20px);
  padding: 15px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-box {
  width: 45px;
  height: 45px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.btn-contact {
  background: #2563eb;
  padding: 10px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Hero */
.hero-full {
  position: relative;
  width: 100vw;
  height: 750px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 7, 18, 0.1) 0%, rgba(3, 7, 18, 0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}

.hero-tagline {
  position: absolute;
  top: 160px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  max-width: 1400px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
}

.hero-title {
  font-size: 110px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

/* Section Styling */
.section-box {
  background: rgba(10, 37, 64, 0.65);
  backdrop-filter: blur(15px);
  padding: 80px;
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* Our Work - Bada Section */
.works-section {
  padding: 100px 0;
  text-align: center;
}

.works-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.works-container-white {
  background: #ffffff;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.works-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.works-grid img:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* Responsive Navigation & Mobile Menu */
.hamburger {
  display: none !important;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex !important;
  }
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #030712;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #2563eb;
}

/* Responsive Overrides */
@media (max-width: 1024px) {

  header,
  header.scrolled,
  header.solid {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .text-6xl {
    font-size: 2.2rem !important;
  }

  .text-7xl {
    font-size: 2.5rem !important;
  }

  .text-5xl {
    font-size: 1.8rem !important;
  }

  .container-constrained {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pt-48 {
    padding-top: 120px !important;
  }

  .pt-32 {
    padding-top: 100px !important;
  }

  .hero-full {
    height: 600px;
  }

  .hero-tagline {
    top: 120px;
    font-size: 18px !important;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
    padding: 0 40px;
  }

  .section-box {
    padding: 40px 20px !important;
  }

  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr !important;
  }

  .brand-marquee {
    padding: 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 40px;
  }

  .footer-grid>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid .flex {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.works-grid img:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.btn-view-all {
  display: inline-block;
  margin-top: 60px;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 50px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}

.btn-view-all:hover {
  background: #ffffff;
  color: #000;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

footer {
  background: linear-gradient(to top, #000000 0%, #030712 100%);
  padding: 100px 20px 40px;
  border-top: 2px solid #2563eb;
  position: relative;
  overflow: hidden;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.footer-title {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2563eb;
}

.footer-link-item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
}

.footer-link-item:hover {
  color: #ffffff;
  padding-left: 5px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.6);
}

.social-icon-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Brand Marquee */
.brand-marquee {
  background: #000;
  border-top: 1px solid rgba(37, 99, 235, 0.3);
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  z-index: 10;
}

.marquee-content {
  display: flex;
  gap: 100px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-item {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 6px;
  transition: all 0.4s;
  user-select: none;
}

.brand-item:hover {
  opacity: 1;
  color: #2563eb;
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

/* Our Services Section */
.services-section {
  padding: 120px 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.service-card {
  background: rgba(10, 37, 64, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  border-radius: 4px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.service-card:hover {
  background: rgba(10, 37, 64, 0.8);
  transform: translateY(-15px);
  border-color: #2563eb;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-icon {
  font-size: 45px;
  color: #2563eb;
  margin-bottom: 30px;
  display: inline-block;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}