/* ============================================
   CSS Variables for Better Maintainability
   ============================================ */
:root {
  --color-primary: #D54166;
  --color-primary-alt: #ED3D5C;
  --color-secondary: #375AA8;
  --color-accent: #D64065;
  --color-dark: #000;
  --color-dark-alt: #111;
  --color-light: #f5f5f5;
  --color-light-alt: #f3f0f0;
  --color-bg-logos: #F1F2EE;
  --color-text: #000;
  --color-text-light: #666;
  --color-text-lighter: #777;
  --color-white: #fff;
  --color-gray: #ccc;
  --color-gray-light: #aaa;
  --color-gray-border: #eee;
  --spacing-xs: 6px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-2xl: 40px;
  --spacing-3xl: 60px;
  --spacing-4xl: 80px;
  --font-family: Arial, Helvetica, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 26px;
  --font-size-3xl: 42px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --line-height-base: 1.6;
  --line-height-tight: 1.1;
  --transition-fast: 0.3s ease;
  --transition-base: 0.4s ease;
  --transition-slow: 0.8s ease;
  --ease-smooth: cubic-bezier(.19,1,.22,1);
  --sidebar-width: 80px;
  --border-radius-sm: 12px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 999px;
  --shadow-sm: 0 6px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 20px 60px rgba(0,0,0,0.08);
  --z-sidebar: 1000;
  --z-nav: 900;
  --z-mobile-header: 2000;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

.page-id-13 .site-header, .page-id-13 .site-footer{
    display: none!important;
}

html {
  scroll-behavior: smooth;
  /* Prevent horizontal overflow but allow vertical for GSAP scroll */
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  overflow-x: hidden;
  /* Hide scrollbar to prevent blinking line */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== ACCESSIBILITY ========== */
/* Skip link styles (already in critical CSS, but ensure it's here too) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Prevent focus outline on sections to avoid blinking line */
section:focus,
section:focus-visible,
section:hover {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Prevent any pseudo-elements on panels */
.panel::before,
.panel::after {
  display: none !important;
  content: none !important;
}

/* Prevent visual artifacts during GSAP transforms */
.panel[style*="transform"],
.container[style*="transform"],
.wrapper[style*="transform"] {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Ensure no scrollbars appear on scrollable elements during animation */
#custom-horizontal-home,
#custom-horizontal-home * {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#custom-horizontal-home::-webkit-scrollbar,
#custom-horizontal-home *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* HERO GIF CENTER */
a{
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  text-decoration: underline;
}
.hero-logo {
  background: var(--color-dark);
  display: flex;
  align-items: center;     
  justify-content: center;
  padding-bottom: 0px!important;
}
.hero-gif {
  width: 1200px;       
  max-width: 70vw;
  height: auto;
}
/* Mobile */
@media (max-width: 768px) {
  .hero-gif {
    width: 400px;
    max-width: 85vw;
  }
}
/* ========== SIDEBAR ========== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--color-white);
  z-index: var(--z-sidebar);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-4xl) 0 var(--spacing-lg);
}
.logo {
  writing-mode: vertical-rl;
  transform: rotate(-90deg);
  font-weight: bold;
  letter-spacing: 3px;
}
.logo img {
  width: 150px;    
  height: auto;
  display: block;
}
/* ========== MENU TOGGLE ========== */
.menu-toggle,
.mobile-menu-toggle {
  cursor: pointer;
  background: none !important;
  border: none;
  padding: var(--spacing-xs);
  transition: var(--transition-fast);
}

.menu-toggle:focus-visible,
.mobile-menu-toggle:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.menu-toggle span,
.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-dark);
  margin: 6px 0;
  transition: var(--transition-base);
  will-change: transform;
}
.social {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.social a {
  width: 20px;
  height: 20px;
  display: block;
}
.social svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: black;
  stroke-width: 1.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social a:hover svg {
  transform: translateY(-3px);
  opacity: 0.6;
}
/* ========== NAV OVERLAY ========== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);        
  width: calc(100% - var(--sidebar-width));
  height: 100vh;
  background: var(--color-dark);
  color: var(--color-white);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.1);
  will-change: transform;
}

.nav-overlay ul {
  list-style: none;
  text-align: center;
}

.nav-overlay li {
  margin: var(--spacing-lg) 0;
}

.nav-overlay a {
  color: var(--color-white);
  font-size: 2.5rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.nav-overlay a:hover,
.nav-overlay a:focus-visible {
  color: var(--color-primary);
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}
/* ========== HORIZONTAL SCROLL ========== */
.wrapper {
  height: 100vh;
  width: 100%;
  overflow: hidden !important;
  /* Hide scrollbar to prevent blinking line */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* Prevent any border or visual artifacts */
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  /* Force GPU acceleration to prevent visual artifacts during GSAP transforms */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Prevent any visual artifacts during pinning */
  position: relative;
}

.wrapper::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
  width: 0 !important;
  height: 0 !important;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
  padding-left: var(--sidebar-width);
  will-change: transform;
  /* Prevent any border or outline */
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Prevent overflow */
  overflow: hidden;
  /* Force GPU acceleration to prevent visual artifacts */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.container::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.panel {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5vw;
  /* Prevent any border or outline */
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  /* Ensure no scrollbar appears */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.panel::-webkit-scrollbar {
  display: none;
}

.hero {
  background: var(--color-dark);
  color: var(--color-white);
}

.dark {
  background: var(--color-dark-alt);
  color: var(--color-white);
}

.logos-slide {
  background: var(--color-bg-logos);
  color: var(--color-text);
}

.light {
  background: var(--color-light);
  color: var(--color-text);
}

.how-panel {
  background: var(--color-light-alt);
  color: var(--color-text);
}
.strategy-panel {
  display: flex;
  align-items: center;      
  justify-content: center;  
  text-align: center;
  padding: 0 120px;
  /* Prevent any outline, border, or box-shadow from appearing */
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  /* Prevent overflow that could cause visual artifacts */
  overflow: hidden;
  /* Ensure no pseudo-elements */
  position: relative;
}

.strategy-panel::before,
.strategy-panel::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
} 
.strategy-content {
  max-width: 900px;
}
/* Section Label (replaces h1 for SEO) */
.strategy-content .section-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 25px;
}

/* H1 (main headline) */
.strategy-content h1.headline {
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: var(--line-height-tight);
  margin-bottom: 30px;
  color: var(--color-text);
}

.strategy-content h1.headline span {
  color: var(--color-primary);
}
/* Paragraph */
.strategy-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  max-width: 720px;
  margin: 0 auto; 
}
/* ========== STRATEGY ANIMATIONS ========== */
/* Base hidden state */
.strategy-content .section-label,
.strategy-content h1.headline,
.strategy-content p {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* Pink text emphasis */
.strategy-content h1.headline span {
  display: inline-block;
  transform: translateY(20px) scale(0.95);
  will-change: transform;
}

/* Active animation */
.strategy-panel.animate .section-label {
  animation: fadeUp 0.8s ease-out forwards;
}

.strategy-panel.animate h1.headline {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.strategy-panel.animate h1.headline span {
  animation: highlightPop 0.8s var(--ease-smooth) forwards;
  animation-delay: 0.6s;
}

.strategy-panel.animate p {
  animation: fadeUp 0.9s ease-out forwards;
  animation-delay: 0.9s;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightPop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Container */
.how-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px; /* Reduced padding for smaller screens */
  flex-direction: column;
}
.how-wrapper {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}
/* Title */
.how-title {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #111;
}
.how-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}
/* Steps layout */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
  gap: 40px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
/* Horizontal line */
.steps::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #e497a5;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
}
/* Step number */
.step-num {
  font-size: 48px;
  color: #D54166;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
/* Icon */
.icon {
  width: 60px;
  height: 60px;
  background: #ece8e8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 30px;
}
/* Step title */
.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}
/* Step text */
.step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .how-title {
    font-size: 2.5rem;
  }
  .how-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .steps::before {
    top: none!important; /* Adjust line position for stacked steps */
  }
    .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  }
  .step-num {
      font-size: 28px;
      margin: 0;
  }
  .icon {
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 12px;
  }
    .step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .how-title {
    font-size: 2rem;
  }
  .how-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .step-num {
    font-size: 36px;
  }
  .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .step h3 {
    font-size: 18px;
  }
  .step p {
    font-size: 14px;
  }
}

/* MOBILE FIX */
.mobile-header {
  display: none;
}
/* MOBILE VIEW */
@media (max-width: 991px) {
  body {
    overflow-x: hidden;
  }
  /* Hide Sidebar */
  .sidebar {
    display: none;
  }
.logo {
    transform: none;
  }
  /* Mobile Header */
  .mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #fff;
    z-index: 2000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
  }
  .mobile-logo {
    font-weight: bold;
    letter-spacing: 2px;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-dark);
    margin: 6px 0;
  }
  /* Overlay full width */
  .nav-overlay {
    left: 0;
    width: 100%;
  }
  /* ❌ Disable Horizontal Scroll */
  .wrapper {
    height: auto;
    overflow: visible;
  }
  .container {
    flex-direction: column;
    height: auto;
    padding-left: 0;
    transform: none !important;
  }
  .panel {
    min-width: 100%;
    height: auto;
    min-height: 50vh;
    padding: 120px 20px 80px;
  }
  /* Hide socials */
  .social {
    display: none;
  }
}


/*  CLIENTS PANEL*/
.clients-panel {
  display: flex;
  align-items: center;
}
.clients-inner {
  display: grid;
  grid-template-columns: 35% 65%;
  width: 100%;
  height: 100%;
}
.clients-left {
  padding: 80px;
  border-right: 1px solid #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.clients-left h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  margin-bottom: 30px;
}
.clients-left p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}
.clients-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
  overflow: hidden;
  padding: 0 0px;
}
.logo-row {
  width: 100%;
  overflow: hidden;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.logo-track img {
  height: 48px;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all var(--transition-base);
  will-change: filter, opacity, transform;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .clients-inner {
    grid-template-columns: 1fr;
  }
  .clients-left {
    border-right: none;
    padding: 0px 0px 40px;
  }
  .clients-right {
    gap: 20px;
    padding-bottom: 10px;
  }
  .logo-track img {
    height: 42px;
  }
}
/* CONTACT / LAST SLIDE*/
.contact-panel {
  background: var(--color-dark);
  color: var(--color-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  height: 100%;
}
.contact-left {
  padding: 80px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}
.contact-info h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 25px;
  font-size: 24px;
}
.contact-info p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 30px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #aaa;
}
.contact-info strong {
  color: #fff;
}
/* MAP */
.contact-map {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
}
.contact-map img {
  width: 100%;
  height: auto;
  display: block;
}
/* RIGHT IMAGE */
.contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.contact-right img {
  width: 100%;
  max-width: 520px;
  height: auto;
}
/* RESPONSIVE */

@media (max-width: 991px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 60px 30px;
  }
  .contact-right {
    padding: 40px 20px 80px;
  }
  .contact-info h2 {
    font-size: 2.4rem;
  }
}
/* CONTACT MAP (LEFT BOTTOM) */
.contact-map {
  margin-top: 0px;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;           
  background: #111;
  margin-top: 40px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.1);
}
@media (max-width: 768px) {
  .contact-map {
    height: 200px;
  }
  .panel {
    padding: 40px 20px 40px;
  }
  .contact-left {
    padding: 40px 0px;
  }
  .contact-right{
    padding: 0px;
  }
}
/* ACHIEVEMENTS & RESULTS */
.achievements-panel {
  display: flex;
  align-items: center;
}
/* BALANCED LAYOUT */
.achievements-inner {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  height: 100%;
  padding: 0 64px;   /* ✅ equal left/right spacing */
  gap: 56px;
}
/* TITLES */
.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 22px;
}
/* ACHIEVEMENTS */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ach-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transform: translateY(20px);
  will-change: transform, opacity;
  opacity: 0;
}
.ach-card strong {
  font-size: 26px;
  line-height: 1;
}
.ach-card span {
  font-size: 18px;
}
.ach-card p {
  margin-top: 6px;   
  font-size: 12px;
  color: #666;
}
/* CTA BUTTON */
.case-study-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--spacing-sm) 34px;
  border-radius: var(--border-radius-full);
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%) !important;
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff !important;
  border: none !important;
  font-size: 15px;
  text-decoration: none;
  transition: background-position var(--transition-base), transform var(--transition-fast);
  will-change: background-position, transform;
}

.case-study-btn:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

.case-study-btn span {
  transition: transform var(--transition-fast);
  will-change: transform;
}

.case-study-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%) !important;
}

.case-study-btn:hover span {
  transform: translateX(4px);
}
/* RESULTS */
.results-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.result-card {
  background: var(--color-white);
  padding: var(--spacing-xl) 22px;
  border-radius: var(--border-radius-md);
  border: 1.2px solid;
  font-size: var(--font-size-sm);
  opacity: 0;
  transform: translateY(22px);
  will-change: transform, opacity;
}
.result-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.result-text p {
  margin: 4px 0;
  line-height: 1.45;
}
/* RESULTS */
/* LOGO */
.result-card img {
  width: 60px;
  opacity: 0.9;
}
.achievements-right{
  padding-right: 64px;
}
/* COLORS */
.orange { border-color:#ffb37b; color:#d85b00; }
.purple { border-color:#c4b5ff; color:#5b46c4; }
.green  { border-color:#9ad9b2; color:#1c7c4b; }

/* MOBILE */
@media (max-width: 991px) {
  .achievements-inner {
    grid-template-columns: 1fr;
    padding: 10px 24px;
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .achievements-right{
  padding-right: 0px;
}
.achievements-inner{
  padding: 0px;
}
}

/* ==========================
   AI CALCULATOR SLIDE
========================== */

.ai-calculator-panel {
  display: flex;
  align-items: center;
}

.ai-calculator-wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  padding: 0 120px;
  gap: 60px;
}

/* LEFT */
.ai-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f4eeef;
  color: #D54166;
  font-size: 13px;
  margin-bottom: 20px;
  width: fit-content;
}

.ai-title {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.ai-title span {
  color: #D54166;
}

.ai-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.ai-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.ai-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.ai-btn.primary {
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%) !important;
  color: #fff;
  will-change: transform, background;
}

.ai-btn.primary:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

.ai-btn.primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%) !important;
}

.ai-btn.secondary {
  border: 1.5px solid var(--color-dark);
  color: var(--color-dark);
}

.ai-btn.secondary:focus-visible {
  outline: 3px solid var(--color-dark);
  outline-offset: 2px;
}

.ai-btn.secondary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.ai-points {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
}

/* RIGHT CARD */
.ai-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.ai-card-label {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.ai-budget {
  font-size: 42px;
  color: #D54166;
  margin-bottom: 30px;
}

.ai-stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f2f6ff;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 991px) {
  .ai-calculator-wrapper {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .ai-right {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
.ai-title, .clients-left h2  {
  font-size: clamp(2rem, 4.5vw, 4.5rem);}
  .ai-btn {
  padding: 14px 10px!important;
  font-size: 14px;
}
 .ai-calculator-wrapper{
  padding: 0 0px;
 }
 .ai-points {
        padding-left: 20px;
    }
  .ai-calculator-panel{
    padding-block: 40px;
  }
}

/* ==========================
   ABOUT SECTION STYLES
========================== */

/* ==========================
   ABOUT PAGE ALTERNATIVE COLORS
========================== */
.about-slide-1 {
  background: var(--color-light);
  color: var(--color-text);
}

.about-slide-2 {
  background: #f8f9fa;
  color: var(--color-text);
}

.about-slide-3 {
  background: var(--color-white);
  color: var(--color-text);
}

.about-slide-4 {
  background: #f5f7fa;
  color: var(--color-text);
}

.about-slide-5 {
  background: var(--color-light-alt);
  color: var(--color-text);
}

.about-slide-6 {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ABOUT CONTACT PANEL */
.about-contact-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-contact-panel .contact-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.about-contact-panel .contact-left {
  padding: 80px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.about-contact-panel .contact-info h2 {
  font-size: clamp(2.5rem, 5vw, 2.5rem);
  margin-bottom: 25px;
  color: var(--color-white);
}

.about-contact-panel .contact-info p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 30px;
}

.about-contact-panel .contact-info ul {
  list-style: none;
  padding: 0;
}

.about-contact-panel .contact-info li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #aaa;
}

.about-contact-panel .contact-info strong {
  color: #fff;
}

.about-contact-panel .contact-info a {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-base);
}

.about-contact-panel .contact-info a:hover {
  color: var(--color-primary);
}

.about-contact-panel .contact-map {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  background: #111;
}

.about-contact-panel .contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.about-contact-panel .contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.about-contact-panel .contact-right img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ABOUT HERO PANEL */
.about-hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 80px;
}

.about-hero-content {
  max-width: 1000px;
  width: 100%;
}

.about-hero-content .section-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: 30px;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(30px);
}

.about-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 720px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
}

.about-btn {
  padding: 14px 32px;
  border-radius: var(--border-radius-full);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-block;
}

.about-btn.primary {
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%);
  color: #fff;
  border: none;
}

.about-btn.primary:hover {
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-btn.secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.about-btn.secondary:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.about-hero-image {
  margin-top: 40px;
  opacity: 0;
  transform: scale(0.95);
}

.about-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
}

/* ABOUT STORY PANEL */
.about-story-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  overflow: hidden;
}

.about-story-content {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-story-header {
  text-align: center;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.about-story-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-story-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Story Images Grid */
.story-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1600px;
 
}

.story-image-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.story-image-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.story-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: visible;
  position: relative;
  background: var(--color-light);
  display: flex;
  align-items: flex-end;
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.story-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.story-image-card:hover .story-image-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}

.story-image-card:hover .story-image-wrapper img {
  transform: scale(1.05);
}

.story-image-content-overlay {
  position: relative;
  z-index: 3;
  padding: 15px 30px;
  color: var(--color-white);
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  
}

.story-image-content-overlay h3 {
  font-size: 26px;
  color: var(--color-white);
  margin-bottom: 18px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.story-image-content-overlay p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  display: block;
  width: 100%;
}

.story-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  max-width: 100%;
  box-sizing: border-box;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.story-card h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.story-card h4 {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 600;
}

.story-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

/* ABOUT TEAM PANEL */
.about-team-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px;
  overflow: hidden;
}

.about-team-content {
  max-width: 1600px;
  width: 100%;
}

.about-team-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-team-header h2 {
  font-size: clamp(2.5rem, 5vw, 2rem);
  line-height: var(--line-height-tight);
  margin-bottom: 25px;
  color: var(--color-text);
}

.about-team-header p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 900px;
  margin: 0 auto;
}

.team-slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.team-slider-wrapper {
  overflow: hidden;
  width: calc(100% - 120px);
  max-width: 1250px; /* Enough for 5 members: 5 * 220px + 4 * 30px = 1220px */
  margin: 0 auto;
  position: relative;
}

.team-slider-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.3s ease;
  width: max-content; /* Ensure track takes full width of all members */
}

.team-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  color: var(--color-primary);
}

.team-nav-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

.team-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.team-nav-btn svg {
  width: 24px;
  height: 24px;
}

.team-nav-prev {
  left: 0;
}

.team-nav-next {
  right: 0;
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.team-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.team-dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: 6px;
}

.team-member {
  flex-shrink: 0;
  width: 220px;
  min-width: 220px; /* Ensure consistent width */
  max-width: 220px; /* Prevent any expansion */
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  box-sizing: border-box;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.team-member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.team-member:hover .team-member-image img {
  transform: scale(1.1);
}

.team-member-info h3 {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 8px;
  font-weight: 600;
}

.team-designation {
  font-size: 14px;
  color: var(--color-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ABOUT VALUES PANEL */
.about-values-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}

.about-values-content {
  max-width: 1400px;
  width: 100%;
}

.about-values-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-values-header h2 {
  font-size: clamp(2.5rem, 5vw, 2rem);
  line-height: var(--line-height-tight);
  margin-bottom: 25px;
  color: var(--color-text);
}

.about-values-header p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 900px;
  margin: 0 auto;
}

/* Values Slider */
.values-slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.values-slider-wrapper {
  overflow: hidden;
  width: calc(100% - 120px);
  max-width: 1500px; /* Enough for 5 cards: 5 * 280px + 4 * 20px = 1480px */
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.values-slider-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.3s ease;
  width: max-content; /* Ensure track takes full width of all cards */
}

.values-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  color: var(--color-primary);
}

.values-nav-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

.values-nav-btn svg {
  width: 24px;
  height: 24px;
}

.values-nav-prev {
  left: 0;
}

.values-nav-next {
  right: 0;
}

.values-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.value-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.value-dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: 6px;
}

.value-card {
  background: var(--color-white);
  padding: 25px 18px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  flex-shrink: 0;
  width: 280px;
  min-width: 280px; /* Ensure consistent width */
  max-width: 280px; /* Prevent any expansion */
  box-sizing: border-box;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

/* ABOUT REVIEWS PANEL */
.about-reviews-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 20px;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-y: auto;
}

.about-reviews-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.about-reviews-header {
  text-align: center;
  margin-bottom: 40px;
  flex-shrink: 0;
}

.about-reviews-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-text);
}

.reviews-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto 25px;
}

.reviews-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
}

.reviews-placeholder {
  text-align: center;
  padding: 30px 25px;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-note {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.reviews-note code {
  background: var(--color-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 11px;
  color: var(--color-text);
}

.reviews-shortcode-area {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
  .about-hero-panel,
  .about-story-panel,
  .about-values-panel,
  .about-reviews-panel {
    padding: 50px 30px;
  }

  .about-contact-panel {
    padding: 0;
  }

  .about-contact-panel .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-contact-panel .contact-left {
    padding: 60px 30px;
  }

  .about-contact-panel .contact-right {
    padding: 40px 20px 80px;
  }

  .about-contact-panel .contact-info h2 {
    font-size: 2.4rem;
  }

  .about-contact-panel .contact-map {
    height: 200px;
  }

  .about-reviews-header {
    margin-bottom: 35px;
  }

  .about-reviews-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
  }

  .reviews-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .reviews-rating {
    margin-bottom: 30px;
  }

  .reviews-container {
    min-height: 300px;
  }

  .reviews-placeholder {
    padding: 30px 25px;
  }

  .reviews-shortcode-area {
    min-height: 200px;
  }

  .about-team-panel {
    padding: 60px 20px;
  }

  .story-images-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .values-slider-wrapper {
    width: calc(100% - 100px);
    margin: 0 auto;
  }

  .values-nav-btn {
    width: 45px;
    height: 45px;
  }

  .value-card {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
  }

  .team-member {
    width: 240px;
  }

  .team-slider-wrapper {
    width: calc(100% - 100px);
    margin: 0 auto;
  }

  .team-nav-btn {
    width: 45px;
    height: 45px;
  }

  .team-member {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .about-hero-panel,
  .about-story-panel,
  .about-values-panel,
  .about-reviews-panel {
    padding: 40px 20px;
    min-height: 100vh;
    overflow-y: auto;
  }

  .about-contact-panel {
    padding: 0;
    min-height: 100vh;
  }

  .about-contact-panel .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-contact-panel .contact-left {
    padding: 50px 20px;
  }

  .about-contact-panel .contact-right {
    padding: 30px 20px 60px;
  }

  .about-contact-panel .contact-info h2 {
    font-size: 2rem;
  }

  .about-contact-panel .contact-map {
    height: 180px;
    margin-top: 30px;
  }

  .about-reviews-header {
    margin-bottom: 30px;
  }

  .about-reviews-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 15px;
  }

  .reviews-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .reviews-rating {
    margin-bottom: 25px;
  }

  .reviews-rating strong {
    font-size: 20px;
  }

  .reviews-rating span {
    font-size: 14px;
  }

  .reviews-container {
    min-height: auto;
  }

  .reviews-placeholder {
    padding: 25px 20px;
  }

  .reviews-note {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .reviews-shortcode-area {
    min-height: 150px;
  }

  .about-story-panel {
    padding: 40px 20px;
  }

  .story-images-grid {
    gap: 20px;
    padding: 15px 10px;
  }

  .story-image-card {
    height: 300px;
    min-height: 300px;
  }

  .story-image-wrapper {
    min-height: 420px;
    align-items: start;
  }

  .story-image-content-overlay {
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 50%, transparent 100%);
  }

  .story-image-content-overlay h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .story-image-content-overlay p {
    font-size: 14px;
    line-height: 1.7;
  }

  .story-image-wrapper {
    min-height: 400px;
  }

  .story-image-content-overlay {
    padding: 20px 25px 140px;
  }
  .about-wrapper .panel{
    padding: 40px 20px 60px !important;
  }

  .story-image-content-overlay h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .story-image-content-overlay p {
    font-size: 15px;
    line-height: 1.7;
  }

  .values-slider-wrapper {
    margin: 0 40px;
  }

  .values-nav-btn {
    width: 40px;
    height: 40px;
  }

  .values-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-btn {
    width: 100%;
    text-align: center;
  }

  .value-card {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
  }

  .team-member {
    width: 200px;
  }

  .team-member-image {
    width: 150px;
    height: 150px;
  }

  .team-slider-wrapper {
    width: calc(100% - 80px);
    margin: 0 auto;
  }

  .team-nav-btn {
    width: 40px;
    height: 40px;
  }

  .team-member {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
  }

  .team-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .about-story-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .about-story-header p {
    font-size: 15px;
  }

  .story-card {
    padding: 25px;
  }

  .story-card h3 {
    font-size: 20px;
  }

  .story-card h4 {
    font-size: 16px;
  }

  .story-card p {
    font-size: 14px;
  }
}

/* Tablet specific */
@media (min-width: 768px) and (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .team-member {
    width: 220px;
  }
}

/* ANIMATIONS FOR ABOUT SLIDES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations when panels come into view */
.about-hero-panel .section-label,
.about-hero-panel h1,
.about-hero-panel .about-hero-description,
.about-hero-panel .about-hero-actions,
.about-hero-panel .about-hero-image {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-hero-panel h1 {
  animation-delay: 0.2s;
}

.about-hero-panel .about-hero-description {
  animation-delay: 0.4s;
}

.about-hero-panel .about-hero-actions {
  animation-delay: 0.6s;
}

.about-hero-panel .about-hero-image {
  animation-delay: 0.8s;
}

.story-image-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s forwards; }
.story-image-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s forwards; }
.story-image-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s forwards; }
.story-image-card:nth-child(4) { animation: fadeInUp 0.8s ease-out 0.4s forwards; }

.value-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s forwards; }
.value-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s forwards; }
.value-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s forwards; }
.value-card:nth-child(4) { animation: fadeInUp 0.8s ease-out 0.4s forwards; }
.value-card:nth-child(5) { animation: fadeInUp 0.8s ease-out 0.5s forwards; }
.value-card:nth-child(6) { animation: fadeInUp 0.8s ease-out 0.6s forwards; }
.value-card:nth-child(7) { animation: fadeInUp 0.8s ease-out 0.7s forwards; }
.value-card:nth-child(8) { animation: fadeInUp 0.8s ease-out 0.8s forwards; }

/* ==========================
   SEPARATE ABOUT PAGE STYLES
========================== */
.about-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--color-light);
  overflow: hidden;
}

.about-wrapper {
  height: 100vh;
  width: 100%;
  overflow: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}

.about-wrapper::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.about-container {
  display: flex;
  height: 100vh;
  width: 100%;
  padding-left: var(--sidebar-width);
  will-change: transform;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.about-container::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Ensure About page panels have same styling as home panels */
.about-wrapper .panel {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-wrapper .panel::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991px) {
  .about-page-wrapper {
    position: relative;
    min-height: 100vh;
  }

  .about-wrapper {
    height: auto;
    overflow-y: visible !important;
    overflow-x: hidden !important;
  }

  .about-container {
    flex-direction: column;
    height: auto;
    padding-left: 0;
    transform: none !important;
    overflow-y: visible;
  }
  
  .about-wrapper .panel {
    min-width: 100%;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
    position: relative;
    transform: none !important;
  }
}

/* ==========================
   SERVICES PAGE STYLES
========================== */
.services-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--color-light);
  overflow: hidden;
}

.services-wrapper {
  height: 100vh;
  width: 100%;
  overflow: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}

.services-wrapper::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.services-container {
  display: flex;
  height: 100vh;
  width: 100%;
  padding-left: var(--sidebar-width);
  will-change: transform;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.services-container::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Ensure Services page panels have same styling as home panels */
.services-wrapper .panel {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-wrapper .panel::-webkit-scrollbar {
  display: none;
}

/* SERVICES SLIDE COLORS */
.services-slide-1 { background-color: var(--color-light); } /* Hero */
.services-slide-2 { background-color: #f8f9fa; } /* Services List */
.services-slide-3 { background-color: var(--color-white); } /* CTA */
.services-slide-4 { background-color: var(--color-dark); color: var(--color-white); } /* Contact */

/* SERVICES HERO PANEL */
.services-hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 80px;
}

.services-hero-content {
  max-width: 1000px;
  width: 100%;
}

.services-hero-content .section-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.services-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: 30px;
  color: var(--color-text);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.services-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.services-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.services-btn {
  padding: 14px 32px;
  border-radius: var(--border-radius-full);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-block;
}

.services-btn.primary {
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%);
  color: #fff;
  border: none;
}

.services-btn.primary:hover {
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.services-btn.secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.services-btn.secondary:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* SERVICES LIST PANEL */
.services-list-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.services-list-content {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.services-list-header {
  text-align: center;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.services-list-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--color-text);
}

.services-list-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  overflow: hidden;
  align-content: start;
  /* max-height: calc(100vh - 20px); */
  padding: 0 10px;
  box-sizing: border-box;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
  flex-shrink: 0;
}

.service-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* SERVICES CTA PANEL */
.services-cta-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  text-align: center;
}

.services-cta-content {
  max-width: 900px;
  width: 100%;
}

.cta-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.services-cta-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: 25px;
  color: var(--color-text);
}

.services-cta-header p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.services-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.cta-btn.primary {
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%) !important;
  color: #fff;
  will-change: transform, background;
}

.cta-btn.primary:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%) !important;
}

.cta-btn.secondary {
  border: 1.5px solid var(--color-dark);
  color: var(--color-dark);
}

.cta-btn.secondary:focus-visible {
  outline: 3px solid var(--color-dark);
  outline-offset: 2px;
}

.cta-btn.secondary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-points li {
  font-size: 15px;
  color: var(--color-text-light);
  position: relative;
  padding-left: 20px;
}

.cta-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* SERVICES CONTACT PANEL */
.services-contact-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.services-contact-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-contact-content .contact-info h2 {
  font-size: clamp(2.5rem, 5vw, 2rem);
  line-height: var(--line-height-tight);
  margin-bottom: 20px;
  color: var(--color-white);
}

.services-contact-content .contact-info p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.services-contact-content address ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-contact-content address li {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.services-contact-content address a {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-base);
}

.services-contact-content address a:hover {
  color: var(--color-primary);
}

.services-contact-content .contact-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}

.services-contact-content .contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE STYLES FOR SERVICES PAGE */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .service-card {
    padding: 22px 18px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 12.5px;
  }
}

@media (max-width: 991px) {
  .services-page-wrapper {
    position: relative;
    min-height: 100vh;
  }

  .services-wrapper {
    height: auto;
    overflow-y: visible !important;
    overflow-x: hidden !important;
  }

  .services-container {
    flex-direction: column;
    height: auto;
    padding-left: 0;
    transform: none !important;
    overflow-y: visible;
  }
  
  .services-wrapper .panel {
    min-width: 100%;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 80px 30px;
    position: relative;
    transform: none !important;
  }

  .services-hero-panel {
    padding: 60px 30px;
  }

  .services-list-panel {
    padding: 50px 30px;
  }

  .services-list-header {
    margin-bottom: 30px;
  }

  .services-list-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
  }

  .services-list-header p {
    font-size: 15px;
  }

  .services-list-panel {
    padding: 50px 30px;
    overflow-y: auto;
  }

  .services-list-content {
    max-height: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .service-card {
    padding: 22px 18px;
    height: auto;
    min-height: 200px;
  }

  .service-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 12px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .services-cta-panel {
    padding: 60px 30px;
  }

  .services-contact-panel {
    padding: 60px 30px;
  }

  .services-contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-contact-content .contact-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .services-hero-panel,
  .services-list-panel,
  .services-cta-panel,
  .services-contact-panel {
    padding: 40px 20px;
  }

  .services-hero-content h1,
  .services-list-header h2,
  .services-cta-header h2,
  .services-contact-content .contact-info h2 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .services-list-panel {
    padding: 40px 20px;
    overflow-y: auto;
  }

  .services-list-header {
    margin-bottom: 25px;
  }

  .services-list-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 10px;
  }

  .services-list-header p {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px;
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .service-card {
    padding: 20px 15px;
    height: auto;
    min-height: 180px;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .service-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .services-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .cta-points {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* ANIMATIONS FOR SERVICES SLIDES */
.service-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s forwards; }
.service-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s forwards; }
.service-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s forwards; }
.service-card:nth-child(4) { animation: fadeInUp 0.8s ease-out 0.4s forwards; }
.service-card:nth-child(5) { animation: fadeInUp 0.8s ease-out 0.5s forwards; }
.service-card:nth-child(6) { animation: fadeInUp 0.8s ease-out 0.6s forwards; }
.service-card:nth-child(7) { animation: fadeInUp 0.8s ease-out 0.7s forwards; }
.service-card:nth-child(8) { animation: fadeInUp 0.8s ease-out 0.8s forwards; }
.service-card:nth-child(9) { animation: fadeInUp 0.8s ease-out 0.9s forwards; }
.service-card:nth-child(10) { animation: fadeInUp 0.8s ease-out 1.0s forwards; }

/* Extra small screens */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 18px 15px;
    min-height: auto;
  }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

/* =======================
   BLOG PAGE STYLES
======================= */

.blog-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--color-light);
}

.blog-wrapper {
  height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
}

.blog-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  padding-left: 0;
}

/* BLOG SLIDE BACKGROUNDS */
.blog-slide-1 {
  background: var(--color-light);
  color: var(--color-text);
}

.blog-slide-2 {
  background: var(--color-light-alt);
  color: var(--color-text);
}

.blog-slide-3 {
  background: var(--color-light);
  color: var(--color-text);
}

/* BLOG SLIDE 1 - INTRO + FEATURED + 4 POSTS */
.blog-slide-1-content,
.blog-slide-2-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 50px 50px 10px;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  justify-content: flex-start;
}

.blog-intro {
  text-align: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.blog-intro h1 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: var(--line-height-tight);
  margin-bottom: 10px;
  color: var(--color-text);
  font-weight: 600;
}

.blog-intro-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* FEATURED POST */
.blog-featured {
  margin-bottom: 40px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-featured-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-text);
}

.blog-featured-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 25px;
}

/* BLOG GRID - Applied to both slide-1 and slide-2 */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-auto-rows: 1fr; */
  gap: 15px;
  margin-bottom: 0;
  flex: 1;
  overflow: hidden;
  align-content: start;
  padding: 0 5px;
  box-sizing: border-box;
  min-height: 0;
}

/* BLOG CARD - Same size for both slides (slide-1 and slide-2) */
.blog-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Card Image - Fixed size: 140px (same for both slides) */
.blog-card-image {
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  margin: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Content - Fixed padding: 15px (same for both slides) */
.blog-card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  justify-content: space-between;
}

.blog-card-content h3 {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--color-text);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.blog-card-content h3 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-base);
}

.blog-card-content h3 a:hover {
  color: var(--color-primary);
}

.blog-card-content p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 8px;
  flex: 0 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

.blog-no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-light);
}

.blog-card-image a {
  display: block;
  width: 100%;
  /* height: 100%; */
}

.blog-read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition-base);
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: 0;
}

.blog-read-more-btn:hover {
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff!important;
}

/* LOAD MORE BUTTON */
.blog-load-more-wrapper {
  text-align: center;
  margin-top: auto;
  padding-top: 30px;
}

.blog-load-more-btn {
  padding: 14px 32px;
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius-full);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.blog-load-more-btn:hover {
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* VIEW ALL BUTTON */
.blog-view-all-wrapper {
  text-align: center;
}

.blog-view-all-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(80deg, #ED3D5C 0%, #375AA8 100%);
  color: var(--color-white)!important;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
  margin-bottom: 50px;
}

.blog-view-all-btn:hover {
  background: linear-gradient(80deg, #375AA8 0%, #ED3D5C 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
   color: var(--color-white)!important;
}

/* BLOG SLIDE 2 & 3 - Now uses same styles as slide 1 above */

/* RESPONSIVE STYLES FOR BLOG PAGE */
@media (max-width: 1400px) {
  .blog-slide-1-content,
  .blog-slide-2-content {
    padding: 15px 40px;
  }

  .blog-intro {
    margin-bottom: 15px;
  }

  .blog-grid {
    gap: 12px;
  }

  .blog-card-image {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
  }

  .blog-card-content {
    padding: 12px;
  }

  .blog-card-content h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .blog-card-content p {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .blog-read-more-btn {
    padding: 7px 14px;
    font-size: 11px;
    margin-top: 0;
  }
}

@media (max-width: 1200px) {
  .blog-slide-1-content,
  .blog-slide-2-content {
    padding: 20px 35px;
  }

  .blog-intro {
    margin-bottom: 15px;
  }

  .blog-intro h1 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: 8px;
  }

  .blog-intro-text {
    font-size: 14px;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .blog-card-image {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
  }

  .blog-card-content {
    padding: 12px;
  }

  .blog-card-content h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .blog-card-content p {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .blog-read-more-btn {
    padding: 7px 14px;
    font-size: 11px;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .blog-page-wrapper {
    position: relative;
    min-height: 100vh;
  }

  .blog-wrapper {
    height: auto;
    overflow-y: visible !important;
    overflow-x: hidden !important;
  }

  .blog-container {
    flex-direction: column;
    height: auto;
    padding-left: 0;
    transform: none !important;
    overflow-y: visible;
  }
  
  .blog-wrapper .panel {
    min-width: 100%;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 0;
    position: relative;
    transform: none !important;
  }

  .blog-slide-1-content,
  .blog-slide-2-content {
    padding: 20px 20px;
    overflow: hidden;
  }

  .blog-intro {
    margin-bottom: 15px;
  }

  .blog-intro h1 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 8px;
  }

  .blog-intro-text {
    font-size: 13px;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    min-height: 200px;
  }

  .blog-featured-content {
    padding: 25px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 12px;
    padding: 0;
  }
  
  .blog-card {
    height: 100%;
  }

  .blog-card-image {
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .blog-card-content {
    padding: 12px;
  }

  .blog-card-content h3 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .blog-card-content p {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .blog-read-more-btn {
    padding: 7px 14px;
    font-size: 11px;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .blog-slide-1-content,
  .blog-slide-2-content {
    padding: 20px 20px;
  }

  .blog-intro {
    margin-bottom: 12px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .blog-card-image {
    height: 110px;
    min-height: 110px;
    max-height: 110px;
  }

  .blog-card-content {
    padding: 10px;
  }

  .blog-card-content h3 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .blog-card-content p {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .blog-read-more-btn {
    padding: 6px 12px;
    font-size: 10px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .blog-slide-1-content,
  .blog-slide-2-content {
    padding: 20px 15px;
    overflow: hidden;
  }

  .blog-intro {
    margin-bottom: 12px;
  }

  .blog-intro h1 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .blog-intro-text {
    font-size: 12px;
  }

  .blog-featured {
    margin-bottom: 20px;
  }

  .blog-featured-image {
    min-height: 180px;
  }

  .blog-featured-content {
    padding: 20px;
  }
  
  .blog-featured-content h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .blog-featured-content p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 15px;
    padding: 0;
  }
  
  .blog-card {
    height: auto;
    min-height: auto;
  }

  .blog-card-image {
    height: 150px;
    min-height: 150px;
    max-height: 150px;
  }

  .blog-card-content {
    padding: 15px;
  }

  .blog-card-content h3 {
    font-size: 14px;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .blog-card-content p {
    font-size: 12px;
    margin-bottom: 8px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .blog-read-more-btn {
    padding: 8px 14px;
    font-size: 11px;
    margin-top: 0;
  }
   .blog-intro{
    padding-top: 80px;
   }
  .blog-load-more-btn,
  .blog-view-all-btn {
    padding: 12px 24px;
    font-size: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .blog-slide-1-content,
  .blog-slide-2-content {
    padding: 15px 12px;
    overflow: hidden;
  }

  .blog-intro {
    margin-bottom: 10px;
  }

  .blog-intro h1 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .blog-intro-text {
    font-size: 11px;
  }

  .blog-grid {
    gap: 12px;
  }

  .blog-card-image {
    height: 130px;
    min-height: 130px;
    max-height: 130px;
  }

  .blog-card-content {
    padding: 12px;
  }

  .blog-card-content h3 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .blog-card-content p {
    font-size: 11px;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .blog-read-more-btn {
    padding: 7px 12px;
    font-size: 10px;
    margin-top: 0;
  }
}


