/* ================================================
   VED INVESTMENTS – Premium Redesign CSS
   ================================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00B652;
  --primary-dark: #009c46;
  --secondary: #111B45;
  --secondary-light: #1d2b63;

  --navy: #111B45;
  --navy-mid: #1d2b63;
  --navy-light: #233575;
  --gold: #00B652;
  --gold-light: #77dd9a;
  --gold-dark: #008037;
  --teal: #00B652;
  --teal-light: #009c46;

  --white: #FFFFFF;
  --off-white: #FDFDFD;
  --text: #121212;
  --text-light: #4A4A4A;
  --border: #E0E5E2;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(17, 27, 69, 0.06);
  --shadow-md: 0 8px 32px rgba(17, 27, 69, 0.10);
  --shadow-lg: 0 20px 60px rgba(17, 27, 69, 0.16);
  --radius: 0px;
  --radius-lg: 0px;
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --ff-body: 'Inter', sans-serif;
  --ff-serif: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.625;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 182, 82, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 182, 82, 0.3);
}

.btn-gold {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(17, 27, 69, 0.2);
}

.btn-gold:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 27, 69, 0.3);
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

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

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- Section Common ---- */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal);
  background: rgba(26, 155, 161, 0.10);
  border: 1px solid rgba(26, 155, 161, 0.25);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag.gold {
  color: var(--gold);
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.3);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-title.white {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header.light {
  color: var(--white);
}

.section-sub {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.625;
}

.section-sub.light-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  transition: var(--transition);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--gold);
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1010;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.02);
}

.footer-logo .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  height: 52px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: 0px;
  transition: var(--transition);
  position: relative;
}

@media (hover: hover) {
  .nav-link:hover:not(.active) {
    color: var(--primary);
  }
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
  background: rgba(0, 182, 82, 0.04);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: var(--primary);
  border-radius: 0px;
}

.chevron {
  font-size: 0.7rem;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0px;
  padding: 10px 0;
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  margin-top: 4px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
}

@media (hover: hover) and (min-width: 769px) {
  .nav .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--text-light);
  font-size: 0.88rem;
  white-space: nowrap;
  transition: var(--transition);
}

@media (hover: hover) {
  .dropdown-menu a:hover:not(.active) {
    color: var(--primary);
    background: rgba(0, 182, 82, 0.04);
    padding-left: 42px;
  }
}

.dropdown-menu a.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(0, 182, 82, 0.06);
}

.nav-cta {
  margin-left: 10px;
  padding: 10px 22px;
  font-size: 0.86rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 0px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 80px 28px 40px;
  z-index: 1005;
  transform: translateY(-100%);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  color: var(--text);
  padding: 12px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav > a.active,
.mobile-nav .dropdown-menu a.active {
  color: var(--primary);
  font-weight: 700;
}

.mobile-nav .btn {
  margin-top: 16px;
  text-align: center;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('financial_hero_bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 27, 69, 0.92) 0%, rgba(17, 27, 69, 0.80) 50%, rgba(29, 43, 99, 0.88) 100%);
  z-index: 1;
}

.hero-slides-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  width: 100%;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero-content {
  width: 100%;
  max-width: 1080px;
  padding: 120px 40px 120px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  background: rgba(0, 182, 82, 0.08);
  border: 1px solid rgba(0, 182, 82, 0.28);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(17, 27, 69, 0.4);
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, #aeffc9 0%, #00B652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-author {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-top: 12px;
  -webkit-text-fill-color: initial;
  opacity: 0.92;
}

.hero-desc {
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(17, 27, 69, 0.25);
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: rgba(200, 169, 110, 0.25);
  border-color: var(--gold);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

/* Stats strip */
.hero-stats {
  position: relative;
  background: linear-gradient(135deg, #111B45 0%, #06022e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  overflow: hidden;
  z-index: 10;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 182, 82, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-stats-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.stats-title {
  font-family: var(--ff-body);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0;
  z-index: 1;
}

.stats-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 24px 40px;
  z-index: 1;
  flex-wrap: nowrap;
}

@media (max-width: 991px) {
  .stats-grid {
    justify-content: space-between;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    padding: 10px 0;
  }

  .hero-stat {
    flex-shrink: 1;
    white-space: normal;
  }

  .hero-stat .stat-num {
    font-size: 2.2rem;
  }

  .hero-stat .stat-label {
    font-size: 0.85rem;
    max-width: 160px;
    margin: 0 auto;
    line-height: 1.4;
  }
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  white-space: nowrap;
}

.stat-num {
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(38px, 4.2vw, 56px);
  color: #aeffc9;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 182, 82, 0.15);
}

.stat-label {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  text-transform: none;
  letter-spacing: normal;
}

/* ================================================
   VALUE PROPS
   ================================================ */
.value-props {
  padding: 100px 0;
  background: var(--off-white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================================
   HOME PAGE ABOUT SECTION
   ================================================ */
.home-about-section {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f9fbfb 100%);
  position: relative;
  overflow: hidden;
}

.home-about-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 182, 82, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.home-about-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(17, 27, 69, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
}

.home-about-visual {
  position: relative;
  z-index: 2;
}

.home-about-img-container {
  position: relative;
  padding: 20px;
}

.home-about-decor-pattern-1 {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.home-about-decor-pattern-2 {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  border-right: 3px solid rgba(0, 182, 82, 0.15);
  border-bottom: 3px solid rgba(0, 182, 82, 0.15);
  z-index: 1;
  pointer-events: none;
}

.home-about-img-frame {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(17, 27, 69, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  overflow: hidden;
  z-index: 2;
  transition: all 0.5s ease;
}

.home-about-img-frame .home-about-img-new {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-about-img-frame:hover .home-about-img-new {
  transform: scale(1.03);
}

.home-about-stat-badge {
  position: absolute;
  background: rgba(17, 27, 69, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(17, 27, 69, 0.25);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-about-stat-badge:hover {
  transform: translateY(-5px);
  background: var(--navy);
  border-color: rgba(0, 182, 82, 0.3);
}

.home-about-stat-badge.badge-left {
  bottom: 10px;
  left: -20px;
  border-left: 4px solid var(--primary);
}

.home-about-stat-badge.badge-right {
  top: 30px;
  right: -20px;
  border-right: 4px solid var(--primary);
}

.stat-badge-icon {
  background: rgba(0, 182, 82, 0.15);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 182, 82, 0.1);
}

.stat-badge-content {
  display: flex;
  flex-direction: column;
}

.stat-badge-num {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat-badge-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 2px;
}

.home-about-content-new {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.home-about-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.home-about-tag-line {
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.home-about-content-new .home-about-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-about-content-new .section-title-new {
  font-family: var(--ff-serif);
  font-size: clamp(2.1rem, 4.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.home-about-lead-new {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 16px;
}

.home-about-body-new {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
}

.home-about-features-container {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 26px;
  margin-bottom: 30px;
}

.home-about-features-container .features-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-about-features-container .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.home-about-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 15px rgba(17, 27, 69, 0.01);
  transition: all 0.3s ease;
}

.home-about-feature-item-new:hover {
  transform: translateX(5px);
  border-color: rgba(0, 182, 82, 0.12);
  box-shadow: 0 10px 25px rgba(17, 27, 69, 0.04);
}

.home-about-feature-icon-new {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 182, 82, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.home-about-feature-item-new:hover .home-about-feature-icon-new {
  background: var(--primary);
  color: var(--white);
}

.home-about-feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.home-about-feature-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.home-about-feature-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 400;
}

.home-about-actions-new {
  margin-top: 30px;
}

.home-about-actions-new .btn-primary {
  padding: 15px 36px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 182, 82, 0.2);
}

.home-about-mission-vision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.home-about-mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.home-about-mv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.home-about-mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 182, 82, 0.2);
}

.home-about-mv-card:hover::after {
  transform: scaleX(1);
}

.home-about-mv-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(17, 27, 69, 0.03);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.home-about-mv-card:hover .home-about-mv-icon-wrap {
  background: var(--navy);
  color: var(--white);
}

.home-about-mv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.home-about-mv-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .home-about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
  }
  .home-about-img-frame .home-about-img-new {
    height: 560px;
  }
  .home-about-stat-badge.badge-left {
    left: 0;
  }
  .home-about-stat-badge.badge-right {
    right: 0;
  }
}

@media (max-width: 992px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .home-about-content-new {
    max-width: 100%;
  }
  .home-about-visual {
    max-width: 650px;
    margin: 0 auto;
  }
  .home-about-img-frame .home-about-img-new {
    height: 480px;
  }
  .home-about-section {
    padding: 100px 0;
  }
}

@media (max-width: 576px) {
  .home-about-img-frame {
    border-radius: 20px;
    padding: 6px;
  }
  .home-about-img-frame .home-about-img-new {
    height: 340px;
    border-radius: 14px;
  }
  .home-about-stat-badge {
    padding: 14px 18px;
    border-radius: 12px;
    gap: 12px;
  }
  .stat-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .stat-badge-num {
    font-size: 1.4rem;
  }
  .home-about-stat-badge.badge-left {
    bottom: -15px;
    left: 10px;
  }
  .home-about-stat-badge.badge-right {
    top: -15px;
    right: 10px;
  }
  .home-about-feature-item-new {
    padding: 16px;
    gap: 14px;
  }
  .home-about-feature-icon-new {
    width: 38px;
    height: 38px;
  }
  .home-about-mv-card {
    padding: 30px;
  }
}

/* ================================================
   DEDICATED ABOUT SECTION (About Us Page)
   ================================================ */
.dedicated-about-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.dedicated-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 182, 82, 0.02) 0%, rgba(17, 27, 69, 0.01) 100%);
  pointer-events: none;
  z-index: 1;
}

.dedicated-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.dedicated-about-visual {
  position: relative;
  z-index: 2;
}

.dedicated-about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 15px;
  background: var(--off-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
}

.dedicated-about-img-decor {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(0, 182, 82, 0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

.dedicated-about-img-new {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dedicated-about-img-frame:hover .dedicated-about-img-new {
  transform: scale(1.02);
}

.dedicated-about-badge-card {
  position: absolute;
  bottom: -30px;
  left: 40px;
  background: var(--navy);
  border-left: 5px solid var(--primary);
  padding: 24px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  max-width: 380px;
  transition: transform 0.3s ease;
}

.dedicated-about-badge-card:hover {
  transform: translateY(-5px);
}

.dedicated-about-badge-card .badge-card-icon {
  background: rgba(0, 182, 82, 0.1);
  color: var(--primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dedicated-about-badge-card .badge-card-text {
  display: flex;
  flex-direction: column;
}

.dedicated-about-badge-card .badge-card-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.dedicated-about-badge-card .badge-card-desc {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.dedicated-about-content-new {
  z-index: 2;
}

.dedicated-about-content-new .section-title-new {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.dedicated-about-lead-new {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}

.dedicated-about-body-new {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 30px;
}

.dedicated-about-features-container {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.dedicated-about-features-container .features-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dedicated-about-features-container .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.dedicated-about-feature-item-new {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dedicated-about-feature-icon-new {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 182, 82, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dedicated-about-feature-item-new p {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
}

.dedicated-about-mission-vision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.dedicated-about-mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dedicated-about-mv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.dedicated-about-mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 182, 82, 0.2);
}

.dedicated-about-mv-card:hover::after {
  transform: scaleX(1);
}

.dedicated-about-mv-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(17, 27, 69, 0.03);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.dedicated-about-mv-card:hover .dedicated-about-mv-icon-wrap {
  background: var(--navy);
  color: var(--white);
}

.dedicated-about-mv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.dedicated-about-mv-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .dedicated-about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .dedicated-about-img-new {
    height: 400px;
  }
  .dedicated-about-badge-card {
    left: 20px;
    bottom: -20px;
  }
  .dedicated-about-mission-vision-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dedicated-about-section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .dedicated-about-img-new {
    height: 320px;
  }
  .dedicated-about-badge-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    max-width: 100%;
    padding: 16px 20px;
  }
  .dedicated-about-badge-card .badge-card-num {
    font-size: 2rem;
  }
  .dedicated-about-mv-card {
    padding: 30px;
  }
}

/* ================================================
   SERVICES
   ================================================ */
.services-section {
  padding: 110px 0;
  background: var(--off-white);
}

.service-block {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 50px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.service-block.alt {
  background: var(--navy);
  border-color: var(--border);
}

.service-block.alt .service-block-title,
.service-block.alt .service-block-desc {
  color: var(--white);
}

.service-block.alt .service-block-desc {
  opacity: 0.75;
}

.service-block.alt .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-block.alt .service-card h4,
.service-block.alt .service-card p {
  color: rgba(255, 255, 255, 0.88);
}

.service-block.alt .service-card p {
  color: rgba(255, 255, 255, 0.6);
}

.service-block.alt .service-card:hover {
  background: rgba(200, 169, 110, 0.1);
}

.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.service-icon-big {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal) 0%, #0D8E94 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-big svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-block.alt .service-icon-big {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.service-block-title {
  font-size: 1.6rem;
  font-family: var(--ff-serif);
  color: var(--navy);
  margin-bottom: 8px;
}

.service-block-desc {
  color: var(--text-light);
  font-size: 0.98rem;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-cards-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(225deg, rgba(200, 169, 110, 0.12) 0%, transparent 50%);
  border-radius: 0 var(--radius) 0 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.sc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--primary);
  margin-bottom: 14px;
}

.sc-icon svg {
  width: 36px;
  height: 36px;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================================
   WHY US
   ================================================ */
.why-section {
  padding: 110px 0;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.why-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(26, 155, 161, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 169, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(200, 169, 110, 0.08);
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(200, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card:hover .why-num {
  color: rgba(200, 169, 110, 0.4);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  padding-top: 12px;
  margin-top: 4px;
  width: 100%;
}

.skill-bars {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.skill-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  min-width: 220px;
}

.skill-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 0px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.skill-fill::after {
  content: attr(data-width) '%';
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  right: -36px;
  white-space: nowrap;
}

/* ================================================
   AWARDS
   ================================================ */
.awards-section {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

/* Awards Filter Bar */
.awards-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(17, 27, 69, 0.2);
}

/* Grid Layout */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  min-height: 400px;
  /* Prevent collapse when filtering */
}

/* Card Design */
.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  /* Smooth corners */
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  opacity: 1;
  transform: scale(1) translateY(0);
}

.award-card.filtered-out {
  opacity: 0;
  transform: scale(0.9) translateY(15px);
  pointer-events: none;
}

.award-card.hidden {
  display: none !important;
}

/* Hover Accent Bar */
.award-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.award-card:hover::after {
  transform: scaleX(1);
}

/* Card Header */
.award-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.award-category {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  opacity: 0.8;
}

.award-badge-pill {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(26, 155, 161, 0.08);
  color: var(--teal);
  padding: 3px 8px;
  border-radius: 4px;
}

.award-badge-pill.gold {
  background: rgba(200, 169, 110, 0.12);
  color: var(--gold-dark);
}

.award-badge-pill.red {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

/* Icon Wrap with Glow */
.award-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 155, 161, 0.06) 0%, rgba(200, 169, 110, 0.06) 100%);
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.award-icon {
  font-size: 2.2rem;
  z-index: 2;
  transition: transform 0.4s ease;
}

.award-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.8);
  z-index: 1;
}

.award-card:hover .award-icon-wrap {
  transform: scale(1.1);
  border-color: var(--gold);
}

.award-card:hover .award-icon {
  transform: rotate(10deg) scale(1.1);
}

.award-card:hover .award-glow {
  opacity: 1;
  transform: scale(1.2);
}

/* Title & Issuer */
.award-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
  flex: 1;
  /* Push issuer to bottom if heights differ slightly */
}

.award-issuer {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  opacity: 0.6;
}

/* Responsive Rules for Awards Section */
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .awards-filter-bar {
    gap: 8px;
    margin-bottom: 36px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   TEAM
   ================================================ */
.team-section {
  padding: 110px 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0, 182, 82, 0.15);
}

.team-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  border-radius: 12px 12px 0 0;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 22px 24px 28px;
}

.team-info h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-exp {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-section {
  padding: 110px 0;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.testimonial-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26, 155, 161, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
}

.t-quote {
  font-family: var(--ff-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.5;
  margin-bottom: 18px;
}

.t-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-author strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.t-author span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, #0B6E74 50%, var(--navy) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  padding: 110px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-desc {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal) 0%, #0D8E94 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-item a:hover {
  color: var(--teal);
}

.map-btn {
  font-size: 0.88rem;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.93rem;
  color: var(--text);
  font-family: var(--ff-body);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 182, 82, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 14px;
  padding: 14px;
  background: rgba(0, 182, 82, 0.08);
  border-radius: 0px;
  border: 1px solid rgba(0, 182, 82, 0.2);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn svg {
  display: block;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 182, 82, 0.25);
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.footer-links h5,
.footer-contact h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  font-size: 0.7rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-disclosure {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.footer-disclosure p {
  margin-bottom: 6px;
}

.footer-disclosure p:last-child {
  margin-bottom: 0;
}

.footer-disclosure .disclosure-warning {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin-top: 10px;
}

.footer-copyright-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright-row p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .footer-copyright-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  background-color: #20ba59;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {

  .value-grid,
  .why-grid,
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-stat-badge {
    left: 0;
  }

  .about-badge-2 {
    right: 0;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .service-block {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav .nav-dropdown {
    width: 100%;
    position: relative;
  }

  .mobile-nav .nav-dropdown > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text);
    padding: 12px 0;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border);
  }

  .mobile-nav .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 20px;
    background: transparent;
    display: none;
    min-width: 100%;
    transition: none;
  }

  .mobile-nav .dropdown-menu::before {
    display: none;
  }

  .mobile-nav .dropdown-menu a {
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: none;
    padding: 8px 0;
  }

  .mobile-nav .dropdown-menu a:hover {
    padding-left: 10px;
    color: var(--primary);
  }

  .mobile-nav .nav-dropdown .dropdown-menu.dropdown-open {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav .nav-dropdown:has(.dropdown-open) .chevron {
    transform: rotate(180deg);
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-cards-grid.two-col {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-mission {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .skill-label {
    min-width: 150px;
    font-size: 0.78rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    padding: 80px 0 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    height: 360px;
  }

  .about-badge-2 {
    display: none;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

/* ================================================
   SUBPAGES GLOBAL AND LAYOUT STYLES
   ================================================ */

/* --- Subpage Banner --- */
.page-title {
  position: relative;
  padding: 80px 0;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  margin-top: 0;
}

.page-title h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* --- Gallery Page --- */
.gallery-section {
  padding: 60px 0 100px;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--white);
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 27, 69, 0.95);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  user-select: none;
}

.lightbox-arrow:hover {
  background: var(--primary);
  color: var(--white);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-next {
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* --- Video Gallery --- */
.video-section {
  padding: 60px 0 100px;
  background: var(--off-white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--secondary);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: 24px;
}

.video-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.video-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- Blog Page --- */
.blog-section {
  padding: 60px 0 100px;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

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

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.blog-readmore {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-readmore:hover {
  color: var(--primary-dark);
  padding-left: 4px;
}

/* ================================================
   FOUNDER PHOTO GRID (About Section on Homepage)
   ================================================ */
.about-founders-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-bottom: 24px;
}

.founder-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.founder-card.founder-main {
  grid-column: 1 / -1;
}

.founder-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.founder-card.founder-main .founder-img {
  height: 310px;
}

.founder-card:hover .founder-img {
  transform: scale(1.04);
}

.founder-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(17, 27, 69, 0.95) 0%, transparent 100%);
  padding: 32px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-card.founder-main .founder-label {
  padding: 36px 20px 18px;
}

.founder-label strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

.founder-card.founder-main .founder-label strong {
  font-size: 1.1rem;
}

.founder-label span {
  color: #77dd9a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder-stat-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 10;
}

.founder-stat-badge .badge-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.founder-stat-badge .badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
  display: block;
  opacity: 0.92;
}

/* ================================================
   SERVICES OVERVIEW SECTION (Homepage Summary)
   ================================================ */
.services-overview-section {
  padding: 100px 0;
  background: var(--off-white);
}

.services-overview-grid {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 24px 4px;
  margin: 0 -4px;
}

.services-overview-grid::-webkit-scrollbar {
  height: 6px;
}

.services-overview-grid::-webkit-scrollbar-track {
  background: rgba(17, 27, 69, 0.05);
  border-radius: 10px;
}

.services-overview-grid::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.services-overview-grid::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.sov-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(25% - 18px);
  min-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.sov-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.sov-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.sov-card:hover::before {
  transform: scaleX(1);
}

.sov-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--primary);
  margin-bottom: 12px;
}

.sov-icon svg {
  width: 38px;
  height: 38px;
}

.sov-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.sov-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.sov-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  transition: var(--transition);
}

.sov-card:hover .sov-link {
  letter-spacing: 0.12em;
}

@media (max-width: 1100px) {
  .sov-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .services-overview-grid {
    gap: 16px;
  }
  .sov-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .services-overview-grid {
    gap: 12px;
  }
  .sov-card {
    flex: 0 0 calc(85% - 6px);
    padding: 28px 20px 20px;
  }

  .founder-img {
    height: 180px;
  }

  .founder-card.founder-main .founder-img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .about-founders-grid {
    grid-template-columns: 1fr;
  }

  .founder-card.founder-main {
    grid-column: auto;
  }
}

/* ================================================
   DROPDOWN — JS-controlled toggle via .dropdown-open (mobile)
   ================================================ */
@media (max-width: 768px) {
  .nav-dropdown .dropdown-menu.dropdown-open {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
  }
}

/* ================================================
   FAQ SECTION & ACCORDION
   ================================================ */
.faq-section {
  background: var(--off-white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* Maintaining 0px from design language */
  transition: var(--transition);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--primary);
  /* Hover border highlights in brand green */
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.faq-question {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  transition: var(--transition);
}

.faq-header:hover .faq-question,
.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.faq-header:hover .faq-icon-wrap,
.faq-item.active .faq-icon-wrap {
  color: var(--primary);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 30px 24px 30px;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-light);
  line-height: 1.75;
}

.faq-answer p {
  margin-bottom: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-bullets {
  margin: 14px 0 20px 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-bullets li {
  position: relative;
  padding-left: 20px;
}

.faq-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

.faq-quote {
  border-left: 4px solid var(--primary);
  padding: 8px 16px;
  margin: 16px 0;
  background: rgba(0, 182, 82, 0.03);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
}

/* ================================================
   OUR VALUE TO YOU SECTION
   ================================================ */
.value-to-you-section {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.value-to-you-grid-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.value-to-you-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card-premium {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* 0px straight corners to match branding */
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.value-chart-container {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-chart-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  /* Start progress from the top */
}

.chart-bg-circle {
  fill: none;
  stroke: rgba(0, 182, 82, 0.08);
  /* Light green base ring matching branding */
  stroke-width: 9;
}

.chart-progress-circle {
  fill: none;
  stroke: var(--primary);
  /* Brand green */
  stroke-width: 9;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-text {
  position: absolute;
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.chart-text.zero {
  color: var(--text-light);
  opacity: 0.6;
}

.value-text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.value-text-title {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.value-text-desc {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.625;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .value-to-you-grid-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .value-to-you-grid-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card-premium {
    padding: 28px 24px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .value-card-premium {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ================================================
   WHO WE SERVE SECTION
   ================================================ */
.who-we-serve-section {
  background: var(--navy);
  padding: 100px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.who-we-serve-section .section-title {
  color: var(--white);
}

.who-we-serve-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
}

/* Philosophy block containing Parag Parikh's quote */
.serve-philosophy-block {
  display: flex;
  gap: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  margin-top: 50px;
  margin-bottom: 70px;
  align-items: center;
}

.serve-quote-wrap {
  flex: 1;
  position: relative;
  border-left: 4px solid var(--primary);
  padding-left: 32px;
}

.serve-quote-mark {
  position: absolute;
  top: -24px;
  left: 12px;
  font-size: 80px;
  color: rgba(0, 182, 82, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.serve-quote-wrap blockquote {
  margin: 0;
}

.serve-quote-wrap blockquote p {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 12px;
}

.serve-quote-wrap blockquote cite {
  font-size: 15px;
  font-style: normal;
  color: var(--primary);
  font-weight: 600;
  display: block;
}

.serve-philosophy-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.serve-philosophy-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* Intro Text */
.serve-intro-text {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px auto;
}

.serve-intro-text h3 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.serve-intro-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

/* Profiles Grid */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.serve-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.serve-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.serve-icon {
  font-size: 32px;
  line-height: 1;
}

.serve-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.serve-tagline {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.serve-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

/* Make the last card full-width or span across columns */
.serve-card.full-width-card {
  grid-column: span 3;
}

/* Outro statement */
.serve-outro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 50px;
}

.serve-outro p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}

.serve-outro .serve-outro-bold {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

/* CTA Banner inside the section */
.serve-cta-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.serve-cta-content {
  flex: 1;
}

.serve-cta-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.serve-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.serve-cta-banner .btn-gold {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 16px 32px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.serve-cta-banner .btn-gold:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 182, 82, 0.35);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .serve-philosophy-block {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .serve-card.full-width-card {
    grid-column: span 2;
  }
  
  .serve-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }
  
  .serve-card.full-width-card {
    grid-column: auto;
    flex-direction: column;
    gap: 16px;
  }
}

/* ================================================
   DISCLAIMER PAGE
   ================================================ */
.disclaimer-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.disclaimer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.disclaimer-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.disclaimer-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(0, 182, 82, 0.1);
  padding-bottom: 10px;
}

.disclaimer-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.disclaimer-card p:last-child {
  margin-bottom: 0;
}

.disclaimer-card ul {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.disclaimer-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

.disclaimer-actions {
  text-align: center;
  margin-top: 20px;
}

.disclaimer-actions .btn {
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ================================================
   OUR PHILOSOPHY SECTION
   ================================================ */
.philosophy-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f7f9f8 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.philosophy-header-wrapper {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag-new {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.philosophy-title-new {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.philosophy-desc-new {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Carousel Outer Container */
.philosophy-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  padding: 20px 0;
}

.philosophy-carousel-container:active {
  cursor: grabbing;
}

/* Track holding the cards */
.carousel-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-track.no-transition {
  transition: none !important;
}

/* Slide Cards */
.phi-slide-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(17, 27, 69, 0.02), 0 1px 3px rgba(17, 27, 69, 0.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: 700px;
  min-height: 400px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  opacity: 0.5;
  transform: scale(0.92);
}

/* Active card in the center */
.phi-slide-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 40px rgba(17, 27, 69, 0.08);
  border-color: rgba(0, 182, 82, 0.15);
}

.phi-slide-card:hover.active {
  transform: translateY(-4px) scale(1);
  box-shadow: 0 25px 45px rgba(17, 27, 69, 0.12);
  border-color: rgba(0, 182, 82, 0.25);
}

/* Icon style */
.phi-card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(0, 182, 82, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.phi-slide-card.active:hover .phi-card-icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.phi-card-title-new {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.010em;
}

.phi-card-subtitle-new {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phi-card-desc-new {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}

/* Explore Button inside Card */
.phi-card-btn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.phi-card-btn .arrow {
  transition: transform 0.25s ease;
}

.phi-slide-card.active .phi-card-btn:hover {
  color: var(--primary);
}

.phi-slide-card.active .phi-card-btn:hover .arrow {
  transform: translateX(4px);
}

/* Nav Control Panel centered bottom */
.philosophy-controls-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

.philosophy-nav-buttons-center {
  display: flex;
  gap: 16px;
}

.phi-nav-btn-center {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.phi-nav-btn-center:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 182, 82, 0.25);
}

.phi-nav-btn-center:active {
  transform: translateY(0);
}

/* Bottom Progress Track */
.philosophy-progress-container-new {
  width: 100%;
  max-width: 240px;
  height: 6px;
  background: rgba(17, 27, 69, 0.06);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.philosophy-progress-bar-new {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Responsiveness */
@media (max-width: 992px) {
  .phi-slide-card {
    width: 600px;
    padding: 40px 30px;
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .phi-slide-card {
    width: 480px;
    padding: 35px 25px;
    min-height: 360px;
  }
  .philosophy-section {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .phi-slide-card {
    width: 290px;
    padding: 30px 20px;
    min-height: 380px;
    opacity: 0.95;
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(17, 27, 69, 0.05);
  }
  
  .phi-slide-card.active {
    border-color: rgba(0, 182, 82, 0.15);
  }
  
  .carousel-track {
    gap: 15px;
  }
  
  .philosophy-header-wrapper {
    margin-bottom: 40px;
  }
}

/* ================================================
   SQUARE SERVICE CARDS REDESIGN
   ================================================ */
.service-card.square-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  min-height: 560px; /* Solid min-height to maintain square proportions on desktop */
}

.service-card.square-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-card.square-card .card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.service-card.square-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.square-card:hover .card-img {
  transform: scale(1.06);
}

.service-card.square-card .card-content-wrap {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  justify-content: space-between;
}

.service-card.square-card .sc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card.square-card .sc-icon {
  margin-bottom: 0;
  width: 32px;
  height: 32px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card.square-card .sc-icon svg {
  width: 24px;
  height: 24px;
}

.service-card.square-card h3 {
  margin: 0 !important;
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary) !important;
  line-height: 1.2;
}

.service-card.square-card p.card-desc-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.service-card.square-card ul.card-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  padding-top: 12px;
}

.service-card.square-card ul.card-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.service-card.square-card ul.card-features-list li span.chk-icon {
  color: var(--primary);
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .service-card.square-card .card-img-wrap {
    height: 180px;
  }
  .service-card.square-card .card-content-wrap {
    padding: 20px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .service-card.square-card ul.card-features-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Detailed Information Section */
.detailed-info-section {
  padding: 90px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.detailed-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.detailed-info-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.detailed-info-text h2,
.detailed-info-text h3 {
  font-family: var(--ff-serif);
  color: var(--navy);
  margin-top: 0;
}

.detailed-info-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 24px;
}

.detailed-info-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.35;
  margin-bottom: 18px;
}

.detailed-info-text p {
  margin-bottom: 20px;
}

.detailed-info-text p:last-child {
  margin-bottom: 0;
}

.detailed-info-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.detailed-info-card h3 {
  font-family: var(--ff-serif);
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 12px;
}

.detailed-info-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.detailed-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detailed-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.detailed-info-card li .check-icon {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -2px;
}

@media (max-width: 992px) {
  .detailed-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================================
   FLOATING DOWNLOAD BROCHURE BUTTON
   ================================================ */
.brochure-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 20px rgba(0, 182, 82, 0.25);
  z-index: 1002;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brochure-float span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.brochure-float svg {
  display: block;
}

.brochure-float:hover {
  background-color: var(--primary-dark);
  transform: translateY(-50%) translateX(-4px);
  box-shadow: 0 6px 24px rgba(0, 182, 82, 0.45);
  color: var(--white);
}

@media (max-width: 768px) {
  .brochure-float {
    padding: 16px 8px;
    font-size: 0.68rem;
    gap: 8px;
  }
}