/*
Theme Name: Gabbarinfo Theme
Author: Gabbarinfo
Description: Custom theme for gabbarinfo.com
Version: 1.0
*/

/* RESET & GLOBAL STANDARDS */
* {
  box-sizing: border-box;
}

#fluid-canvas {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  /* keeps overall tone dark */
  color: #ffffff;
  overflow-x: hidden;
  /* Prevent horizontal scroll from any rouge elements */
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  perspective: 1000px;
  /* Enable 3D depth */
}

.loader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.preloader-video {
  max-width: 280px;
  /* Premium size */
  width: 100%;
  height: auto;
}

/* HEADER */
header {
  background: transparent;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}


header img {
  height: 50px;
}

.main-menu li {
  position: relative;
}

.main-menu li ul {
  display: none;
  position: absolute;
  background: #000;
  top: 100%;
  left: 0;
  padding: 10px;
}

.main-menu li:hover ul {
  display: block;
}

/* HERO SECTION */

.hero {
  height: 90vh;
  background: linear-gradient(135deg, #000000, #020617);
  /* near-black blue */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  color: #e5e7eb;
  /* neutral light gray instead of bluish */
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  background: #facc15;
  color: #000000;
  /* black text on yellow */
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.hero-btn:hover {
  background: #eab308;
  /* darker yellow hover */
}

/* GLOBAL SECTION HEADING */

section h2 {
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  color: #ffffff;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: #facc15;
  /* yellow divider line */
  border-radius: 2px;
  opacity: 0.9;
}


/* ================= SERVICES SECTION ================= */

.services {
  padding: 80px 0;
  text-align: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.services-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55);
}

/* DARK OVERLAY */
.services-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,
      rgba(2, 6, 23, 0.75),
      rgba(2, 6, 23, 0.9));
  z-index: 2;
}

/* CONTENT ABOVE VIDEO */
.services h2,
.services-marquee-wrapper,
.services-cta,
.particles {
  position: relative;
  z-index: 5;
}

/* HEADING */
.services h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 40px;
}

/* NEW MARQUEE STYLES */
.services-marquee-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Enable scroll snapping on mobile */
@media (max-width: 768px) {
  .services-marquee-wrapper {
    scroll-snap-type: x mandatory;
    scroll-padding: 0 5vw;
    /* Match the side gaps of 90vw cards */
    -webkit-overflow-scrolling: touch;
  }
}

.services-marquee-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.services-track {
  display: flex;
  width: fit-content;
  gap: 30px;
  cursor: grab;
  user-select: none;
}

.services-track:active {
  cursor: grabbing;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-350px * 5 - 30px * 5));
  }
}

.service-card-slide {
  width: 350px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: left;
  scroll-snap-align: center;
}

@media (max-width: 768px) {
  .service-card-slide {
    width: 90vw;
    /* Increased from 85vw for a more "full" look */
    max-width: 450px;
  }

  .services-track {
    gap: 15px !important;
    padding: 0 5vw;
    /* Add padding to track so first/last cards can center */
  }
}

.service-card-slide:hover {
  transform: translateY(-10px);
  border-color: #facc15;
}

.card-image {
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.service-card-slide:hover .card-image img {
  transform: scale(1.05);
}

.card-content-box {
  padding: 25px;
  background: #0b0f19;
  position: relative;
}

.card-content-box h3 {
  color: #facc15;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-content-box p {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-right: 40px;
  /* Space for arrow */
}

.service-arrow-btn {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  background: #facc15;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-arrow-btn i {
  font-size: 18px;
}

.service-arrow-btn:hover {
  background: #fff;
  transform: scale(1.1) rotate(-45deg);
}


/* ABOUT & MERGED CTA SECTION */

.about {
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
  /* Increased for rectangular feel */
  text-align: center;
  color: white;
  background: transparent;
}

.about-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45);
}

.about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,
      rgba(2, 6, 23, 0.7),
      rgba(2, 6, 23, 0.9));
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: auto;
}

.about-subtitle {
  color: #facc15;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-description {
  font-size: 18px;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 750px;
  margin: 0 auto 50px;
}

.about-main-heading {
  font-size: 48px;
  /* Reduced from 64px as requested */
  font-weight: 800;
  margin-bottom: 40px;
  color: white;
  line-height: 1.1;
}

/* CTA SECTION */

.cta {
  background: #020617;
  /* dark instead of blue */
  padding: 70px 40px;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.cta-btn {
  background: #facc15;
  /* yellow button */
  color: #000000;
  /* black text */
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.cta-btn:hover {
  background: #eab308;
  /* darker yellow hover */
}

.cta-btn {
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.35);
  /* yellow glow */
  transition: 0.3s ease;
}

.cta-btn:hover {
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.65);
  /* stronger yellow glow */
}

.services-cta {
  margin-top: 50px;
  text-align: center;
}

.services-cta a {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #facc15, #eab308);
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.services-cta a:hover {
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.6);
  transform: translateY(-3px);
}




/* ================= SOLUTIONS SLIDER SECTION ================= */

.solutions-section {
  padding: 80px 40px;
  background: #000;
  color: #fff;
  text-align: center;
}

.solutions-heading {
  margin-bottom: 50px;
}

.solutions-heading .small-title {
  color: #facc15;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.solutions-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.solutions-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.solution-slide {
  display: none;
  flex-direction: row;
  align-items: center;
}

.solution-slide.active {
  display: flex;
}

.solution-slide img {
  width: 50%;
  height: 380px;
  object-fit: cover;
  flex-shrink: 0;
}

.solution-content {
  flex: 1;
  padding: 40px 40px 40px 40px;
  text-align: left;
}

.solution-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.solution-content p {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 25px;
}

.yellow-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  background: #facc15;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.yellow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #111;
  transition: left 0.35s ease;
  z-index: -1;
}

.yellow-btn:hover {
  color: #facc15;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
}

.yellow-btn:hover::before {
  left: 0;
}

.solution-arrows {
  position: absolute;
  bottom: 20px;
  left: 30px;
  display: flex;
  gap: 10px;
}

.solution-prev,
.solution-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  user-select: none;
}

.solution-prev:hover,
.solution-next:hover {
  background: #facc15;
  color: #000;
  border-color: #facc15;
}

@media (max-width: 768px) {
  .solution-slide.active {
    flex-direction: column;
  }

  .solution-slide img {
    width: 100%;
    height: 220px;
  }

  .solution-content {
    padding: 25px;
    text-align: center;
  }

  .solution-arrows {
    position: static;
    justify-content: center;
    padding: 15px 0 20px;
  }

  .solutions-section {
    padding: 50px 20px;
  }
}

/* HERO VIDEO */


.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: -90px;
}

.hero-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.75));
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  z-index: 3;
  text-align: left;
  color: white;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: 85%;
}

.headline-container {
  display: grid;
  grid-template-areas: "headline-stack";
  align-items: start;
  margin-bottom: 40px;
  min-height: 230px;
}

/* HERO SECTION - REFINED TRANSITIONS & MOBILE */
.hero-headline {
  grid-area: headline-stack;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out;
  /* Sharper transition to avoid long overlap */
}

.hero-headline.active {
  opacity: 1;
  visibility: visible;
}

.hero-headline h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
  text-transform: capitalize;
}

.hero-headline p {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #d1d5db;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #facc15;
  padding: 16px 38px;
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  box-shadow: 0 6px 25px rgba(250, 204, 21, 0.6);
  background: #eab308;
  transform: translateY(-3px);
}

/* HERO BOTTOM BOXES */
.hero-bottom-boxes {
  position: absolute;
  bottom: 50px;
  right: 5%;
  display: flex;
  gap: 20px;
  z-index: 5;
}

.hero-info-box {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 22px 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 300px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
  /* Remove link underline */
  color: inherit !important;
  /* Prevent default link color */
}

.hero-info-box:hover {
  background: rgba(10, 10, 10, 0.9);
  border-color: #facc15;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-wrapper {
  width: 54px;
  height: 54px;
  background: #facc15;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper i {
  color: #000;
  font-size: 26px;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-info-box:hover .icon-wrapper i {
  transform: rotateY(180deg);
}

.box-text h4 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.box-text p {
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .hero-headline h1 {
    font-size: 60px;
  }

  .hero-info-box {
    width: 260px;
    padding: 18px 22px;
  }
}

@media (max-width: 1024px) {
  .hero-overlay {
    left: 5%;
    width: 90%;
    top: 45%;
  }

  .hero-bottom-boxes {
    bottom: 30px;
    right: 5%;
    left: 5%;
    justify-content: center;
    width: 90%;
  }

  .hero-info-box {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .hero-video {
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    /* Forces vertical centering */
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .hero-overlay {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 90% !important;
    max-width: 500px;
    margin-top: -60px;
    /* Offset to clear the logo/header area */
    text-align: center !important;
    z-index: 5 !important;
  }

  .headline-container {
    display: grid !important;
    grid-template-areas: "stack" !important;
    justify-content: center !important;
    min-height: 130px !important;
    margin-bottom: 25px !important;
    overflow: hidden !important;
    /* Contain the slides */
  }

  .hero-headline {
    grid-area: stack !important;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    /* Start from right */
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
  }

  .hero-headline.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* Slide to center */
  }

  .hero-headline.leaving {
    opacity: 0;
    visibility: visible;
    transform: translateX(-100%);
    /* Slide away to left */
  }

  /* When moving out, we can't easily do "slide out left" with just one class toggle
     unless we have a 'leaving' state. But "slide in from right" already looks like a slider.
     To make it feel like a continuous slider, we can use a small delay or just standard translateX. */

  .hero-headline h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  .hero-headline p {
    font-size: 14px !important;
    color: #cbd5e1 !important;
  }

  .hero-btn {
    padding: 10px 24px !important;
    font-size: 15px !important;
    border-radius: 50px !important;
    margin-top: 10px !important;
  }

  .hero-bottom-boxes {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    /* Strictly side-by-side */
    flex-wrap: nowrap !important;
    gap: 0 !important;
    z-index: 10 !important;
    background: #000;
  }

  .hero-info-box {
    flex: 1 !important;
    /* Force equal width */
    width: 50% !important;
    border-radius: 0 !important;
    padding: 10px 5px !important;
    gap: 6px !important;
    background: #000 !important;
    border: none !important;
    border-top: 1px solid rgba(250, 204, 21, 0.4) !important;
    justify-content: center !important;
    min-width: 1px !important;
    /* Prevent blowout */
    text-decoration: none !important;
    /* Remove link underline */
    display: flex !important;
    align-items: center !important;
  }

  .hero-info-box:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .icon-wrapper {
    width: 28px !important;
    height: 28px !important;
    border-radius: 5px !important;
  }

  .icon-wrapper i {
    font-size: 13px !important;
  }

  .box-text h4 {
    font-size: 10px !important;
    font-weight: 700 !important;
    margin-bottom: 1px !important;
    white-space: nowrap !important;
  }

  .box-text p {
    font-size: 8.5px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    opacity: 0.7 !important;
  }

  .hero-info-box:hover {
    transform: none !important;
    /* Avoid misalignment on hover */
    background: #111 !important;
  }
}

/* TESTIMONIALS SECTION */

.testimonials {
  position: relative;
  overflow: hidden;
  padding: 100px 40px;
  background: transparent;
  text-align: center;
  color: white;
}

/* VIDEO BACKGROUND */
.testimonials-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  /* Ensure video doesn't block clicks */
  filter: brightness(0.6);
}

/* OVERLAY */
.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.9));
  z-index: 2;
  pointer-events: none;
}

.testimonials h2 {
  font-size: 48px;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
  font-weight: 800;
}

/* TESTIMONIALS MARQUEE STYLES */
.testimonials-marquee-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-marquee-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  width: fit-content;
  gap: 30px;
  cursor: grab;
  user-select: none;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-box-slide {
  width: 400px;
  flex-shrink: 0;
  background: rgba(11, 15, 25, 0.25);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  text-align: left;
}

.testimonial-box-slide:hover {
  transform: translateY(-8px);
  background: rgba(17, 24, 39, 0.4);
  border-color: #facc15;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-user-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-icon-box {
  width: 54px;
  height: 54px;
  background: #facc15;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  font-size: 24px;
}

.user-meta h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.user-meta p {
  color: #facc15;
  font-size: 14px;
  margin: 2px 0 0;
  font-weight: 500;
}

.testimonial-content p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Enable scroll snapping on mobile */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 20px;
  }

  .testimonials h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .testimonials-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    transform: none;
  }

  .testimonials-marquee-wrapper {
    scroll-snap-type: x mandatory;
    scroll-padding: 0 5vw;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
  }

  .testimonial-box-slide {
    width: 85vw;
    max-width: 320px;
    padding: 20px;
  }

  .testimonials-track {
    gap: 15px !important;
    padding: 0 5vw;
  }

  .user-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 20px;
  }

  .user-meta h4 {
    font-size: 16px;
  }

  .testimonial-content p {
    font-size: 14px;
  }
}

/* TESTIMONIALS VIDEO BACKGROUND */


/* CONTENT ABOVE VIDEO */
.testimonials-marquee-wrapper {
  position: relative;
  z-index: 5;
}

/* WHY US SECTION */

.why-us {
  padding: 80px 40px;
  background: transparent;
  color: white;
  text-align: center;
}

.why-us h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.why-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.why-grid div {
  background: rgba(11, 15, 25, 0.75);
  /* transparent dark */
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
}

/* Why Us Box — glowing border */
.why-us-box {
  border: 1px solid rgba(250, 204, 21, 0.25) !important;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.08), inset 0 0 15px rgba(250, 204, 21, 0.03);
}

.why-us-box:hover {
  border-color: rgba(250, 204, 21, 0.6) !important;
}

/* Why Us Icon */
.why-us-icon {
  width: 50px;
  height: 50px;
  background: rgba(250, 204, 21, 0.1) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
  border: none !important;
  padding: 0 !important;
}

.why-us-icon i {
  font-size: 1.3rem;
  color: #facc15;
}

.why-grid div:hover {
  background: rgba(17, 24, 39, 0.9);
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.25);
}


/* WHY US VIDEO BACKGROUND */

.why-us {
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
  color: white;
}

/* VIDEO */
.why-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55);
}

/* OVERLAY */
.why-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,
      rgba(2, 6, 23, 0.6),
      rgba(2, 6, 23, 0.85));
  z-index: 2;
}

/* CONTENT ABOVE */
.why-us h2,
.why-grid {
  position: relative;
  z-index: 5;
}


/* PROCESS SECTION */

.process {
  padding: 80px 40px;
  background: transparent;
  color: white;
  text-align: center;
}

.process h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.process-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.process-grid .process-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 50px 30px;
  border-radius: 20px;
  width: 350px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(250, 204, 21, 0.3);
  /* Integrated Yellow Glow Border */
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
  /* Integrated Soft Yellow Glow */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-grid .process-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: #facc15;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
  /* Enhanced Yellow Glow on Hover */
}


/* PROCESS VIDEO BACKGROUND */

.process {
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
  color: white;
}

/* VIDEO */
.process-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55);
}

/* OVERLAY */
.process-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,
      rgba(2, 6, 23, 0.65),
      rgba(2, 6, 23, 0.9));
  z-index: 2;
}

/* CONTENT ABOVE VIDEO */
.process h2,
.process-grid {
  position: relative;
  z-index: 5;
}

/* REVEAL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* TRANSPARENT HEADER ON FRONT PAGE */

/* GLOBAL HEADER OVER VIDEO */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 9999;
}

/* HERO VIDEO MUST BE BELOW HEADER */
.hero-video video {
  z-index: 0;
}


body.home nav ul li a {
  color: white !important;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  /* HEADER */
  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    text-align: center;
  }


  /* HERO TEXT */
  .hero-overlay h1 {
    font-size: 28px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  /* SECTION PADDING */
  .services,
  .about,
  .testimonials,
  .why-us,
  .process {
    padding: 40px 20px;
  }

  .cta {
    padding: 50px 20px;
  }

  /* HEADINGS */
  .services h2,
  .about h2,
  .testimonials h2,
  .why-us h2,
  .process h2,
  .cta h2 {
    font-size: 26px;
  }

  /* GRIDS STACK */
  .service-grid,
  .testimonial-grid,
  .why-grid,
  .process-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* BOX WIDTH */
  .service-box,
  .testimonial-box,
  .why-grid div,
  .process-grid div {
    width: 95%;
  }

  /* CTA BUTTON */
  .cta-btn {
    display: inline-block;
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 6px;
    margin-top: 15px;
  }

}

/* =========================
   MOBILE SPACING FIX
   ========================= */

@media (max-width: 768px) {

  /* Equal section spacing */
  .services,
  .about,
  .testimonials,
  .why-us,
  .process,
  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Remove extra card stacking gaps */
  .service-box,
  .testimonial-box,
  .why-grid div,
  .process-grid div {
    margin-bottom: 20px;
  }

  /* Remove last card extra gap */
  .service-box:last-child,
  .testimonial-box:last-child,
  .why-grid div:last-child,
  .process-grid div:last-child {
    margin-bottom: 0;
  }

  /* Headings tighter */
  .services h2,
  .testimonials h2,
  .why-us h2,
  .process h2 {
    margin-bottom: 25px;
  }
}

/* FOOTER POLISH */

.site-footer {
  background: linear-gradient(180deg, #020617, #000000);
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer p {
  margin: 5px 0;
}

/* Footer links */

.site-footer a {
  color: #facc15;
  /* yellow instead of bluish */
  text-decoration: none;
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: #fde047;
  /* lighter yellow */
}

/* Optional tiny glow on hover */

.site-footer a:hover {
  text-shadow: 0 0 8px rgba(250, 204, 21, 0.6);
}


/* SECTION DIVIDER LINE */

.services,
.about,
.testimonials,
.why-us,
.process {
  position: relative;
}

.services::after,
.about::after,
.testimonials::after,
.why-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(250, 204, 21, 0.5),
      /* yellow divider */
      transparent);
}

/* FOOTER */

.site-footer {
  background: #000;
  text-align: center;
  padding: 50px 20px;
  color: #9ca3af;
  font-size: 14px;
}

.footer-socials {
  margin-bottom: 20px;
}

.footer-socials a {
  color: white;
  margin: 0 12px;
  font-size: 20px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #facc15;
  /* yellow */
  text-shadow: 0 0 12px rgba(250, 204, 21, 0.7);
}

.service-box:hover {
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.25);
  /* yellow glow */
  transform: translateY(-6px);
}

.cta-band {
  background: linear-gradient(90deg, #111827, #000000);
  padding: 70px 40px 90px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band h2 {
  color: #facc15;
  margin-bottom: 30px;
}

.cta-band-actions a {
  margin: 0 10px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 768px) {

  .cta-band-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
  }

  .cta-band-actions a {
    width: 80%;
    text-align: center;
  }

}


/* (Removed duplicate button styles to avoid conflicts) */

.expertise {
  padding: 100px 40px;
  background: #000;
  text-align: center;
  color: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.expertise-box {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  transition: 0.4s ease;
  cursor: pointer;
  display: block;
}

.expertise-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.35);
  /* stronger yellow glow */
}

/* VIDEO BLOCK */

.expertise-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
}

.expertise-box:hover video {
  opacity: 0.8;
}

.expertise-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 5;
  font-size: 22px;
  font-weight: 600;
  color: white;
}

@media (max-width: 768px) {

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-box {
    width: 100%;
    height: 220px;
  }

}

/* MOBILE â€“ ALWAYS SHOW VIDEO */
@media (max-width: 768px) {

  .expertise-box video {
    opacity: 0.85 !important;
    /* always visible */
    pointer-events: none;
  }

  .expertise-box:hover video {
    opacity: 0.85 !important;
    /* disable hover logic */
  }
}

/* CURSOR SMOKE */

.cursor-smoke {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.30;
  mix-blend-mode: screen;
  animation: smokeFade 1s linear forwards;
  z-index: 9999;
}

@keyframes smokeFade {
  0% {
    transform: scale(0.6);
    opacity: 0.40;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* YELLOW BUTTON (RESTORED) */
.cta-yellow-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #facc15, #eab308);
  color: black;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta-yellow-btn:hover {
  box-shadow: 0 0 28px rgba(250, 204, 21, 0.75);
  transform: translateY(-3px);
}

/* CTA SECTION REMOVED (MERGED INTO ABOUT) */

/* MOBILE */

/* MOBILE ADJUSTMENTS FOR MERGED SECTION */
@media (max-width: 768px) {
  .about.merge-cta {
    padding: 60px 20px 80px;
    /* Reduced top padding (80 -> 60) to move content up */
  }

  /* Specific selector to ensure color override */
  .about.merge-cta .about-subtitle {
    color: #facc15 !important;
    font-size: 21px !important;
    /* Bumped 1 more point as requested */
  }

  .about.merge-cta .about-description {
    font-size: 16px;
    margin-bottom: 60px !important;
    /* Increased spacing to give breathing room before heading */
  }

  .about.merge-cta .about-main-heading {
    font-size: 32px;
  }
}

/* SOLUTIONS SLIDER */

.solutions-section {
  padding: 100px 40px;
  background: #020617;
  /* unified dark */
  color: white;
}

.solutions-heading {
  margin-bottom: 60px;
}

.small-title {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 2px;
}

.solutions-heading h2 {
  font-size: 48px;
}

.solutions-slider {
  position: relative;
}

.solution-slide {
  display: none;
  align-items: center;
  gap: 50px;
}

.solution-slide.active {
  display: flex;
}

.solution-slide img {
  width: 50%;
  border-radius: 16px;
}

.solution-content {
  width: 50%;
  position: relative;
  z-index: 5;
}

.wd-type-cta {
  background: #ffcc00;
  color: #000;
  padding: 18px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-block;
  text-decoration: none;
  margin-top: 30px;
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
  text-transform: none;
  /* Let HTML/JS handle Title Case or just avoid ALL CAPS */
}

@media (max-width: 900px) {
  .wd-type-cta {
    padding: 22px 35px;
    font-size: 1.2rem;
    width: 100%;
    box-sizing: border-box;
    text-transform: capitalize;
    /* Force Title Case for mobile */
  }
}

.solution-arrows {
  margin-top: 40px;
}

.solution-arrows span {
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid #444;
  border-radius: 50%;
  transition: 0.3s ease;
}

.solution-arrows span:hover {
  border-color: #facc15;
  color: #facc15;
}

@media(max-width:768px) {
  .solution-slide {
    flex-direction: column;
  }

  .solution-slide img,
  .solution-content {
    width: 100%;
  }
}

/* PARTICLES CONTAINER */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* EACH DOT */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #facc15;
  border-radius: 50%;

  animation:
    fallParticle linear infinite,
    sparkle 1.8s ease-in-out infinite;
}

/* FALLING DOWN */
@keyframes fallParticle {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }

  20% {
    opacity: 0.9;
  }

  100% {
    transform: translateY(420px);
    opacity: 0;
  }
}

/* SPARKLE ONLY GLOW + OPACITY (NO TRANSFORM HERE) */
@keyframes sparkle {
  0% {
    box-shadow: 0 0 4px rgba(250, 204, 21, 0.3);
    opacity: 0.4;
  }

  50% {
    box-shadow: 0 0 14px rgba(250, 204, 21, 1),
      0 0 24px rgba(250, 204, 21, 0.7);
    opacity: 1;
  }

  100% {
    box-shadow: 0 0 4px rgba(250, 204, 21, 0.3);
    opacity: 0.4;
  }
}

/* ===============================
   SERVICES PAGE
================================ */

/* HERO SECTION */

.services-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.service-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
  z-index: 2;
}

.service-hero-content {
  position: relative;
  z-index: 5;
  color: white;
  max-width: 800px;
}

.service-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.service-hero-content p {
  font-size: 18px;
  color: #d1d5db;
}


/* PACKAGES PREVIEW */

.packages-preview {
  padding: 80px 40px;
  text-align: center;
  background: #020617;
  color: white;
}

.package-types {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.package-card {
  background: #111827;
  padding: 20px 30px;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(250, 204, 21, 0.3);
  /* Default glow border */
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.1);
  /* Default soft glow */
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: #facc15;
  transition: all 0.5s ease;
  z-index: -1;
  transform: translateX(-50%);
}

.package-card:hover::before {
  width: 100%;
}

.package-card:hover {
  color: #000;
}

.package-card:hover h3,
.package-card:hover p {
  color: #000;
}

.package-card * {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}


/* SERVICE SECTIONS */

.service-section {
  padding: 80px 40px;
  background: #020617;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-section.digital,
.service-section.web,
.service-section.seo,
.service-section.graphics,
.service-section.video {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
}

.service-section.digital::before,
.service-section.web::before,
.service-section.seo::before,
.service-section.graphics::before,
.service-section.video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  /* Darkened for readability */
  z-index: 2;
}

/* Ensure all content stays above the dark overlay */
.service-section h2,
.service-section .section-subtitle,
.service-section .service-grid,
.service-section .service-buttons,
.service-section .trust-row {
  position: relative;
  z-index: 5;
}

.service-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.service-grid {
  display: flex;
  gap: 30px;
  /* Standardize internal site grids to 30px, homepage forced to 50px above */
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #0b0f19;
  padding: 18px 25px;
  border-radius: 10px;
  min-width: 250px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(250, 204, 21, 0.3);
  /* Default glow border */
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.1);
  /* Default soft glow */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: #facc15;
  transition: all 0.5s ease;
  z-index: -1;
  transform: translateX(-50%);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.25);
  color: #000;
}

.service-card:hover h3,
.service-card:hover p {
  color: #000;
}

.service-card * {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}


/* BUTTONS */

.btn-primary {
  background: #facc15;
  color: black;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #facc15;
  color: #facc15;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
}

.service-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  text-align: center;
}


/* FORM */

.services-form {
  padding: 80px 40px;
  background: black;
  color: white;
  text-align: center;
}

.services-form form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.services-form input,
.services-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: none;
}

.services-form button {
  background: #facc15;
  color: black;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}


/* ===============================
   SERVICE PAGE - REDESIGN PILOT
================================ */

.service-section.split-type {
  padding: 60px 40px;
  /* Tighter gap to match professional sample */
  background: #000 !important;
  color: white;
}

/* Remove global overlay for split sections */
.service-section.split-type::before {
  display: none;
}

.service-split {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.service-media {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-media img,
.service-video {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.1);
  display: block;
  object-fit: cover;
}

.service-content {
  flex: 1;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-section.split-type h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
}

.service-section.split-type .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-bottom: 40px;
  color: #9ca3af;
}

.service-section.split-type .service-grid {
  display: flex;
  /* Ensure flex for card alignment */
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Zigzag only on desktop to prevent mobile corruption */
@media (min-width: 1025px) {
  .service-section.split-type.zigzag .service-split {
    flex-direction: row-reverse;
  }
}

.service-section.split-type .service-card {
  min-width: calc(50% - 10px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-section.split-type .service-buttons {
  justify-content: center;
  margin-top: 40px;
}

.service-section.split-type .trust-row {
  justify-content: center;
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

/* MOBILE FIX FOR SPLIT */
@media (max-width: 1024px) {
  .service-split {
    flex-direction: column;
    text-align: center;
    gap: 0;
    /* REMOVE GAP - we use margins for precision */
    padding: 0 20px;
  }

  /* REORDERING: Heading -> Subtitle -> Media -> Grid -> Buttons -> Trust */
  .service-content {
    display: contents;
  }

  .service-section.split-type h2 {
    order: 1;
    margin-top: 0;
    margin-bottom: 5px;
    /* Spacing between text and subtitle line */
    font-size: 32px;
  }

  .service-section.split-type h2::after {
    margin-top: 8px;
    /* Gap between text and gold divider line */
  }

  .service-section.split-type .section-subtitle {
    order: 2;
    margin-top: 5px;
    /* Close to gold line */
    margin-bottom: 20px;
    /* Space before image (Distance 1.4) */
    font-size: 16px;
  }

  .service-media {
    order: 3;
    width: 100%;
    margin-bottom: 25px;
  }

  .service-section.split-type .service-grid {
    order: 4;
    display: flex;
    flex-direction: row;
    /* Override global column */
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .service-section.split-type .service-card {
    min-width: 0;
    /* Precise calculation to match 15px gap with outer edges */
    width: calc(50% - 7.5px);
    padding: 15px 10px;
    flex: none;
  }

  .service-section.split-type .service-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .service-section.split-type .service-card p {
    font-size: 11px;
    line-height: 1.3;
  }

  .service-section.split-type .service-buttons {
    order: 5;
    width: 100%;
    margin-top: 25px;
    /* Reduced to match global feel */
    margin-bottom: 0;
    padding: 0;
    /* Remove any implicit padding */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-section.split-type .trust-row {
    order: 6;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
  }

  .service-section.split-type h2,
  .service-section.split-type .section-subtitle,
  .service-section.split-type .service-grid,
  .service-section.split-type .service-buttons,
  .service-section.split-type .trust-row {
    justify-content: center;
    text-align: center;
  }
}

/* ===============================
   SERVICES PAGE â€“ MOBILE ONLY
================================ */

@media (max-width: 768px) {

  .services-page .services-hero {
    height: 65vh;
    padding: 0 15px;
  }

  .services-page .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .services-page .hero-content p {
    font-size: 15px;
  }

  .services-page .packages-preview {
    padding: 50px 20px;
  }

  .services-page .package-types {
    flex-direction: column;
    gap: 12px;
  }

  .services-page .package-types div {
    width: 100%;
  }

  .services-page .service-section {
    padding: 50px 20px;
  }

  .services-page .service-section h2 {
    font-size: 26px;
  }

  .services-page .service-grid {
    flex-direction: column;
    gap: 12px;
  }

  .services-page .service-card {
    width: 100%;
  }

  .services-page .service-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .services-page .btn-primary,
  .services-page .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .services-page .services-form {
    padding: 50px 20px;
  }
}

/* ===============================
   SERVICE HERO FIX â€“ ISOLATED
================================ */

.services-page .services-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.services-page .services-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.services-page .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 900px;
  margin: auto;
  padding-top: 180px;
}

/* HEADER OVER VIDEO (SERVICE PAGE ONLY) */

.services-page header {
  position: absolute !important;
  width: 100%;
  background: transparent !important;
  z-index: 999;
}

/* MOBILE FIX */

@media (max-width: 768px) {

  .services-page .services-hero {
    height: 70vh;
  }

  .services-page .hero-content {
    padding-top: 130px;
  }

  .services-page .hero-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .services-page .hero-content p {
    font-size: 14px;
  }

}

/* STICKY HEADER BASE */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* SCROLLED STATE */
header.scrolled {
  background: #000 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}


/* ================= HEADER BASE ================= */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

header h2 {
  color: white;
  margin: 0;
}

/* DESKTOP NAV */

.desktop-nav>ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li {
  position: relative;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
}

/* ===== DESKTOP SUBMENU â€“ FINAL FIX ===== */

.desktop-nav ul li {
  position: relative;
}

/* Submenu container */
.desktop-nav ul li ul {
  position: absolute;
  top: 100%;
  /* directly below parent */
  left: 0;
  background: black;
  display: none;
  flex-direction: column;
  min-width: 220px;
  padding: 0;
  /* Changed from 8px 0 */
  border: 1px solid #f5c518;
  border-radius: 8px;
  z-index: 9999;
  gap: 0 !important;
  /* Force zero gap between items */
}

/* SHOW MENU */
.desktop-nav ul li:hover>ul,
.desktop-nav ul li ul:hover {
  display: flex;
}

/* Items */
.desktop-nav ul li ul li a {
  display: block;
  padding: 10px 18px;
  /* Reduced vertical padding */
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #f5c518;
  transition: 0.2s;
  line-height: 1.4;
  /* Ensure text is centered */
}

.desktop-nav ul li ul li:last-child a {
  border-bottom: none;
}

.desktop-nav ul li ul li a:hover {
  background: #f5c518;
  color: black;
}

/* HAMBURGER */

.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}

/* MOBILE MENU */

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: black;
  transition: 0.3s;
  padding-top: 80px;
  z-index: 10000;
  overflow-y: auto;
  /* ADD THIS */
  -webkit-overflow-scrolling: touch;
  /* ADD THIS */
}


.mobile-nav.active {
  right: 0;
}

.mobile-menu {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav ul li ul {
    display: none;
  }

  .mobile-nav ul li.open>ul {
    display: block;
  }


  header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .logo {
    flex: 1;
  }

  .hamburger {
    margin-left: auto;
  }


}

/* ===== FORCE REMOVE UNDERLINES FROM SERVICE CARDS ===== */

.service-box,
.service-box:hover,
.service-box:focus,
.service-box:active {
  text-decoration: none !important;
  color: inherit !important;
}

.service-box h3,
.service-box p,
.service-box i,
.service-box span {
  text-decoration: none !important;
  color: inherit !important;
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* ===== SUBMENU PROFESSIONAL STYLING ===== */

/* Desktop Submenu Box */
.desktop-nav ul li ul {
  border: 1px solid #f5c518;
  border-radius: 8px;
  overflow: hidden;
}

/* Desktop Submenu Items */
.desktop-nav ul li ul li a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid #f5c518;
  color: white;
  text-decoration: none;
  transition: 0.25s ease;
}

/* Remove last border line */
.desktop-nav ul li ul li:last-child a {
  border-bottom: none;
}

/* Hover Effect Desktop */
.desktop-nav ul li ul li a:hover {
  background: #f5c518;
  color: black;
}

.mobile-menu li a {
  border: 1px solid #f5c518;
  border-radius: 6px;
  padding: 12px;
  display: block;
}

.mobile-menu li a:hover {
  background: #f5c518;
  color: black;
}

/* ================= SERVICE PAGE FIXES ONLY ================= */

/* Desktop Menu Cut Fix */
header {
  box-sizing: border-box;
}

.desktop-nav ul {
  flex-wrap: wrap;
}

/* Hamburger Always Visible */
.hamburger {
  z-index: 10002;
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {

  .services-hero h1 {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .services-hero p {
    font-size: 14px;
  }

}

/* ===== FINAL HEADER STABILITY ===== */
header {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
}

/* ===== SERVICE PAGE RIGHT WHITE LINE FIX ===== */

.services-hero,
.services-hero video {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow: hidden !important;
}

body.services-page {
  overflow-x: hidden;
}

/* ================= GLOBAL MOBILE RESPONSIVE FIX ================= */

/* Prevent horizontal scroll everywhere */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
}

/* Fix header width */
header {
  width: 100% !important;
  max-width: 100% !important;
  left: 0;
  right: 0;
}

/* HERO VIDEO FULL WIDTH FIX */
.hero,
.hero video,
.services-hero,
.services-hero video {
  width: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
}

/* Fix dark patch on right */
.hero,
.services-hero {
  overflow: hidden;
}

/* Hamburger visibility */
.hamburger {
  right: 15px !important;
  top: 15px !important;
  z-index: 9999 !important;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  /* Header padding */
  header {
    padding: 10px 20px !important;
  }

  /* Logo size */
  .logo img {
    height: 40px !important;
  }

  /* Hero text */
  .hero h1,
  .services-hero h1 {
    font-size: 26px !important;
    line-height: 1.2;
  }

  .hero p,
  .services-hero p {
    font-size: 14px !important;
  }

}

/* ===== HAMBURGER ALWAYS VISIBLE ===== */
.hamburger {
  position: relative;
  z-index: 99999 !important;
}

.mobile-menu {
  z-index: 9999 !important;
}

/* ===== GLOBAL OVERFLOW SURGICAL FIX (NO DESIGN CHANGE) ===== */

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
}

/* Fix flex grids (Allowing overflow for hover lift) */
.process-grid,
.service-grid,
.testimonial-grid,
.why-grid {
  max-width: 100%;
  overflow: visible !important;
}

/* Prevent cards pushing layout */
.service-box,
.service-card,
.testimonial-box {
  max-width: 100%;
  box-sizing: border-box;
}

/* Hero videos must not exceed screen */
.hero,
.hero video,
.services-hero,
.services-hero video {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Header width stability */
header {
  max-width: 100%;
  box-sizing: border-box;
}

/* ===== SERVICE PAGE MOBILE ALIGN FIX (FINAL) ===== */
@media (max-width: 768px) {

  .services-page .service-buttons {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-page .btn-primary,
  .services-page .btn-secondary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .services-page .package-types {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-page .package-types div {
    width: 100%;
    box-sizing: border-box;
  }

}

/* ===== SERVICE PAGE BUTTON ALIGNMENT ===== */
.services-page .service-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== HOMEPAGE BUTTON STYLES (REUSE) ===== */
.cta-primary {
  background: #f4c20d;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.cta-primary:hover {
  background: #e0ae00;
}

.cta-whatsapp {
  background: #22c55e;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.cta-whatsapp:hover {
  background: #16a34a;
}



.expertise-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ===== EXPERTISE VIDEO DARK SHADE ONLY ===== */

.expertise-box {
  position: relative;
}

.expertise-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* darkness level */
  z-index: 1;
  border-radius: 16px;
  /* keep same as your box */
}

.expertise-content {
  position: relative;
  z-index: 2;
  /* text above shade */
}

/* ===== EXPERTISE TEXT CENTER ALIGN ===== */

.expertise-content {
  text-align: center;
  left: 0;
  right: 0;
  padding: 0 15px;
}

.expertise-content h3,
.expertise-content p {
  margin-left: auto;
  margin-right: auto;
}

/* ===== EXPERTISE VERTICAL CENTER ===== */

.expertise-box {
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
}

.expertise-content {
  position: relative;
  /* remove bottom sticking */
  bottom: auto;
}

/* LEGAL PAGES */

.legal-page {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

.legal-content {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  max-width: 650px;
  margin: 10px auto 40px auto;
  color: #cbd5f5;
  font-size: 16px;
  line-height: 1.6;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.4;
}

/* Stronger card polish */
.service-card {
  background: linear-gradient(145deg, #0b0f19, #05070c);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.25);
  border-color: rgba(250, 204, 21, 0.35);
}

.trust-row {
  margin-top: 20px;
  font-size: 13px;
  color: #9ca3af;
  letter-spacing: 0.3px;
}

/* FIX CARD HOVER CUT â€“ SERVICES PAGE */
.services-page .service-section {
  overflow: visible !important;
}

.services-page .service-grid {
  overflow: visible !important;
}

.service-card:hover {
  transform: translateY(-10px);
}

.package-card {
  background: linear-gradient(145deg, #0b0f19, #05070c);
  padding: 22px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
  min-width: 160px;
}

.package-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.package-card p {
  font-size: 13px;
  color: #9ca3af;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.25);
}

/* Highlight Growth */
.package-card.highlight {
  border-color: rgba(250, 204, 21, 0.5);
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.15);
}

/* (Removed conflicting service page button overrides) */

/* ===== MOBILE SERVICE CARD HOVER SIMULATION ===== */
@media (max-width: 768px) {

  /* Always show hover glow */
  .services-page .service-card {
    background: linear-gradient(145deg, #0b0f19, #05070c);
    border: 1px solid rgba(250, 204, 21, 0.35);
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.25);
    transform: translateY(-4px);
  }

  /* Tap feedback only */
  .services-page .service-card:active {
    background: #111827;
    /* dark blue click acknowledgement */
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.45);
  }

}

/* Standardize Service Page buttons to match homepage design */
.services-page .service-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px auto;
}

/* Ensure mobile view stacks buttons correctly for better usability */
@media (max-width: 768px) {
  .services-page .service-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .services-page .service-buttons .cta-primary,
  .services-page .service-buttons .cta-whatsapp {
    width: 100%;
    /* Perfectly flush with box edges now */
    text-align: center;
    box-sizing: border-box;
  }
}

/* Responsive Hero Text Fix */
.service-hero-content {
  padding: 0 20px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 24px !important;
  }

  .services-hero p {
    font-size: 13px !important;
  }
}

/* Canva-style Heading Wipe Effect */
.reveal-wipe {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
}

.reveal-wipe.active,
.active .reveal-wipe {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* DESKTOP-ONLY BUTTON WIPE HOVER EFFECT (ROBUST GRADIENT VERSION) */
@media (min-width: 769px) {

  /* Yellow/Primary Buttons */
  .btn-primary,
  .btn-secondary,
  .cta-primary,
  .cta-yellow-btn,
  .hero-btn,
  .services-cta a,
  .yellow-btn {
    display: inline-block !important;
    background-image: linear-gradient(to right, #000000 50%, #facc15 50%) !important;
    background-size: 200% 100% !important;
    background-position: right bottom !important;
    color: #000000 !important;
    transition: background-position 0.4s cubic-bezier(0.77, 0, 0.175, 1), color 0.4s ease, border-color 0.4s ease !important;
    border: 2px solid transparent !important;
    /* Standardize borders for even wipe */
    box-sizing: border-box !important;
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .cta-primary:hover,
  .cta-yellow-btn:hover,
  .hero-btn:hover,
  .services-cta a:hover,
  .yellow-btn:hover {
    background-position: left bottom !important;
    color: #f4c20d !important;
    border-color: #000000 !important;
  }

  /* Specific fix for Secondary (outlined) buttons */
  .btn-secondary {
    border: 2px solid #facc15 !important;
    color: #facc15 !important;
    background-image: linear-gradient(to right, #000000 50%, transparent 50%) !important;
  }

  .btn-secondary:hover {
    color: #f4c20d !important;
    border-color: #000000 !important;
  }

  /* WhatsApp Green Buttons */
  .cta-whatsapp {
    display: inline-block !important;
    background-image: linear-gradient(to right, #ffffff 50%, #22c55e 50%) !important;
    background-size: 200% 100% !important;
    background-position: right bottom !important;
    color: #ffffff !important;
    transition: background-position 0.4s cubic-bezier(0.77, 0, 0.175, 1), color 0.4s ease !important;
    border: 2px solid transparent !important;
  }

  .cta-whatsapp:hover {
    background-position: left bottom !important;
    color: #22c55e !important;
    border-color: #ffffff !important;
  }
}

/* ================= BLOG SECTION ================= */
.blog-section {
  padding: 100px 40px;
  background: #000;
  color: white;
}

.blog-container {
  max-width: 1300px;
  margin: 0 auto;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 48px;
  margin: 8px 0 0;
  font-weight: 700;
  color: white;
}

.small-title {
  color: #facc15;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: block;
}

.explore-btn {
  background: #facc15;
  color: #000 !important;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none !important;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.explore-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.blog-card {
  background: #0b0f19;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.blog-img {
  height: 320px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
}

.blog-category {
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.blog-author {
  color: #9ca3af;
}

.blog-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.blog-card h3 a {
  color: white !important;
  text-decoration: none !important;
}

.blog-card h3 a:visited {
  color: white !important;
}

.blog-card p {
  color: #9ca3af;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.read-more {
  color: #facc15 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Mini Cards (Recent) */
.blog-recent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card.mini {
  display: flex;
  height: 150px;
}

.mini-img {
  width: 150px;
  flex-shrink: 0;
}

.mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-content span {
  font-size: 11px;
  margin-bottom: 3px;
}

.blog-card.mini h4 {
  font-size: 17px;
  margin: 5px 0 8px;
  line-height: 1.4;
  font-weight: 600;
}

.blog-card.mini h4 a {
  color: white !important;
  text-decoration: none !important;
}

.blog-card.mini h4 a:visited {
  color: white !important;
}

.read-more-simple {
  color: #facc15 !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
}

.read-more-simple:visited {
  color: #facc15 !important;
}

/* ================= FOOTER REDESIGN (FINAL) ================= */
.site-footer {
  background: #000;
  padding: 50px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
}

.footer-cta-banner {
  background: linear-gradient(90deg, #bef264 0%, #facc15 100%);
  padding: 70px 80px;
  border-radius: 30px;
  margin-bottom: 100px;
  color: #000;
  display: flex;
  justify-content: center;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 60px;
}

.banner-content h2 {
  font-size: 64px;
  line-height: 1;
  margin: 0;
  flex: 1.2;
  font-weight: 800;
}

.banner-form {
  flex: 1;
  width: 100%;
}

/* WPForms Footer Premium Styling */
.banner-form .wpforms-container {
  background: #000 !important;
  padding: 8px !important;
  border-radius: 60px !important;
  margin-bottom: 25px !important;
  width: 100% !important;
}

/* Make Email Label Yellow and Visible */
.banner-form .wpforms-field-label {
  color: #facc15 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  margin-bottom: 5px !important;
  display: block !important;
}

/* Hide labels if specified, but user wants them visible now */
.banner-form .wpforms-label-hide .wpforms-field-label {
  display: block !important;
  /* Overriding previous hide for user request */
}

.footer-cta-banner div.wpforms-container-full .wpforms-form {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 0 !important;
}

.footer-cta-banner div.wpforms-container-full .wpforms-form .wpforms-field-container {
  flex: 1 !important;
  width: 100% !important;
  padding: 0 !important;
  border: none !important;
}

.footer-cta-banner div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0 10px !important;
  margin: 0 !important;
}

.footer-cta-banner div.wpforms-container-full .wpforms-form input[type=email] {
  background: #0b0f19 !important;
  /* Dark Blue from theme */
  border: 1px solid rgba(250, 204, 21, 0.2) !important;
  color: #facc15 !important;
  /* Input text Yellow */
  width: 100% !important;
  padding: 15px 25px !important;
  font-size: 16px !important;
  border-radius: 40px !important;
}

/* Placeholder color */
.footer-cta-banner div.wpforms-container-full .wpforms-form input[type=email]::placeholder {
  color: rgba(250, 204, 21, 0.6) !important;
}

.footer-cta-banner div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
}

.footer-cta-banner div.wpforms-container-full .wpforms-form button.wpforms-submit {
  background: #facc15 !important;
  color: #000 !important;
  height: 54px !important;
  padding: 0 40px !important;
  border-radius: 40px !important;
  font-weight: 800 !important;
  border: none !important;
  transition: 0.3s !important;
  cursor: pointer !important;
  text-transform: uppercase;
  font-size: 14px;
}

.footer-cta-banner div.wpforms-container-full .wpforms-form button.wpforms-submit:hover {
  background: #fff !important;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-icons span {
  font-weight: 700;
  font-size: 15px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  background: #000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: 0.3s;
}

.footer-social-icons a:hover {
  background: white;
  color: #000;
  transform: scale(1.1);
}

/* MAIN GRID FOR COLUMNS */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto 80px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
}

.footer-tagline {
  color: #facc15;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 15px;
  letter-spacing: 1px;
}

.footer-about-text {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 35px;
  position: relative;
  font-weight: 700;
  color: white;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: #facc15;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 15px;
}

.footer-links-list a {
  color: #9ca3af;
  text-decoration: none !important;
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-links-list a:hover {
  color: #facc15;
  padding-left: 8px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact-info li {
  display: flex;
  gap: 8px;
  /* Further reduced from 12px to keep icons tightly aligned */
  margin-bottom: 20px;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.4;
  align-items: flex-start;
}

.footer-contact-info i {
  color: #facc15;
  margin-top: 3px;
  /* Slightly adjusted for 1.4 line-height */
  width: 16px;
  /* Narrower container for tighter feel */
  font-size: 16px;
  flex-shrink: 0;
  text-align: left;
  /* Changed from center to pull icon closer to text */
}

.footer-bottom {
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #6b7280;
  font-size: 14px;
}

/* Logo consistency in footer */
.footer-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 1200px) {
  .footer-main-grid {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .banner-content h2 {
    font-size: 48px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 70px 20px;
  }

  .blog-header h2 {
    font-size: 36px;
  }

  .blog-img {
    height: 300px;
  }

  .blog-card.mini {
    flex-direction: column;
    height: auto;
  }

  .mini-img {
    width: 100%;
    height: 200px;
  }

  .footer-cta-banner {
    padding: 50px 30px;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .banner-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .footer-main-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 40px;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-info li,
  .footer-social-icons {
    justify-content: center;
  }
}

/* DIGITAL MARKETING PAGE */

.dm-page {
  background: #000;
}

.dm-hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px;
}

.dm-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.dm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
  z-index: 1;
}

.dm-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.dm-subheading {
  color: #facc15;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: 600;
  display: block;
  position: relative;
}

.dm-subheading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 15px auto 0;
  background: #facc15;
  border-radius: 2px;
}

.dm-main-heading {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 500;
}

.dm-description {
  font-size: 16px;
  color: #d1d5db;
  max-width: 750px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.dm-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.dm-pillar {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.dm-pillar:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.dm-pillar i {
  color: #facc15;
  font-size: 20px;
}

.dm-pillar span {
  font-size: 14px;
  font-weight: 500;
  color: #f3f4f6;
}

.dm-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
}

.dm-micro-trust {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}



/* MOBILE RESPONSIVENESS for DM PAGE */
@media (max-width: 768px) {
  .dm-hero {
    padding: 120px 20px 60px 20px;
    height: auto;
    min-height: 50vh;
  }

  .dm-main-heading {
    font-size: 34px;
  }

  .dm-subheading {
    font-size: 12px;
  }

  .dm-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dm-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .dm-hero-buttons a {
    width: 100% !important;
    max-width: 220px;
    margin: 0 !important;
  }
}



/* SECTION 2: WHY CHOOSE US */

.dm-why-choose {
  padding: 60px 0;
  background: #000;
  position: relative;
}

.dm-section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.dm-section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}

.dm-section-desc {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 40px;
}

.dm-section-cta {
  display: flex;
  justify-content: center;
}

.cta-discuss {
  display: inline-block;
  padding: 15px 35px;
  background-image: linear-gradient(to right, #000000 50%, #facc15 50%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  color: #000 !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease-in-out !important;
  border: 2px solid #000000;
}

.cta-discuss:hover {
  background-position: left bottom !important;
  color: #facc15 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* FEATURE BOXES GRID */
.dm-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.dm-feature-box {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(250, 204, 21, 0.3);
  /* Default glow border */
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
  /* Default soft glow */
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  cursor: pointer;
}

/* SWIPE EFFECT */
.dm-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #facc15;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.dm-feature-box:hover::before,
.dm-feature-box:active::before {
  left: 0;
}

.dm-feature-box:hover,
.dm-feature-box:active {
  transform: translateY(-10px);
  border-color: #facc15;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
  /* Enhanced glow on hover */
}

.dm-fbox-icon {
  font-size: 40px;
  color: #facc15;
  margin-bottom: 25px;
  transition: all 0.5s ease;
  display: block;
}

.dm-feature-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.5s ease;
}

.dm-feature-box p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.6;
  transition: all 0.5s ease;
}

/* HOVER TEXT COLORS */
.dm-feature-box:hover .dm-fbox-icon,
.dm-feature-box:active .dm-fbox-icon {
  color: #000 !important;
}

.dm-feature-box:hover h3,
.dm-feature-box:active h3 {
  color: #000 !important;
}

.dm-feature-box:hover p,
.dm-feature-box:active p {
  color: #1f2937 !important;
}

/* MOBILE RESPONSIVENESS for SECTION 2 */
@media (max-width: 768px) {
  .dm-why-choose {
    padding: 60px 20px;
  }

  .dm-section-title {
    font-size: 32px;
  }

  .dm-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dm-feature-box {
    padding: 35px 25px;
  }
}

/* STRATEGY SECTION - ALTERNATING ROWS */
.dm-strategy {
  padding: 40px 0 0 0;
  /* Removed bottom padding */
  background: #000;
}

.dm-strategy-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.dm-strategy-row:last-child {
  margin-bottom: 0;
  /* Remove gap for the final row */
}

.dm-strategy-row.reverse {
  flex-direction: row-reverse;
}

.dm-strategy-content {
  flex: 1;
}

.dm-strategy-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #fff;
}

.dm-strategy-content p {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.7;
}

.dm-strategy-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-strategy-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.dm-strategy-row:hover .dm-strategy-image img {
  transform: scale(1.05);
}

/* STRATEGY CTA (Integrated) */
.dm-strategy-cta {
  text-align: center;
  margin-top: 20px;
  /* Precise control over the gap */
  padding-bottom: 80px;
  background: #000;
}

.cta-analyse {
  display: inline-block;
  padding: 14px 32px;
  background-image: linear-gradient(to right, #000000 50%, #facc15 50%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  color: #000 !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  transition: all 0.3s ease-in-out !important;
  border: 2px solid #facc15;
  text-transform: none;
  /* Ensure Title Case from HTML is preserved */
}

.cta-analyse:hover {
  background-position: left bottom !important;
  color: #facc15 !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
}

/* MOBILE RESPONSIVENESS FOR STRATEGY ROWS */
@media (max-width: 768px) {

  .dm-strategy-row,
  .dm-strategy-row.reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    /* Reduced from 80px */
    text-align: center;
  }

  .dm-strategy-row:last-child {
    margin-bottom: 0px;
    /* Remove gap before button on mobile */
  }

  .dm-strategy-cta {
    margin-top: 10px;
    /* Even tighter gap on mobile */
  }

  .dm-strategy-content h2 {
    font-size: 28px;
  }

  .dm-strategy-content p {
    font-size: 16px;
  }

}

/* DM PROCESS SECTION - SHARED STYLES */
.process-icon-wrap {
  width: 80px;
  height: 80px;
  min-width: 80px;
  max-width: 80px;
  flex-shrink: 0;
  align-self: center;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.process-icon-wrap i {
  font-size: 32px;
  color: #000;
  z-index: 2;
}

.process-icon-glow {
  display: none;
}

.shape-rounded {
  border-radius: 20px;
  background: #facc15;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
  border: none;
}

.color-yellow {
  background: radial-gradient(circle, rgba(250, 204, 21, 0.8) 0%, transparent 70%);
}

.process-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.process-card p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.6;
}

/* MOTION DIVIDER STRIP - DESKTOP ONLY */
.motion-strip {
  width: 100%;
  height: 50px;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.motion-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
}

.motion-track>span {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  padding-right: 20px;
  display: inline-block;
  letter-spacing: 1px;
}

.motion-dot {
  color: #facc15;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* HIDE ON MOBILE */
@media (max-width: 768px) {
  .motion-strip {
    display: none;
  }
}

/* WEBSITE DESIGN PAGE */
.wd-page {
  background: #000;
}

.wd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Centered vertically on overlay */
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px;
  box-sizing: border-box;
  text-align: center;
}

.wd-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Slightly darker for readability */
  z-index: 1;
}

.wd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px !important;
  margin: 0 auto;
}

.wd-hero-title {
  font-size: 58px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  text-transform: none;
}

.wd-hero-title .text-yellow {
  color: #facc15;
}

.wd-hero-subline {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 45px;
  font-weight: 400;
}

.wd-hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wd-micro-trust {
  font-size: 13px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wd-hero-title {
    font-size: 36px;
  }

  .wd-hero-subline {
    font-size: 16px;
  }

  .wd-micro-trust {
    font-size: 11px;
    letter-spacing: 1px;
  }
}





/* SECTION 2: DIAGNOSIS */
.wd-diagnosis {
  position: relative;
  padding: 120px 0;
  background: #000;
  overflow: hidden;
  text-align: center;
}

.wd-diag-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
  /* Subtler than hero */
}

.wd-diag-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.wd-diagnosis .container {
  position: relative;
  z-index: 2;
}

.wd-section-header {
  margin-bottom: 70px;
}

.wd-diag-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.wd-diag-subtitle {
  font-size: 20px;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
}

.wd-diag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.wd-diag-card {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Sophisticated subtle border */
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.wd-diag-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.05), transparent);
  transition: 0.5s;
}

.wd-diag-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(20, 20, 20, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wd-diag-card:hover::before {
  left: 100%;
}

.wd-diag-icon {
  font-size: 44px;
  color: #facc15;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
  position: relative;
  display: inline-block;
}

.diag-icon-stack {
  position: relative;
  display: inline-block;
}

.diag-arrow {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.5em !important;
  transform: rotate(45deg);
  opacity: 0.9;
}

.wd-diag-card h3,
.wd-diag-card h3 span {
  font-size: 22px;
  color: #facc15;
  /* Entire heading yellow as requested */
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.wd-diag-card p {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.6;
}

.wd-diag-card strong {
  color: #fff;
  font-weight: 600;
}

.wd-diag-footer {
  margin-top: 40px;
}

.wd-micro-line {
  font-size: 18px;
  color: #fff;
  margin-bottom: 35px;
  font-weight: 500;
}

/* Responsive Diagnosis */
@media (max-width: 1024px) {
  .wd-diag-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
    margin: 0 auto 50px auto;
    gap: 25px;
  }

  .wd-diag-title {
    font-size: 2.2rem;
  }

  .wd-diag-card {
    padding: 25px 20px;
    align-items: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    width: 92%;
    margin: 0 auto;
    min-height: auto;
  }

  .wd-diag-icon {
    font-size: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .wd-diag-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .wd-diag-card p {}
}

@media (max-width: 768px) {
  .wd-diagnosis {
    padding: 80px 0;
  }
}

/* DM PAGE PROCESS GLOW FIXES */
.dm-process-next {
  padding: 50px 0 80px 0;
  /* top right bottom left */
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Background Glow/Dust Effect */
.dm-process-next::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 10%;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.dm-process-next::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.dm-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

/* TIMELINE STYLES */
.dm-timeline-col {
  position: relative;
  padding-left: 60px;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  padding-bottom: 52px;
  /* Match Right Fit Box padding (50px) + border (2px) for perfect alignment */
}

/* TIMELINE TOP FLARE – PREMIUM STAR */
.timeline-flare {
  position: absolute;
  top: -22px;
  left: -2px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 10px 2px #fff,
    0 0 20px 10px #facc15,
    0 0 40px 20px rgba(250, 204, 21, 0.4);
  z-index: 10;
  pointer-events: none;
  animation: flare-pulse 3s infinite alternate;
}

/* Horizontal Ray */
.timeline-flare::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.8;
}

/* Vertical Ray */
.timeline-flare::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, #fff, transparent);
  opacity: 0.8;
}

@keyframes flare-pulse {
  0% {
    transform: scale(0.9);
    filter: brightness(1);
  }

  100% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}



.dm-timeline-item {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-timeline-item:last-of-type {
  border-bottom: none;
  margin-bottom: auto;
  /* Pushes button down */
  padding-bottom: 0;
}

/* Icons styling - Enhanced */
.dm-t-icon {
  position: absolute;
  left: -96px;
  /* Adjusted for larger size */
  top: -5px;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 30% 30%, #2a2a2a, #000);
  border: 3px solid #facc15;
  /* Thicker border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  font-size: 32px;
  /* Larger icon */
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.3), inset 0 0 10px rgba(250, 204, 21, 0.2);
  z-index: 5;
}

/* Icon internal glow ring */
.dm-t-icon::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.dm-t-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* Clear Yellow Text - PURE CLEAN COLOR */
.color-yellow {
  color: #facc15 !important;
  text-shadow: none !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  text-decoration: none !important;
}

.dm-t-content p {
  color: #9ca3af;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* RIGHT FIT BOX STYLES */
.dm-right-fit-box {
  background: rgba(10, 10, 10, 0.9);
  /* Darker, more premium */
  border: 1px solid rgba(250, 204, 21, 0.4);
  /* Brighter gold border */
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), inset 0 0 30px rgba(250, 204, 21, 0.05);
  backdrop-filter: blur(20px);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Top Horizontal Shine Line - REFINED */
.dm-right-fit-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #facc15, transparent);
  box-shadow: 0 0 15px #facc15;
  z-index: 2;
}

.rf-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.rf-subtitle {
  color: #9ca3af;
  margin-bottom: 40px;
  font-size: 16px;
  text-align: center;
}

.rf-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* Left, Divider, Right */
  gap: 20px;
  margin-bottom: auto;
  /* Push footer/button down */
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.rf-col {
  padding: 0 10px;
}

.rf-col:first-child {
  border-right: none;
  /* Removed old border */
}

.rf-col:last-child {
  padding-left: 10px;
  padding-right: 0;
}

/* CENTER GLOW DIVIDER */
.rf-centered-divider {
  width: 2px;
  background: linear-gradient(to bottom, rgba(250, 204, 21, 0), rgba(250, 204, 21, 0.5) 40%, #facc15 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.1);
}

/* THE FLASH / FLARE EFFECT */
.rf-flare-effect {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 10px 2px #fff,
    /* Core White */
    0 0 20px 10px #facc15,
    /* Inner Gold */
    0 0 40px 20px rgba(250, 204, 21, 0.4);
  /* Outer Glow */
  z-index: 10;
  animation: flare-pulse 3s infinite alternate;
}

/* Horizontal line of the flare */
.rf-flare-effect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.8;
}

/* Vertical line of the flare */
.rf-flare-effect::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, #fff, transparent);
  opacity: 0.8;
}

/* SPARKLES - CSS ONLY */
/* We use multiple box-shadows on a pseudo element of .rf-centered-divider to create static particles */
.rf-centered-divider::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 2px;
  height: 2px;
  /* Box Shadow format: x-offset y-offset blur spread color */
  box-shadow:
    -10px -20px 0 0 rgba(250, 204, 21, 0.8),
    15px -30px 0 -0.5px #fff,
    -20px -50px 0 -0.5px rgba(250, 204, 21, 0.6),
    10px -70px 0 -1px #fff,
    -5px -40px 0 -0.5px #facc15,
    25px -15px 0 -0.5px rgba(255, 255, 255, 0.8),
    -15px -80px 0 -1px rgba(250, 204, 21, 0.5),
    0px -60px 0 -1px #fff;
  opacity: 0.8;
  animation: sparkle-twinkle 4s infinite linear;
}

@keyframes flare-pulse {
  0% {
    transform: scale(0.9);
    filter: brightness(1);
  }

  100% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

@keyframes sparkle-twinkle {
  0% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
    transform: translateY(-10px);
  }
}

.rf-col h4 {
  font-size: 18px;
  color: #facc15;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: none !important;
  /* Forced Title Case */
  text-shadow: none !important;
  letter-spacing: 0.5px;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.rf-col.warning h4 {
  color: #facc15;
}

.rf-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d1d5db;
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.rf-col ul li i {
  margin-top: 5px;
  flex-shrink: 0;
  font-size: 16px;
}

.rf-col .fa-check-circle {
  color: #facc15;
}

.rf-col .fa-times-circle {
  color: #ef4444;
}

.rf-footer {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 30px;
  margin-top: 30px;
  line-height: 1.6;
}

/* GOLD GRADIENT BUTTON - Alignment Fix */
/* GOLD GRADIENT BUTTON - SWIPE EFFECT */
.cta-gold-gradient {
  display: inline-block;
  padding: 16px 40px;
  background-image: linear-gradient(to right, #000000 50%, #facc15 50%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  color: #000 !important;
  border: 2px solid #facc15;
  transition: all 0.3s ease-in-out !important;

  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.25);
}


.cta-gold-gradient:hover {
  background-position: left bottom !important;
  color: #facc15 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
  .dm-process-next {
    padding: 30px 0 60px 0;
    overflow: hidden;
  }

  .dm-next-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
  }

  .dm-timeline-col,
  .dm-right-fit-box {
    height: auto;
    display: block;
    padding-bottom: 0;
  }

  .dm-right-fit-box {
    padding: 26px;
    /* slightly reduced */
    margin: 0 14px;
    /* THIS creates side breathing */
    width: auto;
    /* prevents overflow */
  }

  .dm-timeline-col {
    /* Safe Margin for Icons vs Screen Edge */
    margin-left: 25px;
    /* PADDING for Content vs Border */
    padding-left: 70px;
    border-left: none;
  }

  /* CORRECTED ICON MATH */
  .dm-t-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    /* 
       Padding is 70px. 
       Icon half-width is 22px.
       Border adjustment ~2px.
       Total offset to center on border: -(70 + 22) = -92px 
    */
    left: -93px;
    top: 5px;
  }

  .timeline-flare {
    left: -2px;
  }

  .rf-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .rf-col:first-child {
    border-right: none;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .rf-col:last-child {
    padding-left: 0;
  }

  /* ROBUST CENTER BUTTON */
  .cta-gold-gradient {
    display: block !important;
    width: 80% !important;
    max-width: 300px;
    margin: 40px auto 0 auto !important;
    /* center */
    text-align: center;
  }

  .dm-timeline-col .cta-gold-gradient {
    margin-left: -10px !important;
    margin-right: auto !important;
  }

}

/* CHATGPT Gave suggestions for dm 3rd section */

.dm-process-next {
  background: radial-gradient(circle at 30% 20%, rgba(250, 204, 21, 0.14), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(250, 204, 21, 0.10), transparent 50%),
    #000;
  position: relative;
  overflow: hidden;
}

.dm-process-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(250, 204, 21, 0.35) 1.5px, transparent 1.5px);
  background-size: 80px 80px;
  opacity: 0.22;
  pointer-events: none;
}

.dm-timeline-col {
  position: relative;
}

.dm-timeline-col::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 0.6px;
  opacity: 0.85;
  background: linear-gradient(to bottom,
      transparent,
      rgba(250, 204, 21, 0.9),
      transparent);
  box-shadow: 0 0 4px rgba(250, 204, 21, 0.22);
}

.dm-timeline-col::after {
  display: none;
}


.dm-t-icon {
  box-shadow:
    0 0 6px rgba(250, 204, 21, 0.35),
    inset 0 0 6px rgba(250, 204, 21, 0.25);
}


.dm-right-fit-box {
  border: 1px solid rgba(250, 204, 21, 0.4);
  box-shadow:
    0 0 25px rgba(250, 204, 21, 0.15),
    inset 0 0 20px rgba(250, 204, 21, 0.05);
}

@keyframes goldPulse {
  0% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
  }

  50% {
    box-shadow: 0 0 35px rgba(250, 204, 21, 0.35);
  }

  100% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
  }
}

.dm-right-fit-box {
  animation: goldPulse 4s infinite ease-in-out;
}

.cta-gold-gradient {
  background: linear-gradient(135deg, #facc15, #fde047);
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.6);
  transition: 0.3s ease;
}

.cta-gold-gradient:hover {
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.9);
  transform: translateY(-2px);
}

.dm-timeline-flare {
  display: none !important;
}

/* --- DM PROCESS LAYER FIX --- */
.dm-process-next {
  position: relative;
}

.dm-process-next::after {
  z-index: 1;
}

.dm-next-grid,
.dm-section-header {
  position: relative;
  z-index: 2;
}

/* ===== BUTTON ALIGNMENT FIX ===== */

/* DESKTOP */
/* ===== DESKTOP BUTTON HARD FIX ===== */

/* Timeline Button - DO NOT STRETCH */
.dm-timeline-col .cta-gold-gradient {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  margin-left: 0 !important;
}

/* Right Fit Box Button - CENTER */
.dm-right-fit-box .cta-gold-gradient {
  display: block !important;
  width: auto !important;
  margin: 0 auto !important;
}

/* STOP TIMELINE BUTTON FROM STRETCHING */
.dm-timeline-col .cta-gold-gradient {
  align-self: flex-start !important;
  width: auto !important;
}

/* SECTION 3: WEBSITE TYPES MOCKUP */
.wd-types {
  position: relative;
  overflow: visible;
}

@media (min-width: 901px) {
  .wd-types {
    background: url('assets/WDDS3.png') no-repeat center center;
    background-size: cover;
  }
}


.wd-types-sticky-trigger {
  height: 300vh;
  /* Control length of the scroll lock on mobile */
  position: relative;
}

/* On Desktop, we dont need 300vh, just normal view */
@media (min-width: 901px) {
  .wd-types-sticky-trigger {
    height: auto;
    padding: 120px 0;
    background: transparent;
  }
}

.wd-types-device-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
  /* Bring to front */
}

@media (max-width: 900px) {
  .wd-types-sticky-trigger {
    height: auto;
    /* Remove 300vh stretch */
    min-height: 100vh;
  }

  .wd-types-device-sticky {
    top: 0;
    /* Adjust for any fixed headers if present */
    height: 100vh;
  }
}

@media (min-width: 901px) {
  .wd-types-device-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
}

/* HIGH FIDELITY DEVICE FRAMES */
.wd-device-frame {
  position: relative;
  transition: all 0.5s ease;
}

/* MacBook Frame (Desktop Default) */
@media (min-width: 901px) {
  .wd-device-frame {
    width: 1060px;
    height: 720px;
    background: #222;
    border-radius: 30px 30px 0 0;
    padding: 20px;
    /* Sophisticated layered shadows for grounding */
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.1),
      0 40px 80px rgba(0, 0, 0, 0.15),
      0 0 1px rgba(0, 0, 0, 0.2);
    border: 8px solid #333;
    transform: scale(0.9);
    margin-bottom: 50px;
  }

  /* MacBook Keyboard Base */
  .wd-device-frame::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -5%;
    width: 110%;
    height: 30px;
    background: #e0e0e0;
    border-radius: 0 0 40px 40px;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
  }

  .wd-device-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
  }
}

/* Smartphone Frame (Mobile View) */
@media (max-width: 900px) {
  .wd-device-frame {
    width: 95%;
    /* Maximum accessible width */
    max-width: 380px;
    height: 80vh;
    /* Taller for more content visibility */
    border-width: 14px;
    border-radius: 50px;
    padding: 10px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }

  /* Notch */
  .wd-device-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
  }

  .wd-device-screen {
    width: 100%;
    height: 100%;
    background: #fdfdfd;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
  }
}

/* THE CONTENT INSIDE THE SCREEN */
.wd-screen-content {
  padding: 30px 40px;
  text-align: center;
  transition: none;
  /* Removed to allow JS-based smooth interpolation */
  /* Smooth mapping for JS scroll */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .wd-screen-content {
    padding: 60px 20px 80px 20px;
    /* More bottom padding for mobile scroll end */
    display: block;
    height: auto;
  }
}

.wd-screen-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.wd-screen-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #facc15;
  border-radius: 2px;
}

.wd-screen-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 15px;
}

.wd-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
  text-align: left;
}

@media (max-width: 900px) {
  .wd-types-grid {
    grid-template-columns: 1fr;
  }
}

.wd-type-card {
  background: rgba(248, 249, 250, 0.5);
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #eee;
  display: flex;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.wd-type-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.icon-yellow {
  background: #fffbeb;
  color: #facc15;
}

.icon-green {
  background: #f0fdf4;
  color: #22c55e;
}

.icon-blue {
  background: #eff6ff;
  color: #3b82f6;
}

.icon-purple {
  background: #faf5ff;
  color: #a855f7;
}

.wd-type-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.wd-type-info p {
  font-size: 12px;
  color: #444;
  margin-bottom: 8px;
}

.wd-type-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-type-info li {
  font-size: 11px;
  color: #666;
  margin-bottom: 2px;
}

.wd-screen-footer {
  margin-top: auto;
  padding-top: 15px;
}

.wd-decision-line {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.wd-type-cta {
  display: inline-block;
  padding: 12px 30px;
  background: #facc15;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  border-radius: 50px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
}

.wd-type-cta:hover {
  background: #000;
  color: #facc15;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .wd-screen-header h2 {
    font-size: 22px;
  }

  .wd-type-card {
    padding: 15px;
  }

  .wd-type-info h3 {
    font-size: 15px;
  }
}



/* ==========================================================================
   SECTION 4: HOW YOUR WEBSITE IS BUILT (BUILD PROCESS)
   ========================================================================== */
.wd-build {
  padding: 100px 0;
  background-image: url('assets/WDDS4.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .wd-build {
    background-image: url('assets/WDDS4M.png');
    background-attachment: scroll;
    padding: 60px 0;
  }
}

.wd-build-header {
  text-align: center;
  margin-bottom: 80px;
}

.wd-build-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wd-build-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .wd-build-header h1 {
    font-size: 2.2rem;
  }

  .wd-build-subtitle {
    font-size: 1rem;
  }
}

/* Timeline Layout */
.wd-build-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.wd-build-line {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
      rgba(250, 204, 21, 0) 0%,
      rgba(250, 204, 21, 0.5) 20%,
      rgba(250, 204, 21, 0.5) 80%,
      rgba(250, 204, 21, 0) 100%);
  z-index: 1;
}

@media (max-width: 900px) {
  .wd-build-line {
    display: none;
  }
}

.wd-build-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .wd-build-steps {
    flex-direction: column;
    gap: 40px;
  }
}

.wd-build-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Step Numbers */
.wd-step-number {
  width: 40px;
  height: 40px;
  background: #000;
  border: 2px solid var(--step-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 0 20px var(--step-glow);
}

.wd-step-number::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid var(--step-glow);
  opacity: 0.3;
}

/* Glass Cards */
.wd-step-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: left;
  width: 100%;
  height: 100%;
  min-height: 420px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.wd-step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 204, 21, 0.3);
}

.wd-step-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.wd-step-icon i {
  font-size: 2rem;
  color: #facc15;
}

.wd-step-icon h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.wd-step-intro {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 15px;
}

.wd-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-step-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #eee;
}

.wd-step-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #facc15;
}

.no-intro {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .wd-build-header h1 {
    font-size: 2.22rem;
  }

  .wd-build-subtitle {
    font-size: 1rem;
  }

  /* Section 4 Mobile "Squeeze" Refinements */
  .wd-build-steps {
    gap: 50px;
    /* Space for the overlapping numbers */
    padding-top: 20px;
  }

  .wd-build-step {
    position: relative;
    /* Context for absolute numbering */
    display: block;
  }

  .wd-step-card {
    min-height: auto;
    text-align: left;
    width: 92%;
    margin: 0 auto;
    padding: 25px 20px;
  }

  .wd-step-icon {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .wd-step-icon h3 {
    font-size: 1.25rem;
    margin: 0;
  }

  .wd-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin-bottom: 0;
  }

  .wd-step-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .wd-step-list li {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
  }

  .wd-step-list li::before {
    display: none;
  }

  .wd-micro-line {
    font-size: 0.95rem;
  }
}

/* Footer Section */
.wd-build-footer {
  text-align: center;
  margin-top: 80px;
}

.wd-micro-line {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 500;
  margin-bottom: 40px;
  opacity: 0.8;
}

.wd-build-cta .cta-gold-gradient {
  padding: 18px 45px;
  font-size: 1.1rem;
  text-transform: none;
}

/* ==========================================================================
   SECTION 5: GROWTH ROADMAP
   ========================================================================== */
.wd-growth {
  padding: 120px 0;
  background: url('assets/WDDS5.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .wd-growth {
    background-image: url('assets/WDDS5M.png');
    background-attachment: scroll;
    padding: 80px 0;
  }
}

.wd-growth-header {
  text-align: center;
  margin-bottom: 60px;
}

.wd-growth-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wd-growth-header h2 span {
  color: #facc15;
}

.wd-growth-header p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .wd-growth-header h2 {
    font-size: 2.22rem;
  }

  .wd-growth-header p {
    font-size: 1rem;
  }
}

/* Growth Grid */
.wd-growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1060px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .wd-growth-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
  }
}

.wd-growth-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.wd-growth-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.wd-growth-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.wd-growth-card-header i {
  font-size: 2rem;
  color: #facc15;
}

.wd-growth-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.wd-growth-card-img {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wd-growth-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.wd-growth-card-content {
  flex-grow: 1;
}

.wd-card-intro {
  color: #aaa;
  margin-bottom: 15px;
  font-size: 1rem;
}

.wd-growth-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.wd-growth-card-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #eee;
  font-size: 0.95rem;
}

.wd-growth-card-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #facc15;
}

.wd-card-matters {
  font-size: 0.95rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.wd-card-matters strong {
  color: #facc15;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.wd-growth-footer {
  text-align: center;
  margin-top: 80px;
}

.wd-growth-footer .cta-gold-gradient {
  padding: 18px 45px;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .wd-growth-card {
    width: 92%;
    margin: 0 auto;
  }
}

/* ==========================================================================
   SEO & CONTENT WRITING PAGE
   ========================================================================== */
.seo-page {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.seo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}

.seo-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.seo-hero-video.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .seo-hero-video.desktop-only {
    display: none;
  }

  .seo-hero-video.mobile-only {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Standard for full-screen banners */
    object-position: top center;
    /* Ensures the top of the video (often containing focal points) is prioritized */
  }

  .seo-hero {
    min-height: 100vh;
    padding: 40px 0;
    /* Further reduced padding to let video breath */
  }
}

.seo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.seo-hero-container {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-hero-content h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 35px;
  margin-bottom: 25px;
}

.seo-hero-content p {
  font-size: 1.4rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

@media (max-width: 900px) {
  .seo-hero-content h1 {
    font-size: 2rem;
  }

  .seo-hero-content p {
    font-size: 1.1rem;
  }
}

/* Dual Buttons */
.seo-hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.seo-btn-outline {
  padding: 14px 40px;
  border: 1.5px solid rgba(250, 204, 21, 0.6);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  /* Slightly squared for industrial premium look */
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.seo-btn-outline:hover {
  background: #facc15;
  color: #000;
  border-color: #facc15;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .seo-hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .seo-btn-outline {
    width: 90%;
    text-align: center;
  }
}

/* Feature Grid */
.seo-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1060px;
  /* Matching Section 5 compression */
  margin: 0 auto 80px auto;
}

.seo-feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 30px;
  /* Reduced vertical padding */
  text-align: left;
  transition: all 0.4s ease;
}

.seo-feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(250, 204, 21, 0.4);
  transform: translateY(-8px);
}

.seo-card-inner h3 {
  font-size: 1.8rem;
  /* Reduced from 2.5rem */
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.seo-card-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.seo-card-inner li {
  font-size: 1.05rem;
  /* Reduced from 1.2rem */
  margin-bottom: 10px;
  color: #ddd;
  position: relative;
  padding-left: 30px;
}

.seo-card-inner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #facc15;
  font-size: 2rem;
  line-height: 0.8;
}

.seo-card-footer {
  font-size: 1rem;
  color: #facc15;
  font-weight: 600;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

@media (max-width: 900px) {
  .seo-features-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

  .seo-card-inner h3 {
    font-size: 2rem;
  }
}

/* Bottom CTA */
.seo-bottom-cta {
  margin-top: 20px;
}

.seo-tagline {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 10px;
}

.seo-strategy-bottom .cta-gold-gradient {
  padding: 18px 45px;
  font-size: 1.1rem;
}

/* ==========================================================================
   SEO SECTION 3: SEARCH VISIBILITY ENGINE
   ========================================================================== */
.seo-visibility {
  position: relative;
  padding: 10px 0;
  background: url('assets/WDDDS3.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

@media (max-width: 900px) {
  .seo-visibility {
    background: url('assets/WDDMS3.png') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    padding: 80px 0;
  }
}

.seo-visibility-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.seo-visibility-header {
  text-align: center;
  margin-bottom: 80px;
}

.seo-visibility-header h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.seo-visibility-header p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.2;
}

/* 4-Card Grid */
.seo-visibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .seo-visibility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.seo-visibility-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.seo-visibility-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(250, 204, 21, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.seo-visibility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.08), transparent);
  transition: 0.6s;
  z-index: -1;
}

.seo-visibility-card:hover::before {
  left: 100%;
}

.seo-visibility-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #facc15, transparent);
  opacity: 1;
  /* Always visible */
}

/* Card Header */
.card-icon-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.card-icon-wrap i {
  font-size: 2.5rem;
  color: #facc15;
  text-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}

.card-title-group h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.card-title-group p {
  font-size: 1.1rem;
  color: #facc15;
  font-weight: 600;
}

/* Card Body */
.card-body h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
}

.card-body>p {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.seo-point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-point-list li {
  font-size: 1rem;
  color: #eee;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.seo-point-list li::before {
  content: '\f058';
  /* circle-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #facc15;
  font-size: 0.95rem;
  margin-top: 3px;
}

/* Card Footer */
.card-footer {
  margin-top: auto;
  padding-top: 30px;
  color: #888;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bottom Section */
.seo-visibility-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-visibility-bottom h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.seo-visibility-bottom p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .seo-visibility-header h2 {
    font-size: 2.2rem;
  }

  .seo-visibility-bottom h3 {
    font-size: 1.8rem;
  }

  .seo-visibility-card {
    padding: 30px 20px;
  }

  .seo-visibility-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {}

/* ==========================================================================
   SEO SECTION 2: CONVERSION STRATEGY
   ========================================================================== */
.seo-strategy {
  position: relative;
  padding: 30px 0;
  background: url('assets/SEODS2.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

@media (max-width: 900px) {
  .seo-strategy {
    background: url('assets/SEOMS2.png') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    padding: 40px 0;
  }
}

.seo-strategy-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-strategy-header {
  text-align: center;
  margin-bottom: 20px;
}

.seo-strategy-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.seo-strategy-header p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .seo-strategy-header h2 {
    font-size: 2.2rem;
  }

  .seo-strategy-header p {
    font-size: 1.1rem;
  }
}

/* Grid Layout */
.seo-strategy-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  /* Gap handled by column padding */
  margin-bottom: 80px;
  position: relative;
}

.seo-strategy-col {
  flex: 1;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;
}

.seo-left {
  align-items: flex-end;
  /* Pulls content toward the divider */
  text-align: right;
}

.seo-right {
  align-items: flex-start;
  /* Pulls content toward the divider */
  text-align: left;
}

.seo-col-header {
  margin-bottom: 35px;
  width: 100%;
}

.seo-col-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.seo-col-header h4 {
  font-size: rem;
  font-weight: 500;
  line-height: 1.2;
}

/* Vertical Divider */
.seo-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, #facc15, transparent);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
  position: relative;
  min-height: 350px;
}

.seo-divider::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #facc15;
  box-shadow: 0 0 15px #facc15;
}

@media (max-width: 900px) {
  .seo-strategy-grid {
    flex-direction: column;
    align-items: center;
  }

  .seo-divider {
    width: 100%;
    height: 2px;
    min-height: 0;
    background: linear-gradient(to right, transparent, #facc15, transparent);
    margin: 40px 0;
  }

  .seo-divider::after {
    display: none;
  }

  .seo-strategy-col {
    padding: 1px;
    text-align: center;
    align-items: center;
  }

  .seo-left .seo-col-header,
  .seo-right .seo-col-header {
    text-align: center;
  }
}

/* Check List - BULLETPROOF FLEX */
.seo-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: fit-content;
}

.seo-check-list li {
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #facc15;
  border-radius: 8px;
  padding: 12px 25px;
  min-width: 280px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.seo-check-list li:hover {
  background: rgba(250, 204, 21, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(250, 204, 21, 0.2);
}

.seo-check-list li::before {
  display: none;
  /* Removed checkmark icons as per button-style request */
}

.seo-col-footer {
  font-size: 1.1rem;
  color: #facc15;
  margin-top: 20px;
  margin-bottom: 0px;
  width: 100%;
}

@media (max-width: 900px) {
  .seo-check-list {
    margin: 0 auto 30px auto;
  }
}

/* Bottom Meet Section */
.seo-strategy-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0px;
}

.seo-meet-wrap h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  margin-top: 0px;
}

.seo-meet-wrap p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.seo-strategy-bottom .cta-gold-gradient {
  padding: 18px 45px;
  font-size: 1.1rem;
}

/* ================================================
   SECTION 4: CONTENT WRITING STRATEGY
   ================================================ */

.content-strategy-section {
  background: #080b14;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.content-strategy-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}

.content-strategy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 11, 20, 0.6) 0%, rgba(8, 11, 20, 0.75) 100%);
  z-index: 1;
}

.content-strategy-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.content-strategy-header {
  text-align: center;
  margin-bottom: 60px;
}

.content-strategy-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.content-strategy-header>p {
  font-size: 1.1rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 28px;
}

.content-strategy-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
}

.content-strategy-label .label-sub {
  font-weight: 400;
  color: #9ca3af;
  font-size: 0.95rem;
}

/* --- 4-Block Grid --- */
.content-blocks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

/* --- Individual Block Card --- */
.content-block-card {
  background: #0e1220;
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: 16px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.content-block-card:hover {
  border-color: rgba(250, 204, 21, 0.45);
  transform: translateY(-4px);
}

.block-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.block-number sup {
  font-size: 0.6rem;
  vertical-align: super;
}

.content-block-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.block-h3-sub {
  font-weight: 400;
  color: #9ca3af;
  font-size: 0.85rem;
}

.block-subtitle {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 10px;
}

.block-intro {
  font-size: 0.82rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 12px;
}

.block-define-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 6px;
}

.content-block-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.content-block-list li {
  font-size: 0.78rem;
  color: #9ca3af;
  padding: 3px 0 3px 14px;
  line-height: 1.5;
  position: relative;
}

.content-block-list li::before {
  content: "•";
  color: #facc15;
  position: absolute;
  left: 0;
  top: 3px;
}

.block-no-templates {
  font-size: 0.78rem;
  color: #d1d5db;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}

.block-micro-line {
  font-size: 0.78rem;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(250, 204, 21, 0.12);
}

.block-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #facc15;
  border-radius: 50%;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 16px;
  align-self: flex-start;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.block-arrow-btn:hover {
  background: #fde047;
  transform: scale(1.1);
}

/* --- Bottom Merge Strip --- */
.content-merge-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #0e1220;
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: 20px;
  padding: 50px 50px;
  margin-bottom: 40px;
}

.merge-left h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 28px;
}

.merge-right p {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.merge-right-sub {
  color: #9ca3af !important;
  font-size: 0.9rem !important;
}

/* --- CTA Strip --- */
.content-cta-strip {
  text-align: center;
  padding: 20px 0 10px;
}

.content-cta-line {
  font-size: 1rem;
  color: #9ca3af;
  font-style: italic;
}

/* --- Helpers --- */
.italic {
  font-style: italic;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .content-blocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .content-strategy-section {
    padding: 70px 0 60px;
  }

  .content-blocks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .content-block-card {
    padding: 24px 18px 20px;
  }

  .content-merge-strip {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

  .merge-left h3 {
    font-size: 1.4rem;
  }

  .content-strategy-header h2 {
    font-size: 1.7rem;
  }
}

/* ================================================
   PACKAGES PAGE — HERO BANNER
   ================================================ */

.packages-page {
  background: #000;
}

.packages-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Full-cover video */
.packages-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Desktop/mobile show-hide — reuses site's existing utility classes */
@media (min-width: 769px) {
  .packages-hero .mobile-only {
    display: none !important;
  }

  .packages-hero .desktop-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .packages-hero .desktop-only {
    display: none !important;
  }

  .packages-hero .mobile-only {
    display: block;
  }
}

/* Subtle dark overlay so the CTA stays readable */
.packages-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.15) 60%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

/* CTA container — pinned to the bottom centre */
.packages-hero-cta {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding-bottom: 52px;
}

/* Button styling — matches site-wide swipe effect */
.packages-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background-image: linear-gradient(to right, #000000 50%, #facc15 50%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  color: #000 !important;
  border: 2px solid #facc15;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.25);
  transition: all 0.3s ease-in-out !important;
  position: relative;
  overflow: hidden;
}

.packages-cta-btn:hover {
  background-position: left bottom !important;
  color: #facc15 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .packages-hero {
    height: 100svh;
    /* use small viewport height on mobile browsers */
  }

  .packages-cta-btn {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .packages-hero-cta {
    padding-bottom: 40px;
  }
}

/* ================================================
   PACKAGES PAGE — SECTION 2: PRICING CARDS
   ================================================ */

.pkg-pricing {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
}

/* Background image layers */
.pkg-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Desktop/mobile bg visibility */
@media (min-width: 769px) {
  .pkg-pricing .mobile-only {
    display: none !important;
  }

  .pkg-pricing .desktop-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .pkg-pricing .desktop-only {
    display: none !important;
  }

  .pkg-pricing .mobile-only {
    display: block;
  }
}

/* Content sits above bg */
.pkg-pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* --- Header --- */
.pkg-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pkg-subtitle {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 60px;
}

/* --- Cards grid --- */
.pkg-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 20px;
  align-items: center;
}

/* --- Base card --- */
.pkg-card {
  background: rgba(10, 10, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
}

/* --- Side cards (Basic & Advance) --- */
.pkg-basic,
.pkg-advance {
  padding: 28px 22px 24px;
}

/* --- Pro card (center, featured) --- */
.pkg-pro {
  background: rgba(8, 7, 5, 0.88);
  border: 1.5px solid #facc15;
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.25), 0 0 80px rgba(250, 204, 21, 0.08);
  border-radius: 24px;
  padding: 36px 28px 32px;
  position: relative;
}

/* Most Popular badge */
.pkg-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #facc15;
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Pro icon */
.pkg-pro-icon {
  width: 60px;
  height: 60px;
  background: rgba(250, 204, 21, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Card name */
.pkg-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 4px;
}

.pkg-pro-name {
  color: #facc15;
  font-size: 1.3rem;
}

/* Subtitle tag */
.pkg-tag {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 16px;
}

/* Price */
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pkg-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.pkg-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.pkg-currency-pro,
.pkg-amount-pro {
  color: #facc15;
}

.pkg-amount-pro {
  font-size: 2.4rem;
}

.pkg-period {
  font-size: 0.78rem;
  color: #888;
  align-self: flex-end;
  margin-bottom: 3px;
}

/* Feature list */
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-features li {
  font-size: 0.82rem;
  color: #ccc;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pkg-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23facc15' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* --- Buttons --- */
.pkg-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pkg-btn:hover {
  transform: translateY(-2px);
}

/* Basic — dark outlined */
.pkg-btn-basic {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.pkg-btn-basic:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Pro — gold fill */
.pkg-btn-pro {
  background: #facc15;
  color: #000;
  font-size: 1rem;
  padding: 14px 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.35);
}

.pkg-btn-pro:hover {
  background: #fde047;
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.5);
}

/* Advance — green fill */
.pkg-btn-advance {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.pkg-btn-advance:hover {
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45);
}

/* ================================================
   MOBILE — Packages Section 2
   ================================================ */
@media (max-width: 768px) {
  .pkg-pricing {
    padding: 60px 16px 80px;
  }

  .pkg-subtitle {
    margin-bottom: 36px;
  }

  /* Stack: Pro first (full width), then Basic+Advance in 2 cols */
  .pkg-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Force Pro to appear first via order */
  .pkg-pro {
    order: 1;
  }

  .pkg-basic {
    order: 2;
  }

  .pkg-advance {
    order: 3;
  }

  /* Basic and Advance sit side by side */
  .pkg-basic,
  .pkg-advance {
    flex: 1 1 calc(50% - 8px);
  }

  /* Row wrapper for Basic + Advance */
  .pkg-cards-wrap::after {
    content: none;
  }

  /* Use sub-grid for the bottom row */
  .pkg-basic,
  .pkg-advance {
    display: flex;
    flex-direction: column;
  }

  /* Wrap Basic + Advance into a row */
  .pkg-cards-wrap {
    display: grid;
    grid-template-areas:
      "pro     pro"
      "basic   advance";
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pkg-pro {
    grid-area: pro;
  }

  .pkg-basic {
    grid-area: basic;
  }

  .pkg-advance {
    grid-area: advance;
  }

  .pkg-pro {
    padding: 28px 22px 24px;
  }

  .pkg-amount-pro {
    font-size: 2rem;
  }

  .pkg-name {
    font-size: 1rem;
  }

  .pkg-pro-name {
    font-size: 1.1rem;
  }
}

/* ================================================
   PACKAGES PAGE — SECTION 3: CUSTOM SOLUTIONS
   ================================================ */

.pkg-custom {
  position: relative;
  padding: 90px 24px 80px;
  overflow: hidden;
}

.pkg-custom-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* bg visibility mirrors section 2 pattern */
@media (min-width: 769px) {
  .pkg-custom .mobile-only {
    display: none !important;
  }

  .pkg-custom .desktop-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .pkg-custom .desktop-only {
    display: none !important;
  }

  .pkg-custom .mobile-only {
    display: block;
  }
}

.pkg-custom-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

/* --- Header --- */
.pkg-custom-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pkg-custom-title-yellow {
  color: #facc15;
}

.pkg-custom-para {
  font-size: 0.88rem;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 10px;
}

.pkg-custom-note {
  font-size: 0.85rem;
  color: #bbb;
  margin-bottom: 52px;
}

.pkg-custom-note strong {
  color: #fff;
}

/* --- 3-col grid (desktop) --- */
.pkg-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

/* --- Card base --- */
.pkg-custom-card {
  background: rgba(8, 8, 12, 0.70);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 16px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pkg-custom-card:hover {
  border-color: rgba(250, 204, 21, 0.45);
  transform: translateY(-3px);
}

/* Card top row: icon + title/price */
.pkg-custom-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

/* Gold icon box */
.pkg-custom-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  font-size: 1rem;
  margin-top: 2px;
}

.pkg-custom-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 4px;
  line-height: 1.3;
}

.pkg-custom-from {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 0;
}

.pkg-custom-from strong {
  color: #fff;
}

.pkg-custom-sub {
  font-size: 0.72rem;
  color: #aaa;
  margin-bottom: 2px;
}

/* 20% highlight row */
.pkg-custom-highlight {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 8px;
}

.pkg-custom-desc {
  font-size: 0.78rem;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* CTA button — gold outlined */
.pkg-custom-btn {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid #facc15;
  color: #facc15;
  background: transparent;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
  margin-top: auto;
}

.pkg-custom-btn:hover {
  background: #facc15;
  color: #000;
}

/* --- Bottom CTA --- */
.pkg-custom-cta {
  margin-top: 52px;
  text-align: center;
}

.pkg-custom-cta-line {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.pkg-custom-cta-btn {
  display: inline-block;
  padding: 14px 44px;
  background: #facc15;
  color: #000;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(250, 204, 21, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.pkg-custom-cta-btn:hover {
  background: #fde047;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(250, 204, 21, 0.55);
}

/* ================================================
   MOBILE — Section 3
   ================================================ */
@media (max-width: 768px) {
  .pkg-custom {
    padding: 60px 16px 70px;
  }

  .pkg-custom-note {
    margin-bottom: 36px;
  }

  /* SMM card spans full width at top;
     remaining 5 cards in a 2-col grid below */
  .pkg-custom-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* SMM stays full width (col span handled by grid-column) */
  .pkg-smm {
    grid-column: 1 / -1;
  }

  /* All others form a 2-col sub-grid */
  .pkg-custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .pkg-smm {
    grid-column: 1 / -1;
    /* row 1, full width */
  }

  .pkg-custom-card h3 {
    font-size: 0.82rem;
  }

  .pkg-custom-from {
    font-size: 0.7rem;
  }

  .pkg-custom-desc {
    font-size: 0.74rem;
  }

  .pkg-custom-cta-line {
    font-size: 1.05rem;
  }

  .pkg-custom-cta-btn {
    padding: 12px 34px;
    font-size: 0.88rem;
  }
}

/* ================================================
   ABOUT US PAGE — SECTION 1: HERO VIDEO
   ================================================ */

.about-page {
  background: #000;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Desktop: show desktop video, hide mobile video */
@media (min-width: 769px) {
  .about-mobile-video {
    display: none !important;
  }

  .about-desktop-video {
    display: block;
  }
}

/* Mobile: show mobile video, hide desktop video */
@media (max-width: 768px) {
  .about-desktop-video {
    display: none !important;
  }

  .about-mobile-video {
    display: block;
  }

  .about-hero {
    height: 100svh;
  }
}

/* ================================================
   ABOUT US — SECTION 2: JOURNEY SNAKE TIMELINE
   ================================================ */

.about-journey {
  background: #07090f;
  padding: 90px 0 80px;
  overflow: hidden;
}

.about-journey-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Header ---- */
.journey-header {
  text-align: center;
  margin-bottom: 70px;
}

.journey-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.35);
  padding: 6px 20px;
  border-radius: 50px;
}

/* ---- Step row ---- */
.journey-step {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* ---- C-frame image box (the snake body at each step) ---- */
.journey-frame {
  flex-shrink: 0;
  width: 54%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Left C-frame: borders on top, left, bottom — open on right */
.js-frame-left {
  border-top: 5px solid #facc15;
  border-left: 5px solid #facc15;
  border-bottom: 5px solid #facc15;
  border-right: none;
  border-radius: 80px 0 0 80px;
}

/* Right C-frame: borders on top, right, bottom — open on left */
.js-frame-right {
  border-top: 5px solid #facc15;
  border-right: 5px solid #facc15;
  border-bottom: 5px solid #facc15;
  border-left: none;
  border-radius: 0 80px 80px 0;
}

.journey-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Text column ---- */
.journey-text {
  flex: 1;
  min-width: 0;
}

/* ---- Icon badge (at inflection points) ---- */
.journey-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.10);
  border: 1.5px solid rgba(250, 204, 21, 0.38);
  color: #facc15;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

/* ---- Typography ---- */
.journey-heading {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.journey-heading-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #facc15;
  margin-top: 4px;
}

.journey-year {
  color: #facc15;
  font-size: 0.88em;
}

.journey-para {
  font-size: 0.82rem;
  color: #9ba8bb;
  line-height: 1.75;
  margin-bottom: 9px;
}

.journey-para strong {
  color: #e8eaf0;
}

.journey-mission {
  font-size: 0.88rem !important;
  color: #facc15 !important;
}

.journey-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.journey-list li {
  font-size: 0.81rem;
  color: #bcc4d0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.journey-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #facc15;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

/* ---- Bridge connectors (snake body between steps) ---- */
.journey-bridge {
  height: 60px;
}

/* jb-right: vertical line on the right edge of the left-frame (54% wide) */
.jb-right {
  width: 54%;
  border-right: 5px solid #facc15;
}

/* jb-left: vertical line on the left edge of the right-frame.
   Right frame starts at 46% from left (since text = 46% - gap).
   We mirror by putting margin-left: auto on a 54% wide block. */
.jb-left {
  width: 54%;
  margin-left: auto;
  border-left: 5px solid #facc15;
}

/* ================================================
   MOBILE — About Journey
   ================================================ */
@media (max-width: 768px) {
  .about-journey {
    padding: 60px 0 60px;
  }

  .about-journey-inner {
    padding: 0 16px;
  }

  .journey-header {
    margin-bottom: 40px;
  }

  /* Stack: image top, content below */
  .journey-step {
    flex-direction: column;
    gap: 20px;
  }

  /* On mobile, always show image full-width at top */
  .js-odd,
  .js-even {
    flex-direction: column;
  }

  .journey-frame {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px !important;
    /* Restore all 4 borders on mobile */
    border-right: 5px solid #facc15 !important;
    border-left: 5px solid #facc15 !important;
  }

  /* Always show frame before text on mobile */
  .js-even .journey-frame {
    order: -1;
  }

  /* Collapse bridge connectors on mobile to a simple center line */
  .journey-bridge {
    height: 40px;
    width: 5px;
    margin: 0 auto;
    border: none;
    border-left: 5px solid #facc15;
  }
}

/* ================================================
   ABOUT US — SECTION 3: MINDS BEHIND
   ================================================ */

.about-minds {
  background: #0b0d17;
  padding: 90px 0 80px;
}

.about-minds-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section heading — centred above yellow baseline */
.minds-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  display: block;
  overflow: hidden;
  clear: both;
  text-decoration: none;
  border-bottom: none !important;
}

/* ---- Founder Row ---- */
.minds-founder {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 70px;
}

.minds-founder-img {
  flex-shrink: 0;
  width: 320px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.2);
}

.minds-founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.minds-founder-info {
  flex: 1;
  padding-top: 6px;
}

/* Badge */
.minds-founder-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: #facc15;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.minds-founder-name {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.minds-founder-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: #facc15;
  margin-bottom: 18px;
}

.minds-founder-para {
  font-size: 0.82rem;
  color: #9ba8bb;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ---- Team Section ---- */
.minds-team-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}

/* 5 cards in one row on desktop */
.minds-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.minds-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Square image box */
.minds-team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.18);
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}

.minds-team-card:hover .minds-team-img {
  border-color: rgba(250, 204, 21, 0.5);
}

.minds-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.minds-team-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.minds-team-role {
  font-size: 0.74rem;
  color: #778899;
}

/* ================================================
   MOBILE — Minds Behind
   ================================================ */
@media (max-width: 768px) {
  .about-minds {
    padding: 60px 0 60px;
  }

  .about-minds-inner {
    padding: 0 16px;
  }

  .minds-founder {
    flex-direction: column;
    gap: 28px;
  }

  .minds-founder-img {
    width: 100%;
    height: 260px;
  }

  /* 2 columns on mobile for team */
  .minds-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Praveen (5th card) — centred alone in the 3rd row */
  .minds-team-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================================================
   BLOG PAGE — home.php
   ================================================ */

.blog-page {
  background: #080b14;
  min-height: 100vh;
}

/* ---- Hero Banner ---- */
.blog-hero {
  background: linear-gradient(135deg, #0d1020 0%, #111827 100%);
  padding: 100px 40px 70px;
  text-align: center;
  border-bottom: 1px solid rgba(250, 204, 21, 0.12);
}

.blog-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.blog-hero-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 14px;
}

.blog-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.blog-hero-sub {
  font-size: 0.9rem;
  color: #8899aa;
  line-height: 1.7;
}

/* ---- Posts Section ---- */
.blog-posts-section {
  padding: 70px 0 80px;
}

.blog-posts-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---- 3-Column Grid — scoped to blog page only ---- */
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* ---- Individual Card — scoped to blog page only ---- */
.blog-page .blog-card {
  background: #0e1120;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.blog-page .blog-card:hover {
  border-color: rgba(250, 204, 21, 0.35);
  transform: translateY(-4px);
}

/* Thumbnail */
.blog-card-thumb-link {
  display: block;
  text-decoration: none;
}

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #13172a;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

/* Placeholder when no featured image */
.blog-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-placeholder-icon {
  font-size: 2.5rem;
  color: rgba(250, 204, 21, 0.25);
}

/* Card Body */
.blog-card-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category pill */
.blog-card-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: #facc15;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* Title */
.blog-card-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card-title a:hover {
  color: #facc15;
}

/* Meta row */
.blog-card-meta {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  color: #57647a;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-card-meta i {
  color: #facc15;
  margin-right: 4px;
}

/* Excerpt */
.blog-card-excerpt {
  font-size: 0.8rem;
  color: #8292a8;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

/* Read More */
.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #facc15;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.25s ease;
}

.blog-card-readmore:hover {
  gap: 12px;
}

/* ---- Pagination ---- */
.blog-pagination {
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #8899aa;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: #facc15;
  color: #000;
  border-color: #facc15;
}

/* ---- No Posts ---- */
.blog-no-posts {
  text-align: center;
  padding: 80px 20px;
}

.blog-no-posts-icon {
  font-size: 3rem;
  color: rgba(250, 204, 21, 0.25);
  margin-bottom: 18px;
  display: block;
}

.blog-no-posts h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.blog-no-posts p {
  font-size: 0.88rem;
  color: #778899;
}

/* ================================================
   SINGLE POST — single.php
   ================================================ */

.single-post-page {
  background: #080b14;
  min-height: 100vh;
}

/* Hero featured image */
.single-hero {
  position: relative;
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}

.single-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #080b14 100%);
}

/* Post inner container */
.single-post-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 30px 80px;
}

/* Breadcrumb */
.single-breadcrumb {
  font-size: 0.75rem;
  color: #57647a;
  margin-bottom: 18px;
}

.single-breadcrumb a {
  color: #8899aa;
  text-decoration: none;
}

.single-breadcrumb a:hover {
  color: #facc15;
}

.bc-sep {
  margin: 0 6px;
  color: #57647a;
}

.bc-current {
  color: #facc15;
}

/* Category pill */
.single-post-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: #facc15;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* Title */
.single-post-title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* Meta */
.single-post-meta {
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  color: #57647a;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.single-post-meta i {
  color: #facc15;
  margin-right: 5px;
}

/* Prose / Content */
.single-post-content {
  font-size: 0.92rem;
  color: #b0bec8;
  line-height: 1.85;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  margin-bottom: 40px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  color: #fff;
  font-weight: 800;
  margin: 32px 0 12px;
}

.single-post-content p {
  margin-bottom: 16px;
}

.single-post-content a {
  color: #facc15;
  text-decoration: underline;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.single-post-content blockquote {
  border-left: 4px solid #facc15;
  padding-left: 18px;
  color: #8899aa;
  font-style: italic;
  margin: 24px 0;
}

.single-post-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

/* Tags */
.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tags-label {
  font-size: 0.78rem;
  color: #57647a;
}

.tags-label i {
  color: #facc15;
  margin-right: 4px;
}

.single-post-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8899aa;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

.single-post-tag:hover {
  border-color: #facc15;
  color: #facc15;
}

/* Prev / Next navigation */
.single-post-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.single-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0e1120;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: #fff;
  font-size: 0.82rem;
  transition: border-color 0.3s, transform 0.3s;
  min-width: 0;
}

.single-nav-btn:hover {
  border-color: rgba(250, 204, 21, 0.4);
  transform: translateY(-2px);
}

.single-nav-btn--next {
  justify-content: flex-end;
  text-align: right;
}

.single-nav-btn small {
  display: block;
  font-size: 0.68rem;
  color: #57647a;
  margin-bottom: 3px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.single-nav-btn i {
  color: #facc15;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Back to blogs */
.single-back {
  text-align: center;
}

.single-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #facc15;
  text-decoration: none;
  border: 1px solid rgba(250, 204, 21, 0.35);
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.25s, color 0.25s;
}

.single-back-btn:hover {
  background: #facc15;
  color: #000;
}

/* ================================================
   MOBILE — Blog + Single
   ================================================ */
@media (max-width: 768px) {
  .blog-hero {
    padding: 80px 20px 50px;
  }

  .blog-posts-inner {
    padding: 0 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .single-hero-img {
    height: 240px;
  }

  .single-post-inner {
    padding: 36px 16px 60px;
  }

  .single-post-nav {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================
   BLOG HERO SPOTLIGHT — 1 Big + 4 Small
   ================================================ */

.blog-hero-spotlight {
  background: #080b14;
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-hero-spotlight__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: stretch;
}

/* ---- Large featured card ---- */
.blog-spotlight-featured {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0e1120;
  transition: border-color 0.3s ease;
}

.blog-spotlight-featured:hover {
  border-color: rgba(250, 204, 21, 0.35);
}

.blog-spotlight-featured__thumb-link {
  display: block;
  flex: 1;
  max-height: 280px;
  overflow: hidden;
}

.blog-spotlight-featured__thumb {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #13172a;
}

.blog-spotlight-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-spotlight-featured:hover .blog-spotlight-featured__thumb img {
  transform: scale(1.04);
}

.blog-spotlight-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(14, 17, 32, 0.85) 100%);
  pointer-events: none;
}

.blog-spotlight-featured__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(250, 204, 21, 0.2);
}

.blog-spotlight-featured__body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-spotlight-featured__title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

.blog-spotlight-featured__title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-spotlight-featured__title a:hover {
  color: #facc15;
}

.blog-spotlight-featured__excerpt {
  font-size: 0.82rem;
  color: #8292a8;
  line-height: 1.7;
}

/* ---- Sidebar: 4 small cards ---- */
.blog-spotlight-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-spotlight-small {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #0e1120;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px;
  flex: 1;
  transition: border-color 0.3s ease;
}

.blog-spotlight-small:hover {
  border-color: rgba(250, 204, 21, 0.35);
}

.blog-spotlight-small__thumb-link {
  display: block;
  flex-shrink: 0;
}

.blog-spotlight-small__thumb {
  width: 76px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #13172a;
}

.blog-spotlight-small__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-spotlight-small:hover .blog-spotlight-small__thumb img {
  transform: scale(1.06);
}

.blog-spotlight-small__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(250, 204, 21, 0.2);
}

.blog-spotlight-small__body {
  min-width: 0;
  flex: 1;
}

.blog-spotlight-small__title {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.blog-spotlight-small__title a {
  color: #e8eaf0;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-spotlight-small__title a:hover {
  color: #facc15;
}

.blog-spotlight-small__date {
  font-size: 0.7rem;
  color: #57647a;
}

.blog-spotlight-small__date i {
  color: #facc15;
  margin-right: 3px;
}

/* ================================================
   SEARCH BAR
   ================================================ */

.blog-search-bar {
  position: relative;
  margin-bottom: 24px;
}

.blog-search-bar__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #57647a;
  font-size: 0.85rem;
  pointer-events: none;
}

.blog-search-bar__input {
  width: 100%;
  background: #0e1120;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: #e0e8f0;
  font-size: 0.88rem;
  padding: 13px 16px 13px 44px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-search-bar__input::placeholder {
  color: #4a5568;
}

.blog-search-bar__input:focus {
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.08);
}

/* ================================================
   CATEGORY FILTER TABS
   ================================================ */

.blog-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.blog-cat-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #8899aa;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: inherit;
}

.blog-cat-tabs__tab:hover {
  border-color: rgba(250, 204, 21, 0.4);
  color: #e0e8f0;
}

.blog-cat-tabs__tab.is-active {
  background: #facc15;
  border-color: #facc15;
  color: #000;
  font-weight: 700;
}

.blog-cat-tabs__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
}

.blog-cat-tabs__tab.is-active .blog-cat-tabs__count {
  background: rgba(0, 0, 0, 0.18);
}

/* ================================================
   BLOG GRID — Card Fade-in Animation (AJAX)
   Scoped to .blog-page only
   ================================================ */

.blog-page .blog-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-page .blog-card--hidden {
  opacity: 0;
  transform: translateY(14px);
}

/* ================================================
   LOAD MORE BUTTON
   ================================================ */

.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.blog-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(250, 204, 21, 0.4);
  color: #facc15;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  padding: 13px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.blog-load-more:hover:not(:disabled) {
  background: #facc15;
  color: #000;
}

.blog-load-more:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
  color: #57647a;
}

/* No Results */
.blog-no-results {
  text-align: center;
  color: #57647a;
  font-size: 0.88rem;
  padding: 40px 0;
  grid-column: 1 / -1;
}

/* ================================================
   AUTHOR BOX
   ================================================ */

.single-author-box-wrap {
  margin-bottom: 40px;
}

.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #0e1120;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #facc15;
  border-radius: 14px;
  padding: 24px 22px;
}

.author-box__avatar-wrap {
  flex-shrink: 0;
}

.author-box__avatar,
.author-box__avatar-wrap img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(250, 204, 21, 0.4);
  display: block;
}

.author-box__info {
  min-width: 0;
  flex: 1;
}

.author-box__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 4px;
}

.author-box__name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.author-box__bio {
  font-size: 0.8rem;
  color: #8292a8;
  line-height: 1.7;
  margin-bottom: 12px;
}

.author-box__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #facc15;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.author-box__link:hover {
  gap: 10px;
}

/* ================================================
   MOBILE — New Blog Elements
   ================================================ */
@media (max-width: 768px) {

  .blog-hero-spotlight {
    padding: 30px 0 24px;
  }

  .blog-hero-spotlight__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .blog-spotlight-featured__thumb,
  .blog-spotlight-featured__thumb-link {
    max-height: 220px;
    height: 220px;
  }

  .blog-spotlight-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .blog-spotlight-small {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }

  .blog-spotlight-small__thumb {
    width: 100%;
    height: 90px;
  }

  .blog-cat-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .blog-cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .blog-cat-tabs__tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-box__link {
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-hero-spotlight__inner {
    grid-template-columns: 1fr 300px;
  }
}

/* ================================================
   CONTACT US PAGE
   ================================================ */

.contact-page {
  background: #080b14;
  min-height: 100vh;
}

/* Hero Video Banner */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #0d1020;
}

.contact-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.contact-desktop-video {
  display: block;
}

.contact-mobile-video {
  display: none;
}

/* Responsive Video Switching */
@media (max-width: 768px) {
  .contact-hero {
    height: 100svh;
  }

  .contact-desktop-video {
    display: none;
  }

  .contact-mobile-video {
    display: block;
  }
}

/* ================================================
   PROJECT INQUIRY SECTION
   ================================================ */

.project-inquiry {
  padding: 100px 0 80px;
  background: url('assets/CDS2.png') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .project-inquiry {
    background: url('assets/CMS2.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
  }
}

.inquiry-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
.inquiry-header {
  text-align: center;
  margin-bottom: 60px;
}

.inquiry-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(90deg, #facc15, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.inquiry-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout */
.inquiry-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* Glass Form */
.glass-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-row.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-left: 2px;
}

/* Inputs */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  color: #64748b;
  font-size: 0.9rem;
}

.glass-form input,
.glass-form select,
.glass-form textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 15px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.input-with-icon input,
.input-with-icon select {
  padding-left: 45px;
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
  outline: none;
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}

/* Toggles */
.toggle-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.toggle-btn.is-active {
  background: rgba(250, 204, 21, 0.15);
  border-color: rgba(250, 204, 21, 0.6);
  color: #facc15;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.1);
}

/* Action Buttons (Upload/Voice) */
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 35px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 20px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  pointer-events: auto;
}

.action-btn i {
  font-size: 1.4rem;
}

.action-btn span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.action-btn span small {
  font-weight: 400;
  color: #64748b;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #facc15, #fbbf24);
  border: none;
  border-radius: 12px;
  padding: 16px;
  color: #000;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
  filter: brightness(1.1);
}

.submit-btn:active {
  transform: translateY(0);
}

.error-msg {
  color: #f87171;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 15px;
}

/* ---- SIDEBAR ---- */
.why-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
}

.why-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 45px;
  height: 45px;
  background: rgba(250, 204, 21, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.why-text p {
  font-size: 0.88rem;
  color: #94a3b8;
}

.why-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-footer {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.why-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, #0f172a, transparent);
  pointer-events: none;
}

.partnership-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* ---- COUNTERS ---- */
.inquiry-counters {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  gap: 30px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-item {
  text-align: center;
  flex: 1;
}

.counter-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.counter-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
  .inquiry-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .project-inquiry {
    padding: 60px 0;
  }

  .inquiry-container {
    padding: 0 20px;
  }

  .glass-form {
    padding: 25px;
  }

  .form-row.split,
  .form-row.trio {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .inquiry-counters {
    flex-direction: column;
    gap: 40px;
  }

  .counter-divider {
    display: none;
  }

  .inquiry-title {
    font-size: 2.2rem;
  }
}

/* ================================================
   HOMEPAGE INQUIRY FORM (inside process section)
   ================================================ */

.homepage-inquiry-section {
  padding: 100px 40px 80px !important;
}

.homepage-inquiry-section .inquiry-container,
.homepage-inquiry-section .inquiry-header,
.homepage-inquiry-section .inquiry-content-grid,
.homepage-inquiry-section .inquiry-counters {
  position: relative;
  z-index: 5;
}

/* Remove bottom margin from why-list since no partnership image */
.homepage-inquiry-section .why-list {
  margin-bottom: 0;
}

/* Add separator line below heading + extra spacing to align box bottoms */
.homepage-inquiry-section .why-title {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 25px;
}

/* Ensure why-card fills height to align with form */
.homepage-inquiry-section .why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.homepage-inquiry-section .why-list {
  flex: 1;
}

@media (max-width: 768px) {
  .homepage-inquiry-section {
    padding: 60px 20px !important;
  }
}