/* =======================================
   GLOBAL
======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #020617;
  color: #e8e8e8;
  line-height: 1.6;
}

/* =======================================
   NAVBAR
======================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.9),
    rgba(15, 52, 96, 0.9),
    rgba(3, 7, 18, 0.9)
  );
  backdrop-filter: blur(10px);
  padding: 10px 60px;
  border-bottom: 1px solid #0b1738;
  height: 85px;
  position: relative;       /* REQUIRED for menu overlay */
  z-index: 1000;            /* REQUIRED to show above slider */
}

.logo img {
  height: 115px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 18px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5c518;
}

/* Hamburger (hidden desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
}


/* =======================================
   NEWS SLIDER
======================================= */
.news-slider {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 18px;
  background: #030a1a;
  border: 2px solid rgba(245, 197, 24, 0.2);
  box-shadow: 0 0 35px rgba(0,0,0,0.6);
}

.slider-container,
.slide,
.slide img {
  width: 100%;
  height: 100%;
}

.slide img {
  object-fit: contain;
}





.caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #f5c518;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* Slider controls */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #f5c518;
  background: rgba(0,0,0,0.5);
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(245, 197, 24, 0.3);
}

.prev { left: 20px; }
.next { right: 20px; }

.pause-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(0,0,0,0.6);
  border: 1px solid #f5c518;
  color: #f5c518;
  cursor: pointer;
}

.pause-btn:hover {
  background: #f5c518;
  color: #020617;
}

.fade {
  animation: fade 1.2s ease;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}


/* =======================================
   FOUNDER SECTION
======================================= */
.founder {
  padding: 100px 20px;
  background: #050d26;
  border-top: 1px solid #0b1738;
}

.founder-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.founder-image img {
  width: 350px;
  border-radius: 12px;
  border: 2px solid #f5c518;
  box-shadow: 0 0 25px rgba(245, 197, 24, 0.2);
  transition: 0.3s;
}

.founder-image img:hover {
  transform: scale(1.03);
}

.founder-text {
  flex: 1;
}

.founder-text h2 {
  font-size: 2rem;
  color: #f5c518;
  margin-bottom: 15px;
}

.founder-text p {
  color: #cfcfcf;
  margin-bottom: 10px;
  line-height: 1.8;
}


/* =======================================
   SERVICES PREVIEW
======================================= */
.services-preview {
  text-align: center;
  padding: 100px 20px;
  background: #020617;
  border-top: 1px solid #0b1738;
}

.services-preview h2 {
  font-size: 2rem;
  color: #f5c518;
}

.services-preview p {
  max-width: 700px;
  margin: 12px auto 25px;
  color: #b5b5b5;
}


/* =======================================
   CONSULTATION
======================================= */
.consultation {
  text-align: center;
  padding: 90px 20px;
  background: #050d26;
  border-top: 1px solid #0b1738;
}

.consultation h2 {
  font-size: 2rem;
}

.consultation p {
  max-width: 700px;
  margin: 10px auto 20px;
  color: #b5b5b5;
}


/* =======================================
   VIDEOS
======================================= */
.videos {
  text-align: center;
  padding: 90px 20px;
}

.videos h2 {
  font-size: 2rem;
}

.videos p {
  color: #b5b5b5;
  margin-bottom: 35px;
}

.video-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-grid iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: none;
}


/* =======================================
   MORE SECTION
======================================= */
.more {
  text-align: center;
  padding: 90px 20px;
  background: #050d26;
  border-top: 1px solid #0b1738;
}

.more h2 {
  font-size: 2rem;
}

.more p {
  max-width: 700px;
  margin: 12px auto 25px;
  color: #b5b5b5;
}


/* =======================================
   BUTTONS
======================================= */
.btn {
  padding: 12px 26px;
  border-radius: 8px;
  border: 1px solid #f5c518;
  color: #f5c518;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #f5c518;
  color: #020617;
}

.btn-blue {
  background: #f5c518;
  border: none;
  color: #020617;
}

.btn-blue:hover {
  background: #ffdb4d;
}

.btn-outline {
  border: 1px solid #999;
  color: #ccc;
}

.btn-outline:hover {
  border-color: #f5c518;
  color: #f5c518;
}


/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 900px) {
  .founder-content {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    width: 250px;
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide desktop menu */
  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: #030a1a;
    flex-direction: column;
    gap: 25px;
    padding: 25px 0;
    display: none;
    text-align: center;
    border-top: 1px solid #0b1738;
    animation: slideDown 0.3s ease forwards;
  }

  /* Show mobile menu */
  .nav-links.open {
    display: flex;
  }

  /* Slide animation */
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
  .news-slider {
    /* Removes height: 240px to let aspect-ratio do the work */
    height: auto; 
    width: 95%;
    max-width: 100%; 
    margin: 20px auto;
  }
}

  .caption {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}


/* =======================================
   SOCIAL STATS
======================================= */
.social-stats-section {
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  background: #060C24;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.social-stats-full {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

.social-box-wide {
  flex: 1;
  padding: 16px 10px;     /* compact */
  background: transparent;
  border: none;
  text-align: center;
}



.social-img-wide {
  width: 42px;           /* icon-sized */
  opacity: 0.85;
  margin-bottom: 10px;
  border-radius: 8px;
}



.social-box-wide h3 {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;        /* soft gray */
  margin-bottom: 2px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}



.count {
  font-size: 40px;           /* Apple-style prominence */
  font-weight: 500;          /* Not bold */
  letter-spacing: -0.5px;
  margin: 4px 0;
  color: #ffffff;
  text-shadow: none;
}



.social-btn {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: #60a5fa;       /* Apple blue */
  background: none;
  padding: 0;
  font-weight: 500;
  text-decoration: none;
}

.social-btn:hover {
  text-decoration: underline;
}


.social-btn:hover {
  background: #0090d1;
}
/* =======================
         FOOTER
=========================== */

.bp-footer {
  background: #020B25; /* Same as your website's dark theme */
  padding: 60px 20px;
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.bp-footer-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #60a5fa; /* Soft Blue Accent */
  font-weight: 600;
}

.bp-footer-section ul {
  list-style: none;
  padding: 0;
}

.bp-footer-section ul li {
  margin-bottom: 12px;
}

.bp-footer-section ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 16px;
  transition: 0.2s;
}

.bp-footer-section ul li a i {
  margin-right: 10px;
  color: #60a5fa; /* Matching blue accent */
}

.bp-footer-section ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.bp-footer-section p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .bp-footer-container {
    flex-direction: column;
  }
}


/* More Vidoes Button*/
.more-videos {
  margin-top: 40px;
  text-align: center;
}

.more-videos-btn-simple {
  display: inline-block;
  padding: 12px 32px;
  background: #F2C300; /* Same yellow tone as your button */
  color: #000;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px; /* Matches the “Book Now” rounded edges */
  transition: 0.2s ease;
}

.more-videos-btn-simple:hover {
  background: #d9ad00; /* Slightly darker on hover */
}
/* =======================================
   SOCIAL STATS – MOBILE FIX
======================================= */
@media (max-width: 768px) {

  .social-stats-full {
    flex-direction: column;
  }

  .social-box-wide {
    padding: 25px 15px;
  }

  .social-img-wide {
    width: 110px;
    margin-bottom: 12px;
  }

  .count {
    font-size: 32px;        /* ↓ reduced from 48px */
    text-shadow: 0 0 6px #00b4ff;
  }

  .social-box-wide h3 {
    font-size: 18px;
  }

  .social-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ===============================
   TOP TAGLINE TICKER (UNDER NAV)
================================ */
/* ===============================
   FIXED TAGLINE TICKER (UNDER NAV)
================================ */
.tagline-ticker {
  position: relative;
  top: 8px;                 /* navbar height */
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #000814, #020617);
  border-bottom: 1px solid #0b1738;
  overflow: hidden;
  z-index: 2000;
  display: flex;
  align-items: center;
}

/* Scrolling track */
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerMove 20s linear infinite;
}

.ticker-track span {
  color: #f5c542;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 0 40px;
  font-weight: 500;
}

/* Animation */
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tagline-ticker {
    top: 10px;
    height: 32px;
  }

  .ticker-track span {
    font-size: 12px;
    padding: 0 24px;
  }
}

.navbar {
  z-index: 3000;
}

.nav-links {
  z-index: 2500;
}

.tagline-ticker {
  z-index: 2000;
}
.nav-links.open ~ .tagline-ticker {
  pointer-events: none;
}

@media (max-width: 768px) {
  .logo img {
    height: 95px;
  }
}
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.active {
  opacity: 1;
  transform: translateY(0);
}
/* =======================
   SECTION REVEAL ANIMATION
======================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/*
/* Confetti*/
/* Container for the Giveaway Link */
.nav-giveaway {
    position: relative;
    font-weight: 700;
    color: #f5c518 !important;
    padding: 5px 10px;
}

/* Base style for confetti particles */
.nav-giveaway::before,
.nav-giveaway::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    /* Animation runs continuously */
    animation: confetti-float 2s ease-in-out infinite;
}

/* Left side particles */
.nav-giveaway::before {
    left: -5px;
    top: 5px;
    background: #f5c518;
    box-shadow: 
        8px -12px #ff4d4d, 
        -5px -15px #00b4ff, 
        12px 10px #4dff88;
}

/* Right side particles */
.nav-giveaway::after {
    right: -5px;
    bottom: 5px;
    background: #00b4ff;
    box-shadow: 
        -8px 12px #f5c518, 
        10px -10px #ffffff, 
        -15px -8px #ff00ff;
    animation-delay: 1s; /* Staggers the timing for a more natural look */
}

/* Continuous Floating Animation */
@keyframes confetti-float {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translateY(-25px) rotate(180deg) scale(1.2);
        opacity: 0;
    }
}

/* Optional: Make the text gently pulse to match the celebration feel */
.nav-giveaway {
    animation: text-pulse 2s linear infinite;
}

@keyframes text-pulse {
    0%, 100% { text-shadow: 0 0 5px rgba(245, 197, 24, 0.2); }
    50% { text-shadow: 0 0 15px rgba(245, 197, 24, 0.8); }
}/* 1. Ensure the Giveaway link is the anchor for the particles */
.nav-giveaway {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #f5c518 !important;
    padding: 5px 15px;
    z-index: 1;
}

/* 2. Create the particle sets */
.nav-giveaway::before,
.nav-giveaway::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
}

/* 3. Define the full surrounding burst (Set 1) */
.nav-giveaway::before {
    box-shadow: 
        0 -25px #f5c518, 18px -18px #ff4d4d, 25px 0 #00b4ff, 
        18px 18px #4dff88, 0 25px #f5c518, -18px 18px #ff00ff, 
        -25px 0 #ffffff, -18px -18px #00ffcc;
    animation: confetti-burst-circle 3s infinite linear;
}

/* 4. Define a second set with different colors and rotation (Set 2) */
.nav-giveaway::after {
    box-shadow: 
        12px -22px #ff4d4d, 22px -12px #f5c518, 22px 12px #00b4ff, 
        12px 22px #4dff88, -12px 22px #f5c518, -22px 12px #ff00ff, 
        -22px -12px #ffffff, -12px -22px #00ffcc;
    animation: confetti-burst-circle 4s infinite linear reverse;
}

/* 5. The animation: Expansion, Rotation, and Fading */
@keyframes confetti-burst-circle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.6);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.4);
        opacity: 0;
    }
}

/* 6. Subtle glowing effect for the text */
.nav-giveaway {
    animation: giveaway-glow 2s ease-in-out infinite;
}

@keyframes giveaway-glow {
    0%, 100% { text-shadow: 0 0 5px rgba(245, 197, 24, 0.4); }
    50% { text-shadow: 0 0 15px rgba(245, 197, 24, 0.9), 0 0 20px rgba(255, 255, 255, 0.5); }
}*/
/* Ensure the parent list and links are aligned correctly */
.nav-links {
    display: flex;
    align-items: center; /* Forces all items to the same horizontal center */
    gap: 30px;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

/* The Giveaway Link */
.nav-giveaway {
    position: relative;
    display: inline-flex; /* Use flex to align text internally */
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #f5c518 !important;
    padding: 5px 15px;
    text-decoration: none;
    /* This prevents the confetti from expanding the height of the navbar */
    line-height: 1; 
}

/* Confetti Particles - Fixed Positioning */
.nav-giveaway::before,
.nav-giveaway::after {
    content: '';
    position: absolute;
    /* Center the origin point exactly in the middle of the text */
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    /* Ensure they don't affect the flow of the document */
    transform: translate(-50%, -50%); 
}

/* Set 1 */
.nav-giveaway::before {
    box-shadow: 
        0 -25px #f5c518, 18px -18px #ff4d4d, 25px 0 #00b4ff, 
        18px 18px #4dff88, 0 25px #f5c518, -18px 18px #ff00ff, 
        -25px 0 #ffffff, -18px -18px #00ffcc;
    animation: confetti-burst-circle 3s infinite linear;
}

/* Set 2 */
.nav-giveaway::after {
    box-shadow: 
        12px -22px #ff4d4d, 22px -12px #f5c518, 22px 12px #00b4ff, 
        12px 22px #4dff88, -12px 22px #f5c518, -22px 12px #ff00ff, 
        -22px -12px #ffffff, -12px -22px #00ffcc;
    animation: confetti-burst-circle 4s infinite linear reverse;
}

@keyframes confetti-burst-circle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.6);
        opacity: 0;
    }
    30% { opacity: 1; }
    100% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.4);
        opacity: 0;
    }
}
/* =======================================
   NAVBAR & LINKS (FOR ALIGNMENT)
======================================= */
.nav-links {
    display: flex;
    align-items: center; /* Essential for vertical alignment */
    gap: 30px;
    list-style: none;
}

/* Base style for the Giveaway Link */
.nav-giveaway {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #f5c518 !important;
    padding: 10px 15px; /* Added padding for better mobile touch target */
    text-decoration: none;
    z-index: 1;
}

/* =======================================
   CONFETTI (MOBILE-READY)
======================================= */
.nav-giveaway::before,
.nav-giveaway::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.nav-giveaway::before {
    box-shadow: 
        0 -20px #f5c518, 15px -15px #ff4d4d, 20px 0 #00b4ff, 
        15px 15px #4dff88, 0 20px #f5c518, -15px 15px #ff00ff, 
        -20px 0 #ffffff, -15px -15px #00ffcc;
    animation: confetti-burst-circle 3s infinite linear;
}

.nav-giveaway::after {
    box-shadow: 
        10px -18px #ff4d4d, 18px -10px #f5c518, 18px 10px #00b4ff, 
        10px 18px #4dff88, -10px 18px #f5c518, -18px 10px #ff00ff, 
        -18px -10px #ffffff, -10px -18px #00ffcc;
    animation: confetti-burst-circle 4s infinite linear reverse;
}

@keyframes confetti-burst-circle {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(0.5); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(45deg) scale(1.2); opacity: 0; }
}

/* =======================================
   MOBILE SPECIFIC FIXES
======================================= */
@media (max-width: 768px) {
    .nav-links {
        /* Your existing mobile menu styles */
        flex-direction: column;
        align-items: center; 
        padding: 40px 0; /* Give the confetti room to breathe vertically */
    }

    .nav-giveaway {
        /* Slightly reduce scale on mobile to avoid overlapping other text */
        font-size: 20px; 
        margin: 15px 0; /* Ensures the confetti doesn't touch Home or About */
    }

    .nav-giveaway::before,
    .nav-giveaway::after {
        /* Keep the particles smaller for mobile screens */
        width: 2px;
        height: 2px;
    }
}
@media (max-width: 768px) {
  .news-slider {
    width: 95%;
    margin: 20px auto;
  }
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 3000;
}

.tagline-ticker {
  position: relative;
  z-index: 2000;
}
.nav-links {
  z-index: 3500;
}
body.menu-open {
  overflow: hidden;
}












/* =======================================
   GIVEAWAY CONFETTI (CLEAN + STABLE)
======================================= */

.nav-giveaway {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f5c518 !important;
  padding: 10px 15px;
  text-decoration: none;
  line-height: 1;
}

/* Particles */
.nav-giveaway::before,
.nav-giveaway::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.nav-giveaway::before {
  box-shadow:
    0 -18px #f5c518,
    16px -16px #ff4d4d,
    18px 0 #00b4ff,
    16px 16px #4dff88,
    0 18px #f5c518,
    -16px 16px #ff00ff,
    -18px 0 #ffffff,
    -16px -16px #00ffcc;
  animation: confetti 3s infinite linear;
}

.nav-giveaway::after {
  box-shadow:
    12px -16px #ff4d4d,
    16px -12px #f5c518,
    16px 12px #00b4ff,
    12px 16px #4dff88,
    -12px 16px #f5c518,
    -16px 12px #ff00ff,
    -16px -12px #ffffff,
    -12px -16px #00ffcc;
  animation: confetti 4s infinite linear reverse;
}

@keyframes confetti {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}
@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 95px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: #030a1a;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px 0;
    display: none;
    z-index: 3500;
  }

  .nav-links.open {
    display: flex;
  }

  .news-slider {
    width: 95%;
    margin: 20px auto;
  }

  .caption {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .social-stats-full {
    flex-direction: column;
  }

  .nav-giveaway {
    font-size: 20px;
    margin: 15px 0;
  }
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 3000;
}

.nav-links {
  z-index: 3500;
}

.tagline-ticker {
  z-index: 2000;
}

body.menu-open {
  overflow: hidden;
}







.social-stats-full {
  max-width: 900px;
  margin: 0 auto;
}
.social-box-wide {
  position: relative;
  padding-top: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-box-wide::after {
  content: '';
  width: 32px;
  height: 2px;
  background: #60a5fa;
  display: block;
  margin: 14px auto 0;
  opacity: 0.6;
}
.count {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin: 6px 0;
  color: #ffffff;
}
.social-img-wide {
  width: 52px;                 /* 👈 sweet spot */
  margin-bottom: 14px;
  opacity: 0.95;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.social-box-wide:hover {
  transform: translateY(-4px);
}
.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}
/* =======================================
   REFINED SOCIAL STATS (CLEAN & MODERN)
======================================= */
.social-stats-section {
  padding: 80px 20px; /* Increased breathing room */
  text-align: center;
  color: #fff;
  background: #020617; /* Matches body for seamless flow */
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  opacity: 0.9;
}

.social-stats-full {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px; /* Wider gap for a premium feel */
  max-width: 1100px;
  margin: 0 auto;
}

.social-box-wide {
  flex: 1;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03); /* Extremely subtle card */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoother curve */
}

.social-img-wide {
  width: 48px; /* Balanced size */
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.9;
  filter: grayscale(20%); /* Slightly desaturated for "pro" look */
  transition: 0.3s;
}

.social-box-wide h3 {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8; /* Slate gray */
  margin-bottom: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.count {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 5px 0;
  color: #ffffff;
}

.social-btn {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  color: #60a5fa; /* Your original blue */
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover States */
.social-box-wide:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(96, 165, 250, 0.3); /* Soft blue glow */
}

.social-box-wide:hover .social-img-wide {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.social-btn:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* =======================================
   MOBILE ADAPTATION
======================================= */
@media (max-width: 768px) {
  .social-stats-full {
    flex-direction: column;
    gap: 20px;
  }
  
  .social-box-wide {
    padding: 25px;
    width: 90%;
    margin: 0 auto;
  }

  .count {
    font-size: 36px;
  }
}




/* Footer Fix */


.bp-footer-section ul {
  list-style: none; /* Removes default bullets */
  padding: 0;       /* Removes default indentation */
  margin: 0;
}

.bp-footer-section li {
  margin-bottom: 12px; /* Adds vertical spacing between items */
}

.bp-footer-section a {
  display: flex;
  align-items: center;    /* Vertically aligns icon and text */
  text-decoration: none;
  color: inherit;         /* Adjust as needed for your theme */
}

.bp-footer-section i {
  width: 24px;            /* Gives icons a fixed container width */
  text-align: center;     /* Centers narrower icons (like LinkedIn) */
  margin-right: 10px;     /* Creates uniform spacing after the icon */
  font-size: 1.2rem;      /* Adjust icon size */
}


/* =======================
   SLIDER MOBILE FIX
======================= */

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 KEY FIX for mobile */
}
/* =======================================
   CAR-INSPIRED SOCIAL STATS (REVVED UP)
======================================= */
.social-stats-section {
  padding: 80px 20px;
  background:#060C24;
  text-align: center;
}

.social-stats-full {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-box-wide {
  flex: 1;
  position: relative;
  background: linear-gradient(145deg, #0d1b31, #081221);
  /* Asymmetrical Aero Shape */
  border-radius: 20px 60px 20px 60px; 
  padding: 40px 25px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* The Racing Stripe */
.social-box-wide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #f5c518; /* Your brand gold */
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.4);
}

/* Instagram Specific Stripe color */
.social-box-wide.insta-style::before {
  background: #e1306c;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
}

/* Hover Effect: Skew and Glow */
.social-box-wide:hover {
  transform: scale(1.03) skewX(-2deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.3);
}

.social-img-wide {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

.social-box-wide h3 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4a5d7b;
  margin-bottom: 10px;
}

.count {
  font-size: 35px;
  font-weight: 900;
  font-style: italic; /* "Speed" look */
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 2px 2px 0px rgba(245, 197, 24, 0.8);
}

.insta-style .count {
  text-shadow: 2px 2px 0px #e1306c;
}

.social-box-wide p {
  color: #f5c518;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.insta-style p {
  color: #e1306c;
}

/* Redline Decor */
.redline {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 5px;
  background: #ff4b2b;
  box-shadow: 0 0 12px #ff4b2b;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .social-stats-full {
    flex-direction: column;
    align-items: center;
  }
  .social-box-wide {
    width: 90%;
  }
}
/*Faq Section*/
.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
  color: #eaeaea;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 0;
  text-align: left;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #4da3ff;
}

.icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: #bdbdbd;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}








:root {
  --bg-dark: #0a0a0b;
  --card-dark: #161618;
  --accent-blue: #0071e3;
  --text-main: #f5f5f7;
  --text-dim: #86868b;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Teaser Section */
.pdi-teaser {
  padding: 60px 20px;
  background: var(--bg-dark);
  text-align: center;
  color: var(--text-main);
}

.btn-primary {
  background: var(--accent-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: var(--transition);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Start at top for scrolling */
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Content */
.modal-content {
  background: var(--card-dark);
  width: 100%;
  max-width: 800px;
  border-radius: 28px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: var(--text-main);
  padding: 60px 40px;
  margin-bottom: 40px;
}

/* Sticky Close Button */
.close-btn {
  position: sticky;
  top: 20px;
  float: right;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -20px;
  margin-top: -20px;
}

/* Typography & Layout */
.pdi-article h1 { font-size: 3rem; margin-bottom: 10px; }
.pdi-article h2 { color: var(--accent-blue); margin: 40px 0 20px; }
.subtitle { color: var(--text-dim); font-size: 1.2rem; margin-bottom: 40px; }
.content-block p { line-height: 1.6; color: var(--text-dim); font-size: 1.1rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.stat-card h3 { font-size: 2.5rem; color: var(--accent-blue); margin-bottom: 5px; }

/* Image Placeholders */
.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(45deg, #1e1e1e, #2a2a2a);
  border-radius: 18px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .pdi-article h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 40px 20px; }
}
:root {
  /* Matching your existing blue accent */
  --accent-blue: #60a5fa; 
}

/* Ensure the modal is high enough to cover everything */
.modal-overlay {
  z-index: 9999;
}

/* Smooth Image scaling */
.image-placeholder img {
  display: block;
  height: auto;
  transition: transform 0.5s ease;
}

.image-placeholder:hover img {
  transform: scale(1.02);
}
/* =======================================
   PDI MODAL SECTION (MATCHES SITE THEME)
======================================= */

:root {
  --bg-dark: #020617;
  --card-dark: #050d26;
  --accent-blue: #60a5fa;
  --accent-gold: #f5c518;
  --text-main: #e8e8e8;
  --text-dim: #b5b5b5;
  --transition: all 0.35s ease;
}

/* Teaser Section */
.pdi-teaser {
  padding: 80px 20px;
  background: var(--bg-dark);
  text-align: center;
  color: var(--text-main);
  border-top: 1px solid #0b1738;
}

.pdi-teaser h2 {
  font-size: 2rem;
  color: var(--accent-gold);
}

.pdi-teaser p {
  max-width: 650px;
  margin: 12px auto 20px;
  color: var(--text-dim);
}

/* Button */
.btn-primary {
  background: var(--accent-gold);
  color: #020617;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #ffdb4d;
}

/* =======================================
   MODAL
======================================= */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
  overflow-y: auto;
  padding: 60px 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Content */

.modal-content {
  background: var(--card-dark);
  width: 100%;
  max-width: 850px;
  border-radius: 18px;
  position: relative;
  color: var(--text-main);
  padding: 60px 40px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Close Button */

.close-btn {
  position: sticky;
  top: 20px;
  float: right;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.close-btn:hover {
  background: var(--accent-gold);
  color: #020617;
}

/* =======================================
   ARTICLE CONTENT
======================================= */

.pdi-article h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.pdi-article h2 {
  color: var(--accent-gold);
  margin: 35px 0 15px;
}

.content-block p {
  line-height: 1.7;
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* =======================================
   STATS
======================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-card h3 {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.stat-card p {
  color: var(--text-dim);
}

/* =======================================
   IMAGES
======================================= */

.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  margin: 35px 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-placeholder:hover img {
  transform: scale(1.03);
}

/* =======================================
   MOBILE
======================================= */

@media (max-width: 600px) {

  .pdi-article h1 {
    font-size: 1.8rem;
  }

  .modal-content {
    padding: 40px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

}

.modal-content {
  animation: modalPop 0.35s ease;
}

@keyframes modalPop {
  from {
    transform: translateY(30px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.modal-content {
  animation: modalPop 0.35s ease;
}

@keyframes modalPop {
  from {
    transform: translateY(30px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
/* =======================================
   PDI TEASER LAYOUT
======================================= */

.pdi-teaser-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.pdi-teaser-text {
  flex: 1;
  text-align: left;
}

.pdi-teaser-text h2 {
  color: #f5c518;
  margin-bottom: 15px;
}

.pdi-teaser-text p {
  color: #b5b5b5;
  margin-bottom: 20px;
  line-height: 1.7;
}

.pdi-teaser-image {
  flex: 1;
}

.pdi-teaser-image img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(245,197,24,0.2);
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.pdi-teaser-image img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {

  .pdi-teaser-container {
    flex-direction: column;
    text-align: center;
  }

  .pdi-teaser-text {
    text-align: center;
  }

}
.pdi-teaser-image img {
  box-shadow:
    0 10px 35px rgba(0,0,0,0.6),
    0 0 25px rgba(245,197,24,0.15);
}

/* Layout for the Teaser with Image */
.pdi-flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px; /* Space between image and text */
  max-width: 1100px;
  margin: 0 auto;
}

.pdi-teaser-image {
  flex: 1;
  max-width: 450px;
}

.pdi-teaser-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.pdi-teaser-text {
  flex: 1;
  text-align: left; /* Align text to the left since image is on the side */
}

.pdi-teaser-text p {
  margin-bottom: 25px; /* Space above the button */
  color: #b5b5b5;
}

/* Responsive: Stack them on mobile */
@media (max-width: 850px) {
  .pdi-flex-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .pdi-teaser-text {
    text-align: center;
  }
  
  .pdi-teaser-image {
    max-width: 100%;
    order: -1; /* Keeps image on top when stacked */
  }
}
/* Container Fix */
.pdi-teaser {
  padding: 80px 0; /* Vertical spacing only */
  background: #020617; /* Matches your background */
}

.pdi-flex-container {
  display: flex;
  align-items: center; /* Vertically centers text to the image */
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* Internal horizontal padding */
  gap: 60px; /* Clean gap */
}

/* Image Side */
.pdi-teaser-image {
  flex: 1; /* Takes exactly 50% */
  display: flex;
  justify-content: center;
}

.pdi-teaser-image img {
  width: 100%;
  max-width: 500px; /* Prevents image from getting too huge */
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(245, 197, 24, 0.2); /* Your brand gold accent */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Text Side */
.pdi-teaser-text {
  flex: 1; /* Takes exactly 50% */
  text-align: left;
}

.pdi-teaser-text h2 {
  font-size: 2.5rem;
  color: #f5c518; /* Your gold brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.pdi-teaser-text p {
  color: #cfcfcf;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px; /* Keeps text lines readable */
}

/* Mobile Alignment Fix */
@media (max-width: 900px) {
  .pdi-flex-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .pdi-teaser-text {
    text-align: center;
    order: 2;
  }

  .pdi-teaser-image {
    order: 1;
    margin-bottom: 30px;
  }

  .pdi-teaser-text p {
    margin: 0 auto 30px; /* Centers text block */
  }
}






/* =======================================
   PDI TEASER (SIDE-BY-SIDE)
======================================= */
.pdi-teaser {
  padding: 80px 20px;
  background-color: #020617; /* Matches your body background */
}

/* We use a flex wrapper inside the container */
.pdi-teaser .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* Vertically centers text with image */
  justify-content: center;
  gap: 60px; /* Space between image and text */
}

.pdi-teaser-image {
  flex: 1;
  max-width: 500px;
}

.pdi-teaser-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(245, 197, 24, 0.1);
}

.pdi-teaser h2 {
  color: #f5c518;
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: left; /* Aligns to the image */
}

.pdi-teaser p {
  flex: 1;
  color: #cfcfcf;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: left;
}

/* Responsive: Stacks on mobile */
@media (max-width: 900px) {
  .pdi-teaser .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .pdi-teaser h2, .pdi-teaser p {
    text-align: center;
  }
}
/* =======================================
   PDI MODAL (APPLE STYLE)
======================================= */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px); /* Premium blur effect */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Allows scrolling from top */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 5000;
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #161618; /* Dark Apple-style card */
  width: 100%;
  max-width: 800px;
  border-radius: 28px;
  position: relative;
  padding: 60px 40px;
  margin-bottom: 40px;
  color: #f5f5f7;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.close-btn {
  position: sticky;
  top: 0;
  float: right;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  margin-top: -20px;
  margin-right: -20px;
  transition: 0.3s;
}

.close-btn:hover {
  background: rgba(245, 197, 24, 0.8);
  color: #000;
}

/* Article Styling */
.pdi-article h1 { font-size: 2.8rem; margin: 10px 0; color: #fff; }
.pdi-article h2 { color: #f5c518; margin-top: 40px; margin-bottom: 15px; }
.subtitle { color: #86868b; font-size: 1.2rem; margin-bottom: 40px; }
.badge { color: #f5c518; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.8rem; }

.content-block p {
  color: #d1d1d6;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-card h3 { font-size: 2.5rem; color: #f5c518; margin-bottom: 10px; }

.image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 20px;
  margin: 30px 0;
}

.article-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary {
  padding: 12px 30px;
  background: #f5c518;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
/* =======================================
   PDI ALIGNMENT FIX
======================================= */
.pdi-teaser {
  padding: 80px 20px;
  background-color: #020617;
  color: #fff;
}

/* Main Heading: Always on top, aligned left */
.pdi-main-title {
  color: #f5c518;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: left; /* Aligned left as requested */
  width: 100%;
}

/* Middle Row: Image Left, Text Right */
.pdi-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.pdi-teaser-image {
  flex: 1;
  max-width: 500px;
}

.pdi-teaser-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 24, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.pdi-teaser-text {
  flex: 1;
}

.pdi-teaser-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cfcfcf;
}

/* Bottom Button: Centered */
.pdi-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* Centers the button */
  margin-top: 20px;
}

.btn-primary {
  background-color: #f5c518;
  color: #020617;
  padding: 14px 40px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn-primary:hover {
  background-color: #e2b415;
  transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 850px) {
  .pdi-row {
    flex-direction: column;
    text-align: center;
  }
  .pdi-main-title {
    text-align: center; /* Center heading on mobile for better looks */
  }
  .pdi-teaser-text p {
    text-align: center;
  }
}





/* =======================================
   PDI ALIGNMENT FIX
======================================= */

.pdi-teaser {
  padding: 80px 20px;
  background-color: #020617;
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.pdi-main-title {
  color: #f5c518;
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: left;
}

/* Row containing image + text */
.pdi-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image */
.pdi-teaser-image {
  flex: 1;
}

.pdi-teaser-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  border: 1px solid rgba(245,197,24,0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* Text */
.pdi-teaser-text {
  flex: 1;
}

.pdi-teaser-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cfcfcf;
}

/* Button Center */
.pdi-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.btn-primary {
  background: #f5c518;
  color: #020617;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 850px) {

  .pdi-row {
    flex-direction: column;
    text-align: center;
  }

  .pdi-main-title {
    text-align: center;
  }

}
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}









/* Initial state: Hidden and shifted down */
.social-box-wide {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), 
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease; /* Keeps hover effect snappy */
}

.social-box-wide.show {
  opacity: 1;
  transform: translateY(0);
}

.social-box-wide:nth-child(1) { transition-delay: 0.1s; }
.social-box-wide:nth-child(2) { transition-delay: 0.3s; }
.social-box-wide:nth-child(3) { transition-delay: 0.5s; }
.social-box-wide {
  opacity: 0;
  transform: translateY(60px) rotateX(-10deg); 
  transform-origin: center;
  backface-visibility: hidden;
}

.social-box-wide.show {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}



/* Container fix to prevent horizontal scrollbars during animation */
.video-grid {
  overflow: hidden;
  padding: 20px 0;
}

.video-card {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(0.7); /* Start smaller for the zoom effect */
}

/* 1st and 3rd Video: Slide in from the LEFT */
.video-card:nth-child(odd) {
  transform: translateX(-100px) scale(0.7);
}

/* 2nd Video: Slide in from the RIGHT */
.video-card:nth-child(even) {
  transform: translateX(100px) scale(0.7);
}

/* The Active State (Triggered by Scroll) */
.video-card.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}