/* ===============================
   ROOT / RESET
================================ */

:root {
  --purple: #6d28d9;
  --red: #ef4444;
  --yellow: #facc15;
  --black: #0b0b0f;
  --white: #ffffff;
  --muted: rgba(0, 0, 0, 0.65);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}


h1, h2, h3, h4, h5, h6,
.nav-link,
.btn {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

/* ===============================
   GLOBAL UTILITIES
================================ */

a {
  text-decoration: none;
  color: inherit;
}

.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.shadow {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* ===============================
   NAVBAR
================================ */


nav a:not(#logotext) {
  position: relative;
}

/* underline */
nav a:not(#logotext)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s ease;
}

/* hover */
nav a:not(#logotext):hover::after {
  width: 100%;
}

/* ===============================
   MOBILE NAV
================================ */

#mobileNav {
  display: none;
}

#mobileNav.is-active {
  display: flex;
}


/* ===============================
   HERO
================================ */



#hero a.bg-purple-600 {
  background: var(--purple);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#hero a.bg-purple-600:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(109, 40, 217, 0.25);
}

.cta-outline{
  @apply border-2 border-black hover:border-yellow-400 px-6 py-3 rounded-full font-semibold text-center transition w-full;
}
.cta-solid{

}
/* ===============================
   HERO BACKGROUND IMAGE
================================ */

.hero-bg {
  position: relative;
  background-image: url("./images/towerbridge.jpg"); /* <-- your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark + premium overlay */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.85) 40%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 0;
}

/* Make hero content stay above overlay */
.hero-bg > * {
  position: relative;
  z-index: 1;
}

/* ===============================
   STATS
================================ */

#stats {
  background: var(--black);
}

#stats p {
  letter-spacing: -0.02em;
}

/* ===============================
   MARQUEE
================================ */

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-items {
  display: flex;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===============================
   MARQUEE BLACK BRAND TILES
================================ */

.marquee-dark .marquee-items article {
  background:  #45008b;
  color: #ffffff;
  border-radius: 22px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}


/* Title text */
.marquee-dark .marquee-items article p:nth-child(2) {
  font-weight: 600;
  font-size: 1rem;
}

/* Sub text */
.marquee-dark .marquee-items article p:first-child {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  opacity: 0.6;
  text-transform: uppercase;
}


/* ===============================
   MOBILE VIDEO SCROLL
================================ */

.video-scroll-wrapper {
  width: 100%;
  overflow: hidden;
}

.video-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-scroll::-webkit-scrollbar {
  display: none;
}

/* video cards */
.video-scroll > div {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
}

/* iframe */
.video-scroll iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* desktop layout */
@media (min-width: 1024px) {

  .video-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    overflow: visible;
  }

  .video-scroll > div {
    width: 100%;
  }
}



/* ===============================
   VIDEOS BACKGROUND
================================ 

.videos-bg {
  position: relative;
  background-image: url("");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.videos-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:#000;
  z-index: 0;
}

/* keep content above */
.videos-bg > * {
  position: relative;
  z-index: 1;
}

/* ===============================
   VIDEO CARDS
================================ 

.video-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #1e1e1e;
  color: white;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(247, 0, 255, 0.272);
}

.video-card img {
  transition: transform 0.4s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

/* ===============================
   VIDEO MODAL
================================ 

#videoModal {
  backdrop-filter: blur(8px);
}

/* ===============================
   REVIEWS
================================ */

/* .review-card {
  transition: transform 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
} */

/* ===============================
   FAQ
================================ */

.faq-item h3 {
  transition: color 0.3s ease;
}

.faq-item:hover h3 {
  color: var(--purple);
}

.faq-answer {
  line-height: 1.6;
}

/* ===============================
   CONSULT SECTION
================================ */

#consult {
  background: linear-gradient(
    135deg,
    var(--purple),
    #4c1d95
  );
}

#consult a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#consult a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.25);
}

/* ===============================
   FOOTER
================================ */

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem !important;
  }

  section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .marquee-track {
    animation-duration: 50s;
  }
}



.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: horizontal;
  overflow: hidden;
}