:root {
  --blue: #0d47a1;
  --green: #7ac142;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;

  /* Light Theme Variables */
  --light-bg: #f9f9f9;
  --light-text: #0d0d0d;
  --light-subtext: #333333;
  --light-hover: #0096d6;
  --stats-bg: #f3f8f4; /* A1 choice */
  --card-border: var(--green); /* C2 choice for mobile */
  --accent-dark: #0f5132;
}

/* Header Styles for Light Theme */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: var(--light-bg);
  color: var(--light-text);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.header-left {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 60px;
  margin-right: 15px;
}

.company-info .company-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--blue);
}

.company-info .company-address {
  font-size: 0.9rem;
  color: var(--light-subtext);
}

.main-nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--light-text);
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s ease;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    margin-top: 10px;
  }

  .main-nav a {
    margin-left: 0;
    margin-right: 15px;
  }
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 40px;
  background-color: var(--light-bg);
  color: var(--light-text);
  gap: 40px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.hero-card {
  flex: 1 1 600px;
  max-width: 700px;
}

.hero-card p {
  font-size: 1rem;
  color: var(--light-subtext);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-card h1 {
  font-size: 2.5rem;
  margin: 20px 0;
  line-height: 1.3;
  color: var(--black);
}

.hero-card .lead {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--light-subtext);
}

.kpis {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.kpi span {
  display: block;
  font-size: 0.9rem;
  color: var(--light-subtext);
}

.kpi strong {
  display: block;
  font-size: 1.5rem;
  color: var(--blue);
}

.cta-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--text-primary);
}

.btn-primary:hover {
  background-color: var(--dark);
}

.btn-alt {
  background-color: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-alt:hover {
  background-color: var(--blue);
  color: var(--text-primary);
}

.stats-panel {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-panel div:first-child {
  margin-bottom: 20px;
}

.stats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.stat div:first-child {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--blue);
}

.stat div:last-child {
  font-size: 0.9rem;
  color: var(--light-subtext);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .stats-panel {
    max-width: 100%;
    margin-top: 40px;
  }

  .hero-card h1 {
    font-size: 2rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark overlay for contrast */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Main content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  color: #fff;
}

.typewriter {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  min-height: 100px;
}

.tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.lead {
  margin-top: 20px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-alt {
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

/* Primary */
.btn-primary {
  background: #0096d6;
  color: #fff;
}

/* Outline */
.btn-alt {
  border: 2px solid #0096d6;
  color: #fff;
}

.btn-primary:hover,
.btn-alt:hover {
  opacity: 0.85;
}

/* -------------------------------------- */
/*          🔥 MOBILE OPTIMIZATION        */
/* -------------------------------------- */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding-top: 60px; /* avoids header overlap */
  }

  .typewriter {
    font-size: 1.8rem;
    min-height: 70px;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .lead {
    font-size: 1rem;
    margin-top: 15px;
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-alt {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 12px;
  }

  .hero .overlay {
    background: rgba(0, 0, 0, 0.6); /* slightly darker for readability */
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .typewriter {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 0 15px;
  }
}

/* Scroll Down Arrow - Brand Colors */
.scroll-down-arrow {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 50;
  animation: bounceArrow 1.6s infinite;
}

/* Gradient arrow line */
.scroll-down-arrow span {
  display: block;
  width: 18px;
  height: 18px;
  border-bottom: 4px solid transparent;
  border-right: 4px solid transparent;
  transform: rotate(45deg);
  margin: auto;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-mask: linear-gradient(135deg, transparent 50%, black 50%) content-box,
    linear-gradient(135deg, black 50%, transparent 50%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px;
}

/* Bounce animation */
@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, 8px);
  }
  60% {
    transform: translate(-50%, 4px);
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .scroll-down-arrow {
    bottom: 18px;
    width: 32px;
    height: 32px;
  }

  .scroll-down-arrow span {
    width: 14px;
    height: 14px;
    border-bottom-width: 3px;
    border-right-width: 3px;
  }
}

/* Container */
.hero-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 20px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--light-bg);
  color: var(--black);
}

/* Left hero card */
.hero-card {
  flex: 1 1 720px;
  min-width: 260px;
}

/* Typography */
.subline {
  font-size: 0.95rem;
  color: var(--light-subtext);
  margin-bottom: 14px;
  text-align: left;
  letter-spacing: 0.02em;
}

.hero-card h1 {
  font-size: 2rem;
  line-height: 1.18;
  margin: 6px 0 14px;
  font-weight: 700;
}

.lead {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* KPI row (desktop stacked into cards on mobile) */
.kpis {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.kpi {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.kpi-label {
  color: var(--light-subtext);
  font-size: 0.9rem;
}

.kpi-value {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
}

/* CTAs */
.cta-row {
  display: flex;
  gap: 14px;
  margin: 20px 0 8px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  text-align: center;
}

.btn-primary {
  background: var(--accent-dark);
  color: #fff;
  border: 2px solid var(--accent-dark);
}

.btn-alt {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

/* Trust line */
.trust-line {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* Right Stats panel - DESKTOP STYLE */
.stats-panel {
  flex: 0 0 340px;
  background: var(--stats-bg); /* A1 */
  padding: 22px;
  border-radius: 12px;
  box-sizing: border-box;
  position: sticky;
  top: 96px;
  height: fit-content;
}

/* Header area in panel */
.stats-header .title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 8px;
  /* subtle white-on-tinted background look - we'll lighten the title area */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0)
  );
  padding: 8px;
  border-radius: 6px;
  color: var(--accent-dark);
}

.stats-header .subtitle {
  font-size: 0.9rem;
  color: #3b5b4a;
  margin: 8px 0 12px;
}

.section-label {
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Desktop stats list: stack vertically for clarity */
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each stat item desktop */
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 6px;
}

.stat .big {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
}

.stat .small {
  font-size: 0.92rem;
  color: #34493d;
  margin-top: 6px;
}

/* footer note */
.footer-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #4e6a5a;
}

/* ----------------------------
   MOBILE / TABLET BEHAVIOR
   ---------------------------- */
@media (max-width: 899px) {
  .hero-section {
    padding: 36px 18px;
    display: block; /* stack content */
  }

  .hero-card {
    max-width: 900px;
    margin: 0 auto 20px;
  }

  /* Reduce heading */
  .hero-card h1 {
    font-size: 1.4rem;
  }

  /* KPI cards become full-width stacked */
  .kpis {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .kpi {
    min-width: 220px;
    flex: 0 0 auto;
  }

  /* Stats panel transforms into horizontal scroll list of outlined cards (C2) */
  .stats-panel {
    background: transparent;
    padding: 0;
    border-radius: 0;
    position: static;
  }

  .stats-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 6px 6px;
    scroll-snap-type: x mandatory;
  }

  .stat {
    scroll-snap-align: start;
    flex: 0 0 260px; /* card width on mobile */
    min-width: 260px;
    background: #fff;
    border: 2px solid var(--card-border); /* green outline (C2) */
    border-radius: 10px;
    padding: 18px;
    box-sizing: border-box;
    align-items: flex-start;
    text-align: left;
  }

  .stat .big {
    color: var(--card-border);
    font-size: 1.35rem;
    font-weight: 800;
  }

  .stat .small {
    color: #333;
    margin-top: 8px;
    font-size: 0.95rem;
  }

  .footer-note {
    margin: 10px 0 18px;
    padding: 0 6px;
    color: #666;
  }
}

/* Slight improvements for larger desktops */
@media (min-width: 1400px) {
  .hero-card h1 {
    font-size: 2.25rem;
  }
}

.hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  gap: 60px; /* Balanced spacing */
  max-width: 1400px; /* Prevent too-wide layout */
  width: 100%;
  margin: 0 auto; /* Perfect center alignment */
  padding: 0 40px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Right card fixes */
.stats-panel {
  background: #f1f8f5;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky; /* optional */
  top: 100px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-panel {
    position: static;
  }
}

/* Section Wrapper */
.why-mice {
  padding: 100px 40px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

/* Container */
.why-container,
.service-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Title */
.why-title,
.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 20px;
}

/* Subtitle */
.why-subtitle {
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border-top: 4px solid var(--blue); /* event-agency accent */
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Icons */
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

/* Text */
.why-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.why-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Section Wrapper */
.about-sec {
  padding: 100px 40px;
  background: #f9faf9;
  font-family: Arial, sans-serif;
}

/* Container */
.about-container,
.strategy-container,
.cs-container,
.industries-container,
.global-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Title */
.about-title,
.strategy-title,
.cs-title,
.industries-title,
.global-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 20px;
}

/* Intro Text */
.about-text,
.service-text,
.strategy-text,
.cs-text,
.industries-text,
.global-text {
  color: #555;
  max-width: 780px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  border-top: 4px solid var(--blue);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Card Labels */
.about-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

/* Card Text */
.about-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Grids */
.service-grid,
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Card Styling */
.service,
.strategy-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 35px 25px 25px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background blobs */
.bg-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.15;
  top: -30px;
  right: -30px;
  z-index: 0;
}

.blob-blue {
  background-color: var(--blue);
}
.blob-purple {
  background-color: #6a1b9a;
}
.blob-green {
  background-color: #2e7d32;
}
.blob-orange {
  background-color: #f57c00;
}
.blob-red {
  background-color: #c62828;
}
.blob-teal {
  background-color: #00897b;
}
.blob-lightblue {
  background-color: #42a5f5;
}
.blob-lightpurple {
  background-color: #ab47bc;
}
.blob-lightgreen {
  background-color: #66bb6a;
}

/* Icons & Text */
.service i,
.strategy-item i {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service h3,
.strategy-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--blue);
  position: relative;
  z-index: 1;
}

.service p,
.strategy-item p {
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Hover effect */
.service:hover,
.strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Funnel Example Card */
.funnel-example {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: auto;
}

.funnel-example h4 {
  color: var(--blue);
  margin-bottom: 10px;
}

.funnel-example p {
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Scroll animation */
.service,
.strategy-item,
.funnel-example {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.service.animate,
.strategy-item.animate,
.funnel-example.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 40px 15px;
  }
}

#case-studies {
  padding: 60px 20px;
  background-color: #f5f7fa;
  font-family: "Segoe UI", sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
}

/* Case Grid: 2x2 */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for desktop */
  gap: 30px;
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* Case Card */
.case-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Background blobs */
.bg-blob {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
  top: -20px;
  right: -20px;
  z-index: 0;
}

.blob-lightblue {
  background-color: #42a5f5;
}
.blob-lightpurple {
  background-color: #ab47bc;
}
.blob-lightgreen {
  background-color: #66bb6a;
}
.blob-lightorange {
  background-color: #ffa726;
}

/* Text */
.case-card h3 {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.case-card p,
.case-card ul {
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.case-card ul {
  padding-left: 20px;
  margin-top: 10px;
}

/* Scroll animation */
.case-card {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.case-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  #case-studies {
    padding: 40px 15px;
  }
}

/* Portfolio Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Partner / Global Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  justify-items: center;
}

.partner-grid .partner {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  transition: transform 0.3s;
}

.partner-grid .partner:hover {
  transform: translateY(-3px);
}

/* Insights / Blog */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.insight-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.insight-card:hover {
  transform: translateY(-5px);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  font-style: italic;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.client {
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}

/* Scroll animation */
.gallery-card,
.partner-grid .partner,
.insight-card,
.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.gallery-card.animate,
.partner-grid .partner.animate,
.insight-card.animate,
.testimonial-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 40px 15px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: default;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #e0f7fa, #80deea);
}

.card-grid .card {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Animate on scroll (reuse previous JS) */
.card-grid .card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact Section Styles ===== */
.contact-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0b3d2e;
  font-size: 2rem;
  font-weight: 600;
}
.contact-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left Column */
.contact-left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-row input {
  flex: 1;
}
input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
  font-size: 1rem;
}
input:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s all;
}
.btn-primary {
  background-color: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background-color: #0056b3;
}
.btn-alt {
  background-color: #f1f1f1;
  color: #222;
}
.btn-alt:hover {
  background-color: #e1e1e1;
}
.office-info {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}

/* Right Column */
.contact-right {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.quick-contact h3,
.newsletter h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}
.newsletter input {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 1rem;
}
.newsletter button {
  width: 100%;
}
.note {
  font-size: 0.875rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #555;
  border-top: 1px solid #e0e0e0;
}
.footer-left,
.footer-right {
  margin: 0.5rem 0;
}
@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
