/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   1. VARIABLES & RESET
   2. GLOBAL UTILITIES (Lenis, Mouse, Blobs)
   3. NAVIGATION & MOBILE MENU
   4. HERO SECTION
   5. CLIENT LOGO SLIDER
   6. ABOUT SECTION
   7. FEATURED SECTION (With Badges)
   8. MISSION & VISION ORBIT
   9. SERVICES SECTION (Homepage)
   10. VIDEO TESTIMONIAL (#tranding)
   11. FAQ SECTION
   12. BENTO GRID (Why Work With Us) & MEASURABLE GROWTH GRAPH
   13. FOOTER
   14. SERVICE DETAILS PAGE (Inner Page)
   ========================================================================== */

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
  /* --- Brand Colors --- */
  --brand-red: #6c020e;
  --brand-maroon: #7a0c14;
  --brand-yellow: #ffbd59;
  --brand-white: #ffffff;
  --brand-orange: #ff5a1f;

  /* --- Text Colors --- */
  --text-dark: #222222;
  --text-gray: #555555;
  --text-light: #777777;

  /* --- Backgrounds --- */
  --bg-light: #f8f9fa;
  --bg-off-white: #fdfdfd;
  --bg-grey: #e3e3e3;

  /* --- Dimensions --- */
  --container-width: 1300px;
  --slider-height: 100px; /* Reduced from 110px */

  /* --- FONTS --- */
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: auto;
  width: 100%;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--brand-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0 20px;
}

/* =========================================
   2. GLOBAL UTILITIES
   ========================================= */

/* --- Lenis Smooth Scroll --- */
html.lenis,
html.lenis body {
  height: auto;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --- Mouse Follower --- */
#mouse-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--brand-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease,
    opacity 0.3s ease;
}

#mouse-circle.hover-active {
  width: 80px;
  height: 80px;
  background: rgba(255, 189, 89, 0.2);
  border-color: var(--brand-yellow);
  mix-blend-mode: multiply;
}

@media (max-width: 991px) {
  #mouse-circle {
    display: none;
  }
}

/* --- Global Blobs Animation --- */
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(30px, 50px) rotate(10deg);
  }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--brand-yellow);
  top: 40%;
  right: -10%;
  opacity: 0.6;
  animation: float 10s infinite alternate;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--brand-red);
  top: 10%;
  left: -5%;
  opacity: 0.4;
  animation: float 12s infinite alternate-reverse;
}

/* =========================================
   3. NAVIGATION & MOBILE MENU
   ========================================= */

.glass-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* The Main Pill Container */
.nav-container {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  position: relative;
  z-index: 2;
  transition:
    border-radius 0.3s ease,
    background 0.3s ease;
}

.glass-navbar.open .nav-container {
  background: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid transparent;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: -0.5px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo i {
  color: var(--brand-yellow);
}

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover {
  color: var(--brand-red);
}
.nav-links i {
  font-size: 0.7rem;
  color: var(--brand-yellow);
}

/* Buttons (Desktop Default) */
.btn-header {
  background: var(--text-dark);
  color: #fff;
  padding: 10px 10px 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.btn-icon-bg {
  background: var(--brand-yellow);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brand-red);
  transition: transform 0.3s ease;
}

.btn-header:hover {
  background: var(--brand-red);
  box-shadow: 0 5px 15px rgba(108, 2, 14, 0.2);
}
.btn-header:hover .btn-icon-bg {
  transform: rotate(-45deg);
  background: #fff;
}

/* --- DROPDOWN MENUS (Desktop) --- */
.dropdown-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
  z-index: 1000;
}

.dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: rgba(108, 2, 14, 0.05);
  color: #6c020e;
}

/* --- MOBILE TOGGLE --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 20;
}

.mobile-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--brand-red) !important;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.mobile-toggle.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- MOBILE MENU CONTAINER --- */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: -20px;
  padding-top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* --- FIX MOBILE MENU SCROLLING --- */
.mobile-menu.open {
    /* 1. Increase height limit so it fits more content */
    max-height: 85vh; /* 85% of the screen height */
    
    /* 2. Enable scrolling if content gets too tall */
    overflow-y: auto; 
    
    /* 3. Make scroll smooth */
    -webkit-overflow-scrolling: touch;
    
    /* 4. Ensure borders/padding are correct */
    padding-top: 40px; 
    padding-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.8);
    border-top: none;
    opacity: 1;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--brand-red);
}

.mobile-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.mobile-menu .btn-header {
  width: 80%;
  justify-content: center;
  background: var(--brand-red);
  color: white;
  padding: 12px 20px;
  box-shadow: 0 10px 20px rgba(108, 2, 14, 0.15);
}

.mobile-menu .btn-header .btn-icon-bg {
  background: white;
  color: var(--brand-red);
}

.mobile-menu .btn-header:hover {
  background: var(--brand-yellow);
  color: var(--brand-red);
}

/* Mobile Dropdown */
.mobile-dropdown-wrapper {
  width: 100%;
  text-align: center;
}
.mobile-drop-trigger {
  display: block;
  font-size: 1.5rem;
  color: #333;
  margin: 15px 0;
  cursor: pointer;
  font-weight: 600;
}
.mobile-drop-items {
  display: none;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  margin: 10px 20px;
  padding: 10px 0;
}
.mobile-drop-items a {
  display: block;
  font-size: 1rem;
  padding: 8px 0;
  color: #555;
}
.mobile-dropdown-wrapper.active .mobile-drop-items {
  display: block;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .glass-navbar {
    top: 15px;
    width: 95% !important;
  }
  .nav-container {
    padding: 12px 20px;
  }
  .nav-links,
  .nav-btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-logo img {
    height: 35px;
  }
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-engineered {
  padding: 180px 0 100px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 2, 14, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 2, 14, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-spotlight-red {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle at center,
    rgba(108, 2, 14, 0.2) 0%,
    transparent 60%
  );
  filter: blur(100px);
  z-index: 0;
  transform: skewX(-10deg);
}

.hero-spotlight-yellow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle at center,
    rgba(255, 189, 89, 0.25) 0%,
    transparent 60%
  );
  filter: blur(100px);
  z-index: 0;
  transform: skewX(-10deg);
}

.hero-container-engineered {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-layer {
  position: relative;
  z-index: 5;
  padding-right: 40px;
}

.hero-visual-layer {
  position: relative;
  z-index: 2;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Hero Content Styling */
.trust-badge-floating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid rgba(108, 2, 14, 0.08);
  padding: 10px 20px;
  border-radius: 60px;
  box-shadow: 0 15px 35px rgba(108, 2, 14, 0.1);
  margin-bottom: 40px;
  position: relative;
  left: -20px;
}

.avatars-stack {
  display: flex;
}
.avatars-stack img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.avatars-stack img:first-child {
  margin-left: 0;
}
.trust-text span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}
.trust-text .stars {
  color: var(--brand-yellow);
  font-size: 0.85rem;
  margin-top: 2px;
}

.hero-title-mega {
  font-family: var(--font-primary);
  font-size: 5rem;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.highlight-engineer {
  color: var(--brand-red);
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 30px rgba(255, 189, 89, 0.3);
}

.hero-subtext-bold {
  font-size: 1.25rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 580px;
  opacity: 0.9;
  font-weight: 500;
}

.btn-engineer-solid {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--brand-yellow), #ffcb7d);
  color: var(--brand-red);
  font-weight: 800;
  border-radius: 60px;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 20px 40px rgba(255, 189, 89, 0.4);
  border: 2px solid #fff;
}
.btn-engineer-solid:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 189, 89, 0.5);
}

/* Hero Visuals */
.image-backdrop-geo {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  background: linear-gradient(
    135deg,
    rgba(108, 2, 14, 0.15),
    rgba(255, 189, 89, 0.2)
  );
  border-radius: 40px;
  transform: rotate(-5deg);
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.owner-img-engineer {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  margin-bottom: -40px;
}

.owner-img-engineer img {
  max-height: 110%;
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(108, 2, 14, 0.25));
}

.review-orbit {
  position: absolute;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  width: 240px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 4;
  border: 2px solid rgba(108, 2, 14, 0.05);
}

.orbit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.orbit-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--brand-yellow);
}
.orbit-head strong {
  font-size: 1rem;
  color: var(--text-dark);
  display: block;
}
.review-orbit p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.card-orbit-1 {
  top: -10%;
  right: -10%;
  animation: orbit-float-1 8s ease-in-out infinite alternate;
}
.card-orbit-2 {
  bottom: 20%;
  left: -10%;
  z-index: 4;
  animation: orbit-float-2 7s ease-in-out infinite alternate-reverse;
}

@keyframes orbit-float-1 {
  0% {
    transform: translate(0, 0) rotate(2deg);
  }
  100% {
    transform: translate(-20px, -30px) rotate(0deg);
  }
}
@keyframes orbit-float-2 {
  0% {
    transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    transform: translate(20px, -20px) rotate(0deg);
  }
}

@media (max-width: 1200px) {
  .hero-title-mega {
    font-size: 4rem;
  }
  .hero-visual-layer {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .hero-engineered {
    padding-top: 140px;
    min-height: auto;
  }
  .hero-container-engineered {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-content-layer {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .trust-badge-floating {
    left: 0;
    margin-bottom: 30px;
  }
  .hero-title-mega {
    font-size: 3.5rem;
  }
  .hero-visual-layer {
    height: 500px;
    justify-content: center;
  }
  .image-backdrop-geo {
    width: 80%;
    left: 10%;
  }
  .owner-img-engineer img {
    max-height: 100%;
  }
  .card-orbit-1 {
    right: 0;
    top: 0;
  }
  .card-orbit-2 {
    left: 0;
    bottom: 10%;
  }
}

/* =========================================
   5. CLIENT LOGO SLIDER
   ========================================= */
/* The Container (Mask) */
.client-slider {
    width: 100%;
    overflow: hidden; 
    position: relative;
    padding: 60px 0; 
    background: #ffffff; 
    z-index: 1;
}

.client-slider::before,
.client-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.client-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.client-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* The Track (The moving part) */
.logo-track {
    display: flex; 
    align-items: center; 
    gap: 80px; /* Adjust spacing between logos */
    width: max-content; 
    will-change: transform; 
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
    width: 150px;  /* Fixed width for every logo slot */
    height: 80px;  /* Fixed height for every logo slot */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-slider .logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Ensures logo fits inside without stretching */
    
    /* Grayscale by default */
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
    cursor: pointer;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Ensures logo fits inside without stretching */
    
    /* Grayscale by default */
    transition: all 0.4s ease;
    cursor: pointer;
}

.client-slider:hover .logo-item img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-220px * 7));
  }
}

/* =========================================
   6. ABOUT SECTION
   ========================================= */
.about-section-upgrade {
  padding: 50px 0;
  position: relative;
  overflow: visible;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.blob-red-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(108, 2, 14, 0.05) 0%,
    transparent 70%
  );
  top: 10%;
  left: -10%;
  z-index: 0;
}
.blob-yellow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 189, 89, 0.1) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -10%;
  z-index: 0;
}

.about-visual-wrapper {
  position: relative;
}

.about-main-img {
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  padding: 5px;
  background: linear-gradient(135deg, #fff, var(--brand-yellow));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-main-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.about-visual-wrapper:hover .about-main-img img {
  transform: scale(1.05);
}

.trusted-badge-glass {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(108, 2, 14, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 220px;
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.big-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, var(--brand-red), #b91e2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.badge-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.live-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  border-bottom: 2px solid rgba(108, 2, 14, 0.1);
  padding-bottom: 5px;
}

.live-chart .bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand-yellow), var(--brand-orange));
  border-radius: 4px 4px 0 0;
  height: 0;
  animation: grow-bar 2s ease-out infinite alternate;
  animation-delay: var(--d);
}

@keyframes grow-bar {
  0% {
    height: 10%;
    opacity: 0.5;
  }
  100% {
    height: var(--h);
    opacity: 1;
  }
}

.about-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.glass-pill {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(108, 2, 14, 0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.glass-pill:hover {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 2, 14, 0.2);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .trusted-badge-glass {
    right: 0;
    bottom: -20px;
  }
}
@media (max-width: 500px) {
  .trusted-badge-glass {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    margin-left: 20px;
  }
}

/* =========================================
   7. FEATURED SECTION (With Badges)
   ========================================= */
.featured-premium {
  padding: 120px 0 80px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.feat-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
}

.image-portal-bg {
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 95%;
  background: linear-gradient(180deg, #fffbf0 0%, #ffeecf 100%);
  border-radius: 300px 300px 20px 20px;
  z-index: -1;
  box-shadow: 0 20px 40px rgba(255, 189, 89, 0.15);
}

.feat-main-img {
  width: auto;
  max-height: 520px;
  filter: drop-shadow(0 30px 50px rgba(108, 2, 14, 0.15));
  transition: transform 0.5s ease;
}
.feat-image-wrapper:hover .feat-main-img {
  transform: scale(1.02) translateY(-10px);
}

/* --- BADGES (Founder & Press) --- */
@keyframes floatLeft {
  0%,
  100% {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-6deg) translateY(-12px);
  }
}
@keyframes floatRight {
  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }
  50% {
    transform: rotate(6deg) translateY(-12px);
  }
}

.press-badge,
.founder-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 3;
  transition: all 0.3s ease;
}

.founder-badge {
  top: -42px;
  left: -20px;
  animation: floatLeft 5s ease-in-out infinite;
  animation-delay: 0.7s;
}

.press-badge {
  bottom: 30px;
  right: -20px;
  animation: floatRight 4s ease-in-out infinite;
}

.press-badge:hover,
.founder-badge:hover {
  animation-play-state: paused;
  transform: rotate(6deg) translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(108, 2, 14, 0.15);
  border-color: rgba(108, 2, 14, 0.2);
}
.founder-badge:hover {
  transform: rotate(-6deg) translateY(-5px) scale(1.05);
}

.badge-icon {
  width: 38px;
  height: 38px;
  background: #6c020e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(108, 2, 14, 0.3);
}

.badge-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6c020e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.badge-sub {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

/* Right Content */
.feat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.tiny-label-pill {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand-red);
  background: transparent;
  border: 1px solid rgba(108, 2, 14, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.feat-title {
  font-family: var(--font-primary);
  font-size: 5rem;
  line-height: 1.05;
  color: var(--text-dark);
  margin: 0;
}
.highlight-text {
  color: var(--brand-red);
  position: relative;
  z-index: 1;
}
.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: rgba(255, 189, 89, 0.4);
  z-index: -1;
  transform: skewX(-10deg);
}

@media (max-width: 991px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .feat-content {
    align-items: center;
  }
  .feat-title {
    font-size: 3.5rem;
  }
  .image-portal-bg {
    width: 90%;
  }
  .feat-main-img {
    max-height: 400px;
  }
  .press-badge {
    right: 0;
    bottom: 30px;
  }
  /* .founder-badge {
    left: 0;
    top: -30px;
  } */
}

/* =========================================
   8. MISSION & VISION ORBIT
   ========================================= */
.mv-orbit-section {
  position: relative;
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
}

.mv-orbit-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.mv-center-hub {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin: 0 40px;
}

.hub-logo-box {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(108, 2, 14, 0.15);
  border: 1px solid rgba(108, 2, 14, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.hub-logo-box img {
  width: 70%;
  height: auto;
  object-fit: contain;
}
.mv-center-hub:hover .hub-logo-box {
  transform: scale(1.1);
  border-color: var(--brand-yellow);
}

.hub-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 189, 89, 0.3);
  border-radius: 50%;
  animation: pulse-ring 3s infinite;
  z-index: 1;
}
.hub-rings::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(108, 2, 14, 0.1);
  border-radius: 50%;
  animation: pulse-ring 3s infinite reverse;
}
@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}

.hub-connector-left,
.hub-connector-right {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-red));
  z-index: 0;
}
.hub-connector-left {
  right: 100%;
  background: linear-gradient(to left, var(--brand-red), transparent);
}
.hub-connector-right {
  left: 100%;
  background: linear-gradient(to right, var(--brand-red), transparent);
}

.mv-orbit-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.mv-orbit-item:hover {
  opacity: 1;
}

.mission-side {
  align-items: flex-end;
  text-align: right;
}
.vision-side {
  align-items: flex-start;
  text-align: left;
}

.mv-orbit-item h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--brand-red);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.mv-orbit-item p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.mission-side h3::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brand-yellow);
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
}
.vision-side h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brand-yellow);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .mv-orbit-container {
    flex-direction: column;
    gap: 30px;
  }
  .mv-center-hub {
    order: 1;
    margin: 0;
  }
  .hub-connector-left,
  .hub-connector-right {
    display: none;
  }
  .mv-center-hub::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brand-red), transparent);
  }
  .mv-center-hub::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 40px;
    background: linear-gradient(to top, var(--brand-red), transparent);
  }
  .mission-side {
    order: 2;
    align-items: center;
    text-align: center;
  }
  .vision-side {
    order: 3;
    align-items: center;
    text-align: center;
  }
  .mission-side h3::after,
  .vision-side h3::before {
    display: none;
  }
}

/* =========================================
   9. SERVICES SECTION (Homepage)
   ========================================= */
.services-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--brand-red), var(--brand-yellow)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(108, 2, 14, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(108, 2, 14, 0.15);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff9f9 0%, #fff0f0 100%);
  border: 1px solid rgba(108, 2, 14, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.icon-box i {
  font-size: 22px;
  background: -webkit-linear-gradient(45deg, var(--brand-red), #b91e2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
  border-color: var(--brand-red);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card:hover .card-title {
  color: var(--brand-red);
}
.card-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.btn-light {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 6px 8px 15px;
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.btn-arrow-circle {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.service-card:hover .btn-light {
  background: #fff;
  border-color: var(--brand-red);
  color: var(--brand-red);
}
.service-card:hover .btn-arrow-circle {
  background-color: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  transform: rotate(-45deg);
}

@media (max-width: 500px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
}

/* =========================================
   10. VIDEO TESTIMONIAL (#tranding)
   ========================================= */
#tranding {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

.blob-tranding-red {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(108, 2, 14, 0.08) 0%,
    transparent 70%
  );
  top: -10%;
  left: -15%;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: float 12s infinite alternate;
}
.blob-tranding-yellow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 189, 89, 0.15) 0%,
    transparent 70%
  );
  bottom: -10%;
  right: -10%;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: float 10s infinite alternate-reverse;
}
#tranding .container {
  position: relative;
  z-index: 2;
}

.tranding-slider {
  height: 34rem;
  padding: 2rem 0;
  position: relative;
  overflow: visible;
}
.tranding-slide {
  width: 20rem;
  height: 30rem;
  position: relative;
  transition: all 0.3s ease;
}

.tranding-slide-img {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(135deg, var(--brand-red), var(--brand-yellow)) border-box;
  border: 2px solid transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.tranding-slide-img:hover {
  box-shadow: 0 25px 60px rgba(108, 2, 14, 0.25);
  transform: translateY(-5px);
}

.tranding-slide-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.video-overlay.is-playing {
  background: transparent;
}

.play-btn,
.pause-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.tranding-slide-img:hover .play-btn {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: scale(1.1);
}
.pause-btn {
  display: none;
}
.video-overlay.is-playing .play-btn {
  display: none;
}
.video-overlay.is-playing .pause-btn {
  display: flex;
  opacity: 0;
  transition: opacity 0.3s;
}
.video-overlay.is-playing:hover .pause-btn {
  opacity: 1;
}

.tranding-slider-control {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.swiper-pagination-bullet-active {
  background-color: var(--brand-red) !important;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 500px) {
  .tranding-slide {
    width: 16rem !important;
    height: 24rem !important;
  }
  .tranding-slider {
    height: 28rem;
  }
}




/* =========================================
   WALL OF LOVE (Centered Grid)
========================================= */

.wall-of-love-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* THE FIX: Switch to Flexbox for centering */
.love-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers items horizontally */
    gap: 30px; /* Space between cards */
    max-width: 1200px;
    margin: 0 auto;
}

/* The Cards */
.love-card {
    background: #fff;
    border-radius: 16px;
    
    /* Responsive Width Logic */
    flex: 0 1 350px; /* Base width 350px, can shrink if needed */
    width: 100%; /* Ensures it works on mobile */
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: zoom-in;
    
    /* Ensure height adapts to content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.love-card img {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: Ensure consistent look if images differ wildly */
    object-fit: contain; 
}

/* Hover Effect */
.love-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 2, 14, 0.15);
    border-color: rgba(108, 2, 14, 0.1);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .love-card {
        flex: 0 1 100%; /* Full width on mobile */
        max-width: 400px; /* But don't get huge */
    }
}

/* --- LIGHTBOX FIX (Ensures it stays on screen) --- */
.image-modal {
    display: none;
    position: fixed; /* Must be fixed */
    z-index: 999999; /* Highest priority */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    
    /* Flexbox Center */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-modal.active {
    display: flex !important; /* Force Flex when active */
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 1000000;
}




/* =========================================
   FIXED SLIDER CONTROLS (Left/Right Arrows)
========================================= */

.tranding-slider-control {
    position: relative;
    width: 90%; /* Width of the control area */
    max-width: 1200px;
    margin: 30px auto 0; /* Center the control bar */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the pagination dots */
    height: 50px; /* Define height to contain arrows */
}

/* 1. Position Previous Button on Far Left */
.tranding-slider-control .swiper-button-prev {
    position: absolute !important;
    left: 0 !important;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 10;
}

/* 2. Position Next Button on Far Right */
.tranding-slider-control .swiper-button-next {
    position: absolute !important;
    right: 0 !important;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 10;
}

/* 3. Button Styling (White Circle with Red Icon) */
.tranding-slider-control .slider-arrow {
    width: 3.5rem;
    height: 3.5rem;
    background: #ffffff;
    border-radius: 50%;
    color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Remove default Swiper arrows */
.tranding-slider-control .swiper-button-next::after,
.tranding-slider-control .swiper-button-prev::after {
    content: '' !important;
}

/* Icon Size */
.tranding-slider-control .slider-arrow ion-icon {
    font-size: 1.8rem;
}

/* Hover Effect */
.tranding-slider-control .slider-arrow:hover {
    background: var(--brand-red);
    color: #fff;
    transform: translateY(-50%) scale(1.1); /* Keep vertical center + scale */
    box-shadow: 0 8px 20px rgba(108, 2, 14, 0.2);
}

/* 4. Fix Pagination (Dots) in the Center */
.tranding-slider-control .swiper-pagination {
    position: relative !important;
    width: auto !important;
    bottom: auto !important;
    display: flex;
    gap: 5px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--brand-red);
    width: 25px;
    border-radius: 5px;
    transition: width 0.3s;
}

/* =========================================
   11. FAQ SECTION
   ========================================= */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.faq-heading-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq-label {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(255, 189, 89, 0.2);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(108, 2, 14, 0.1);
}
.faq-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(108, 2, 14, 0.03);
}
.faq-item:hover,
.faq-item.active {
  box-shadow: 0 8px 25px rgba(108, 2, 14, 0.08);
  border-color: var(--brand-yellow);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}
.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--brand-red);
  transition:
    transform 0.3s ease,
    background-color 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
  color: var(--brand-yellow);
  background: var(--brand-red);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-body {
  padding: 0 25px 25px 25px;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================================
   INTERACTIVE MARQUEE STRIP
   ========================================= */
.marquee-strip {
    background: var(--brand-yellow);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(108, 2, 14, 0.1);
    border-bottom: 1px solid rgba(108, 2, 14, 0.1);
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    /* IMPORTANT: No 'animation' property here. 
       This allows your JavaScript to control the movement 
       based on the scroll position. */
}

.marquee-track span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-red); 
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding-right: 50px; /* Spacing between repeats */
}

/* =========================================
   12. BENTO GRID (Why Work With Us)
   ========================================= */
.bento-section.compact-version {
  background-color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}

.bento-header {
  margin-bottom: 30px;
}
.why-title {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--brand-red);
  position: relative;
}

.arrow-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: var(--brand-yellow);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 15px;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
  border: 2px solid rgba(108, 2, 14, 0.1);
}
.arrow-circle i {
  font-size: 1.8rem;
  color: var(--brand-red);
}
.bento-section:hover .arrow-circle {
  transform: rotate(0deg);
  background-color: var(--brand-red);
}
.bento-section:hover .arrow-circle i {
  color: var(--brand-yellow);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  grid-template-rows: auto auto auto;
  gap: 15px;
}

.bento-card {
  background: #ffffff;
  border: 1px solid rgba(108, 2, 14, 0.08);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(108, 2, 14, 0.08);
  border-color: rgba(108, 2, 14, 0.2);
}
.bento-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  color: var(--text-dark);
  z-index: 2;
}
.bento-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 10px;
  line-height: 1.5;
  z-index: 2;
}

/* Specific Cards */
.card-comp {
  grid-column: span 2;
  align-items: flex-start;
  text-align: left;
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}
.card-comp h3 {
  font-size: 1.5rem;
  color: var(--brand-red);
}

/* MEASURABLE GROWTH CARD (FIXED) */
.card-results {
  grid-column: 3;
  grid-row: span 2;
  background: var(--brand-yellow);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  height: auto;
  padding-bottom: 0 !important;
}
.card-results .card-content {
  margin-bottom: 15px;
  position: relative;
  z-index: 5;
  text-align: left;
}
.card-results h3 {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--brand-red);
}
.card-results p {
  color: var(--brand-red);
  font-weight: 600;
  opacity: 0.9;
}

/* --- Growing Graph (Updated) --- */
.data-graph-container {
  position: relative;
  margin-top: auto;
  width: 100%;
  height: 9rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 10px 15px 10px;
  z-index: 1;
}

/* --- The Bars (Data Pillars) --- */
.data-bar {
    width: 14%; 
    background: #6c020e; 
    border-radius: 4px; 
    opacity: 0.85;
    
    /* IMPORTANT: Remove 'animation: riseUp ...' */
    /* We set the starting state here */
    transform-origin: bottom; 
    transform: scaleY(0); /* Start completely hidden (flat) */
}

/* You can DELETE the @keyframes riseUp block entirely from your CSS */

.bar-1 {
  height: 30%;
  animation-delay: 0.1s;
}
.bar-2 {
  height: 45%;
  animation-delay: 0.2s;
}
.bar-3 {
  height: 35%;
  animation-delay: 0.3s;
}
.bar-4 {
  height: 70%;
  animation-delay: 0.4s;
}
.bar-5 {
  height: 100%;
  animation-delay: 0.5s;
  background: #8a0000;
}

@keyframes riseUp {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(2.3);
  } /* Scaled up for full effect */
}

.card-results:hover .data-bar {
  filter: brightness(1.2);
  transition: all 0.3s ease;
}

/* Small Cards */
.card-tailored,
.card-creative {
  grid-column: span 1;
  height: 140px;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
}
.card-tailored h3,
.card-creative h3 {
  font-size: 1.1rem;
}
.card-tailored p,
.card-creative p {
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Dedicated Experts */
.card-dedicated {
  grid-column: span 3;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 30px;
  background: #fdfdfd;
  padding: 15px 25px;
}
.card-dedicated h3 {
  flex-shrink: 0;
  color: var(--brand-red);
  font-size: 1.3rem;
}

/* Responsive Grid */
@media (max-width: 991px) {
  .why-title {
    font-size: 3rem;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .card-comp {
    grid-column: span 2;
  }
  .card-results {
    grid-column: span 2;
    grid-row: auto;
    height: auto;
    padding: 30px;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .card-dedicated {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .card-tailored,
  .card-creative {
    height: auto;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .data-graph-container {
    height: 9rem;
    width: 90%;
    bottom: 15px;
  }
  .data-bar {
    width: 10%;
    opacity: 0.7;
  }
  .bar-5 {
    background: #8a0000;
    opacity: 0.6;
  }
}
@media (max-width: 600px) {
  .why-title {
    font-size: 2.2rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .card-comp,
  .card-results,
  .card-tailored,
  .card-creative,
  .card-dedicated {
    grid-column: span 1;
  }
  .card-results {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================
   13. FOOTER
   ========================================= */
.footer {
  background-color: var(--bg-light);
  color: var(--text-gray);
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03);
}

.footer-pattern {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 189, 89, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(108, 2, 14, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brand-red);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.social-icon:hover {
  background: var(--brand-red);
  color: var(--brand-yellow);
  transform: translateY(-3px);
}

/* --- Footer Layout Fix --- */

.footer-links-grid {
    display: flex; /* Use Flexbox */
    justify-content: space-between; /* Push columns apart to fill the space */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 40px; /* Add consistent space between columns */
    width: 100%; /* Ensure it takes full width */
}

/* Make sure each column can expand but has a minimum width */
.footer-column {
    flex: 1 1 250px; /* Grow: 1, Shrink: 1, Min-width: 250px */
}

/* Optional: Make the map column slightly wider for better visibility */
.footer-column:last-child {
    flex: 1 1 300px;
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    .footer-links-grid {
        flex-direction: column; /* Stack columns vertically on mobile */
        gap: 30px;
    }
    .footer-column {
        width: 100%; /* Make columns full width on mobile */
        flex: auto;
    }
}

.footer-column h4 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Split First Column */
.footer-links-grid .footer-column:first-child ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.footer-column a {
  color: var(--text-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.footer-column a:hover {
  color: var(--brand-red);
  padding-left: 5px;
}

.footer-contact-info {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-gray);
}
.contact-row i {
  color: #6c020e;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.contact-row a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #e3e3e3;
  padding-top: 25px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--brand-red);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .footer-links-grid .footer-column:first-child ul {
    grid-template-columns: 1fr;
  }
}




/* =========================================
   14. SERVICE DETAILS PAGE (Inner Page)
   ========================================= */
.service-details-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Service Blobs */
@keyframes pulseBlob {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}
.blob-service-1 {
  width: 600px;
  height: 600px;
  background: var(--brand-yellow);
  top: 5%;
  left: -10%;
  opacity: 0.5;
  animation: float 20s infinite alternate;
}
.blob-service-2 {
  width: 500px;
  height: 500px;
  background: var(--brand-red);
  bottom: 10%;
  right: -10%;
  opacity: 0.4;
  animation: float 15s infinite alternate-reverse;
}
.blob-service-3 {
  width: 400px;
  height: 400px;
  background: var(--brand-orange);
  top: 40%;
  right: -5%;
  opacity: 0.4;
  animation: float 18s infinite alternate;
}
.blob-service-5 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--brand-yellow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  animation: pulseBlob 10s infinite;
  z-index: 0;
}

/* Layout Grid */
.service-page-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  align-items: start;
  transition:
    grid-template-columns 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    gap 0.6s ease;
}

.service-page-layout.layout-expanded {
  grid-template-columns: 0px 1fr;
  gap: 0;
}
.service-page-layout.layout-expanded .service-sidebar {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(108, 2, 14, 0.05);
}

.sidebar-title {
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 20px;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(108, 2, 14, 0.1);
}

.service-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-btn {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.service-btn span {
  flex: 1;
  text-align: left;
}
.service-btn i {
  flex-shrink: 0;
}
.service-btn:hover {
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.5);
  padding-left: 25px;
}
.service-btn.active {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 5px 15px rgba(108, 2, 14, 0.2);
}
.service-btn.active i {
  color: var(--brand-yellow);
}

.contact-info-card {
  background: linear-gradient(135deg, #222, #333);
  color: #fff;
  text-align: center;
}
.contact-info-card h4 {
  color: var(--brand-yellow);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 20px;
}
.phone-link {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-sidebar {
  display: inline-block;
  padding: 10px 25px;
  background: var(--brand-yellow);
  color: var(--brand-red);
  font-weight: 700;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: transform 0.2s;
}
.btn-sidebar:hover {
  transform: scale(1.05);
}

/* Floating Menu Button */
.floating-menu-btn {
  position: fixed;
  left: 30px;
  bottom: 30px;
  background: var(--brand-red);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(108, 2, 14, 0.4);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.floating-menu-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-menu-btn:hover {
  transform: scale(1.1);
  background: var(--brand-yellow);
  color: var(--brand-red);
}

/* Content Area */
.service-content-area {
  min-width: 0;
  min-height: 600px;
  transition: width 0.6s ease;
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Inner Content Styles */
.seo-section {
  margin-bottom: 50px;
}
.seo-header-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.seo-title {
  font-size: 2.8rem;
  color: var(--brand-red);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.seo-subtitle {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
  margin-top: 40px;
}
.seo-text {
  color: var(--text-gray);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.highlight-quote {
  background: rgba(255, 189, 89, 0.1);
  border-left: 5px solid var(--brand-yellow);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-style: italic;
  color: #444;
  font-weight: 600;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 25px 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.check-list i {
  color: var(--brand-red);
  background: var(--brand-yellow);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.why-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-yellow);
}
.why-card h4 {
  color: var(--brand-red);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.pkg-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.pkg-card:hover {
  border-color: var(--brand-red);
  transform: translateX(5px);
}
.pkg-icon {
  width: 45px;
  height: 45px;
  background: rgba(108, 2, 14, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-red);
  flex-shrink: 0;
}
.pkg-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* PDF Strip */
.pdf-strip-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.pdf-strip-row {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.pdf-strip-row:hover {
  transform: translateX(10px);
}
.pdf-strip-arrow {
  background: var(--brand-yellow);
  color: var(--brand-red);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 20px;
  z-index: 2;
}
.pdf-strip-content h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--brand-red);
  font-weight: 800;
}
.pdf-strip-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.pdf-circle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}
.pdf-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.pdf-circle-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--brand-red);
  box-shadow: 0 10px 30px rgba(108, 2, 14, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.pdf-circle-item:hover .pdf-circle-icon {
  background: var(--brand-yellow);
  transform: scale(1.1);
  border-color: var(--brand-yellow);
}
.pdf-circle-text {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
}

.pdf-highlight-box {
  background: linear-gradient(
    90deg,
    rgba(255, 189, 89, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-left: 8px solid var(--brand-yellow);
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 20px 20px 0;
  position: relative;
}
.pdf-highlight-box h3 {
  color: var(--brand-red);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Mobile Service Toggle */
.mobile-service-toggle {
  display: none;
}
@media (max-width: 991px) {
  .service-page-layout {
    grid-template-columns: 1fr;
    transition: none;
  }
  .process-grid,
  .outcome-list,
  .why-grid,
  .pkg-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .mobile-service-toggle {
    display: flex;
    width: 100%;
    padding: 15px 25px;
    background: var(--brand-red);
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(108, 2, 14, 0.2);
    transition: background 0.3s;
  }
  .mobile-service-toggle i {
    transition: transform 0.3s;
  }
  .mobile-service-toggle.active i {
    transform: rotate(180deg);
  }

  .service-sidebar {
    display: none;
    animation: slideDown 0.3s ease-out;
  }
  .service-sidebar.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
  }
  .contact-info-card {
    display: none;
  }

  .service-page-layout.layout-expanded {
    grid-template-columns: 1fr;
  }
  .service-page-layout.layout-expanded .service-sidebar {
    display: none;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .pdf-circle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ensure this exists in your CSS media query for mobile */
@media (max-width: 991px) {
    .service-sidebar.active {
        transform: translateX(0); /* Or left: 0; */
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}

/* CTA */
.seo-cta {
  background: linear-gradient(135deg, var(--brand-red), #4a0109);
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 20px 50px rgba(108, 2, 14, 0.3);
}
.seo-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--brand-yellow);
}
.seo-cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.btn-seo-cta {
  background: var(--brand-yellow);
  color: var(--brand-red);
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: 800;
  display: inline-block;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-seo-cta:hover {
  transform: scale(1.05);
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: var(--brand-yellow);
  color: var(--brand-red);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 189, 89, 0.3);
}
.btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 189, 89, 0.4);
  background: #ffc978;
}
.btn-solid i {
  font-size: 0.9rem;
}




/* =========================================
   16. BLOG PAGE STYLES
   ========================================= */

/* --- Blog Hero --- */
.blog-hero {
    padding: 200px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero .hero-subtext-bold {
    margin-top: 4rem;
}

/* --- Blog Filter Bar --- */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid rgba(108, 2, 14, 0.1);
    background: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    box-shadow: 0 10px 20px rgba(108, 2, 14, 0.2);
}

/* --- Blog Grid Layout --- */
.blog-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* --- Blog Card --- */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    
    /* CHANGE THIS LINE: */
    /* Old: transition: all 0.4s ease; */
    /* New: Only transition what changes on hover */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; 
    
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108, 2, 14, 0.15);
    border-color: rgba(108, 2, 14, 0.1);
}

/* Image Area */
.blog-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Content Area */
.blog-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.meta-info {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}
.meta-info i { color: var(--brand-yellow); margin-right: 5px; }

.blog-details h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-details h3 a {
    color: var(--text-dark);
    transition: 0.3s;
}

.blog-card:hover h3 a { color: var(--brand-red); }

.blog-details p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more-link i { transition: transform 0.3s; }
.blog-card:hover .read-more-link i { transform: translateX(5px); }

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    width: 45px; height: 45px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: var(--text-dark);
    font-weight: 700;
    transition: 0.3s;
}

.page-btn:hover, .page-btn.active {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    box-shadow: 0 5px 15px rgba(108, 2, 14, 0.2);
}

.page-dots { font-weight: 700; color: #ccc; margin: 0 5px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-grid-layout { grid-template-columns: 1fr; }
    .blog-hero { padding-top: 150px; }
}


/* =========================================
   17. BLOG DETAILS (SINGLE POST)
   ========================================= */

/* --- Hero Section Fix --- */
.article-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    color: #fff;
    margin-bottom: 50px;
    
    /* ADD THIS: Dark background so white text is always visible */
    background-color: #222; 
}

.article-hero-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.article-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Gradient to make text readable */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.article-title {
    font-size: 3.5rem;
    font-family: var(--font-primary);
    line-height: 1.1;
    margin: 20px 0;
    color: #fff;
}

.article-meta {
    display: flex; gap: 20px;
    font-size: 1rem; opacity: 0.8;
}

/* --- Content Layout --- */
.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Content 2/3, Sidebar 1/3 */
    gap: 60px;
    align-items: start;
}

/* --- Rich Text Styling (The actual blog text) --- */
.rich-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.rich-text h3 {
    font-size: 1.8rem;
    font-family: var(--font-primary);
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.rich-text blockquote {
    border-left: 5px solid var(--brand-yellow);
    padding-left: 20px;
    margin: 30px 0;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.rich-text .intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
}

/* --- Sidebar --- */
.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(108,2,14,0.1);
    padding-bottom: 10px;
}

.share-buttons a {
    display: inline-flex;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    justify-content: center; align-items: center;
    margin-right: 10px;
    transition: 0.3s;
}
.share-buttons a:hover {
    background: var(--brand-red); color: #fff;
}

.bg-glass {
    background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(108,2,14,0.1);
    text-align: center;
}

.btn-sidebar-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-title { font-size: 2.5rem; }
    .article-hero { height: 50vh; }
}