/* company.css */
/* ============================================================
   COMPANY PAGE STYLES - FULLY RESPONSIVE & OPTIMIZED
   Follows same design system as certificates page
   ============================================================ */

:root {
  --primary: #0a2a5c;
  --primary-light: #1a4a8a;
  --primary-dark: #051830;
  --primary-deep: rgba(0, 14, 48, 0.98);
  --accent: #1e7fcc;
  --accent-light: #4aabf0;
  --accent-orange: #f07820;
  --white: #ffffff;
  --light-gray: #f4f6f9;
  --mid-gray: #d0d8e4;
  --dark-gray: #6b7c93;
  --text: #1a2940;
  --text-light: #4a5568;
  --border: #dce4ef;
  --shadow: 0 4px 20px rgba(10, 42, 92, 0.1);
  --shadow-lg: 0 12px 48px rgba(10, 42, 92, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Barlow', sans-serif;
}

/* ========== PAGE HERO (matching certificates) ========== */
.page-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background-color: var(--primary-deep);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(244, 163, 0, 0.12);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 1.5rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-hero-title span {
  color: var(--accent);
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.page-breadcrumb a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.page-breadcrumb a:hover {
  color: var(--accent);
}
.page-breadcrumb .sep {
  font-size: 0.7rem;
}
.se {
  font-weight: 600;
  color: white;
}

/* Wave Divider */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ========== GENERAL SECTION STYLES ========== */
.section {
  padding: 5rem 2rem;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title span {
  color: var(--primary);
}
.section-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}
.bg-light {
  background: var(--off-white);
}
.bg-dark-gradient {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.bg-dark-gradient .section-title {
  color: var(--white);
}
.bg-dark-gradient .section-desc {
  color: rgba(255,255,255,0.7);
}
.bg-dark-gradient .section-tag {
  color: var(--accent);
}

/* ========== TWO COLUMN STORY SECTION ========== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.col-text .section-tag {
  display: inline-block;
}
.col-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.col-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.mini-stat {
  text-align: center;
}
.mini-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
}
.mini-stat span {
  font-size: 0.8rem;
  color: var(--dark-gray);
  font-weight: 500;
}
/* VISUAL CARD STACK - FULLY RESPONSIVE FIXED */
/* VISUAL CARD STACK - FULLY RESPONSIVE FIXED */
/* ========== VISUAL CARD STACK - COMPLETELY FIXED FOR ALL SCREENS ========== */
.col-visual {
    position: relative;
    padding: 20px;
    width: 100%;
}

.visual-card-stack {
    position: relative;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Desktop Styles - Card Stacking */
@media (min-width: 992px) {
    .vc-card {
        position: absolute;
        width: 280px;
        border-radius: 20px;
        overflow: hidden;
        background: white;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .vc-main {
        position: relative;
        z-index: 3;
        transform: translateY(0) rotate(0deg);
        animation: floatMain 4s ease-in-out infinite;
    }

    .vc-secondary {
        top: -40px;
        left: -60px;
        z-index: 2;
        transform: rotate(-8deg);
        animation: floatSecondary 4.5s ease-in-out infinite 0.5s;
    }

    .vc-tertiary {
        top: -40px;
        right: -60px;
        z-index: 2;
        transform: rotate(8deg);
        animation: floatTertiary 4.5s ease-in-out infinite 1s;
    }

    .visual-card-stack:hover .vc-main {
        transform: translateY(-10px) scale(1.02);
    }

    .visual-card-stack:hover .vc-secondary {
        transform: translateX(-10px) rotate(-5deg);
    }

    .visual-card-stack:hover .vc-tertiary {
        transform: translateX(10px) rotate(5deg);
    }
}

/* Mobile & Tablet Styles - Stack Vertically */
@media (max-width: 991px) {
    .visual-card-stack {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        justify-content: center;
    }
    
    .vc-card {
        position: relative !important;
        width: 100%;
        max-width: 350px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        animation: none !important;
        margin: 0 auto;
        display: block;
    }
    
    .visual-card-stack:hover .vc-card {
        transform: none !important;
    }
    
    .vc-main,
    .vc-secondary,
    .vc-tertiary {
        animation: none !important;
    }
    
    .vc-card {
        opacity: 0;
        transform: translateY(30px);
        animation: slideUpMobile 0.6s ease forwards;
    }
    
    .vc-card:nth-child(1) { animation-delay: 0.1s; }
    .vc-card:nth-child(2) { animation-delay: 0.3s; }
    .vc-card:nth-child(3) { animation-delay: 0.5s; }
}

/* Common Card Styles */
.vc-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.vc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vc-card:hover .vc-image-wrapper img {
    transform: scale(1.1);
}

.vc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 87, 168, 0.4), rgba(244, 163, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vc-card:hover .vc-overlay {
    opacity: 1;
}

.vc-content {
    padding: 20px;
    text-align: center;
    background: white;
}

.vc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 15px auto;
    position: relative;
    z-index: 2;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.vc-card:hover .vc-icon {
    transform: scale(1.1) rotate(360deg);
}

.vc-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.vc-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

@keyframes floatMain {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}

@keyframes floatSecondary {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-6px) rotate(-6deg); }
}

@keyframes floatTertiary {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-6px) rotate(6deg); }
}

.vc-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #f4a300, #3b82f6);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.vc-card:hover::before {
    opacity: 0.3;
}

@keyframes slideUpMobile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Adjustments */
@media (max-width: 991px) and (min-width: 768px) {
    .vc-card { max-width: 320px; }
    .vc-image-wrapper { height: 170px; }
    .vc-icon { width: 55px; height: 55px; font-size: 22px; margin-top: -38px; }
    .vc-content h4 { font-size: 17px; }
    .vc-content p { font-size: 12px; }
}

/* Mobile Portrait */
@media (max-width: 767px) {
    .col-visual { margin: 20px 0; padding: 10px; }
    .visual-card-stack { gap: 20px; }
    .vc-card { max-width: 300px; }
    .vc-image-wrapper { height: 160px; }
    .vc-content { padding: 15px; }
    .vc-icon { width: 48px; height: 48px; font-size: 20px; margin-top: -34px; }
    .vc-content h4 { font-size: 16px; }
    .vc-content p { font-size: 12px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .vc-card { max-width: 280px; }
    .vc-image-wrapper { height: 150px; }
    .vc-content { padding: 12px; }
    .vc-icon { width: 45px; height: 45px; font-size: 18px; margin-top: -32px; }
    .vc-content h4 { font-size: 15px; }
    .vc-content p { font-size: 11px; }
}

/* Desktop only background */
@media (min-width: 992px) {
    .col-visual {
        background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
        border-radius: 30px;
    }
}
/* ========== MISSION VISION VALUES GRID ========== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.mv-icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}
.mv-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}
.timeline-year {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 4rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.timeline-dot {
  position: absolute;
  left: -0.5rem;
  top: 1rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-content {
  background: var(--white);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}
.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ========== INITIATIVES / WHY CHOOSE US GRID ========== */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.initiative-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.initiative-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.init-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.initiative-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.initiative-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== TEAM GRID ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.team-avatar i {
  font-size: 3rem;
  color: var(--white);
}
.team-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--primary);
}
.team-card span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========== STATS GRID (for key numbers) ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.stat-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(2px);
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}
.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

/* ========== TESTIMONIALS GRID (extra content) ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card i {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background-attachment: fixed;
  padding: 3rem 2rem;
  color: var(--white);
  position: relative;
  background-size: cover;
  background-position: center;
}
.cta-strip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.cta-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
  flex-direction: column;
}
.cta-strip-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.cta-strip-inner p {
  opacity: 0.85;
}
.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.btn-primary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-primary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* ========== REVEAL ANIMATIONS (matches certificates) ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group .reveal {
  transition-delay: calc(var(--index, 0) * 0.08s);
}
.from-left {
  transform: translateX(-30px);
}
.from-left.active {
  transform: translateX(0);
}
.from-right {
  transform: translateX(30px);
}
.from-right.active {
  transform: translateX(0);
}



/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 4rem 0;
  background: var(--white);
}

.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-track {
  display: flex;
  position: relative;
  height: 500px;
  width: 100%;
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 10;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--primary-deep);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.gallery-btn-prev {
  left: 20px;
}

.gallery-btn-next {
  right: 20px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 6px;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .gallery-carousel {
    max-width: 100%;
  }
  
  .gallery-track {
    height: 400px;
  }
  
  .gallery-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .gallery-btn-prev {
    left: 15px;
  }
  
  .gallery-btn-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 2rem 0;
  }
  
  .gallery-carousel {
    margin-top: 2rem;
    border-radius: 12px;
  }
  
  .gallery-track {
    height: 300px;
  }
  
  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .gallery-btn-prev {
    left: 10px;
  }
  
  .gallery-btn-next {
    right: 10px;
  }
  
  .gallery-dot {
    width: 10px;
    height: 10px;
  }
  
  .gallery-dot.active {
    width: 24px;
  }
}

@media (max-width: 640px) {
  .gallery-track {
    height: 250px;
  }
  
  .gallery-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  
  .gallery-dots {
    bottom: 15px;
    gap: 8px;
  }
  
  .gallery-dot {
    width: 8px;
    height: 8px;
  }
  
  .gallery-dot.active {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-track {
    height: 200px;
  }
  
  .gallery-btn {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
  
  .gallery-btn-prev {
    left: 8px;
  }
  
  .gallery-btn-next {
    right: 8px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .two-col-section {
    grid-template-columns: 1fr;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: 1rem;
  }
  .timeline::before {
    left: 0;
  }
  .timeline-year {
    left: -1.5rem;
    font-size: 0.7rem;
    width: 3rem;
  }
  .timeline-dot {
    left: -0.3rem;
  }
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-suffix {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 4rem 0 2rem;
  }
  .col-stats {
    justify-content: center;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-strip-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-strip-actions .btn {
    justify-content: center;
    width: 100%;
  }
  .timeline-content {
    padding: 1rem;
  }
  .timeline-content h4 {
    font-size: 1rem;
  }
}


/* FORCE VISIBILITY ON MOBILE - ADD THIS AT THE END */
@media (max-width: 991px) {
  .col-visual {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .visual-card-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    min-height: auto !important;
  }
  
  .vc-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .vc-image-wrapper {
    display: block !important;
    height: 160px !important;
  }
  
  .vc-content {
    display: block !important;
  }
}