/* =================================================================== */
/* CSS VARIABLES & GLOBAL RESET                                        */
/* =================================================================== */
:root {
  --navy: #0a2e54;
  --navy-light: #0d3a6b;
  --navy-dark: #071e38;
  --gold: #ffc107;
  --gold-light: #ffd54f;
  --gold-dark: #e6a800;
  --white: #ffffff;
  --off-white: #fafaf8;
  --cream: #f5f0e8;
  --light-bg: #f8f6f2;
  --mid-gray: #e8e4de;
  --text-dark: #0a0f1e;
  --text-mid: #3d3d4e;
  --text-muted: #7a7a8c;
  --border: rgba(10, 46, 84, 0.12);

  --font-display: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(10, 46, 84, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 46, 84, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 46, 84, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-dark);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background-color: var(--gold);
  color: var(--navy);
}
::-moz-selection {
  background-color: var(--gold);
  color: var(--navy);
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: var(--font-body);
}

/* Utility */
.section-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: center;
}
.section-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
  max-width: 120px;
}
.section-label-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.section-rule-dark {
  flex: 1;
  height: 1px;
  background: rgba(10, 46, 84, 0.15);
  max-width: 80px;
}

/* =================================================================== */
/* SMART STICKY HEADER                                                  */
/* =================================================================== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease;
  will-change: transform;
}
.sticky-header.header-hidden {
  transform: translateY(-100%);
}
.sticky-header.scrolled {
  box-shadow: 0 4px 30px rgba(10, 46, 84, 0.25);
}

/* --- Top Bar --- */
.top-bar {
  background-color: #ffc107;
  color: #0a2e54;
  padding: 9px 0;
  font-size: 12.5px;
  position: relative;
  z-index: 70;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    padding 0.35s ease;
  max-height: 55px;
  overflow: hidden;
}
.sticky-header.compact .top-bar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .top-bar-content {
    padding: 0 48px;
  }
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .contact-info {
    gap: 28px;
    flex-wrap: nowrap;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
}
@media (min-width: 768px) {
  .contact-item {
    gap: 8px;
    font-size: 12px;
  }
}

.contact-icon {
  color: #0a2e54;
  font-size: 12px;
}
@media (min-width: 768px) {
  .contact-icon {
    font-size: 13px;
  }
}

.social-container {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .social-container {
    gap: 8px;
  }
}

.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0a2e54;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  color: white;
  font-size: 9px;
}
@media (min-width: 768px) {
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}
.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  border-color: var(--gold);
}

/* --- Main Nav --- */
nav {
  position: relative;
  z-index: 65;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 480px) {
  nav {
    height: 72px;
  }
}
@media (min-width: 768px) {
  nav {
    height: 96px;
  }
}
@media (min-width: 1024px) {
  nav {
    height: 112px;
  }
}

/* Logo Section */
.logo-section {
  background-color: var(--white);
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 60px;
  height: 100%;
  position: relative;
  z-index: 30;
  flex-shrink: 0;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
}
@media (min-width: 768px) {
  .logo-section {
    padding-left: 32px;
    padding-right: 90px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .logo-container {
    gap: 10px;
  }
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(10, 46, 84, 0.35);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .logo-icon {
    width: 46px;
    height: 46px;
  }
}
@media (min-width: 1024px) {
  .logo-icon {
    width: 52px;
    height: 52px;
  }
}

.logo-icon i {
  color: var(--gold);
  font-size: 16px;
}
@media (min-width: 768px) {
  .logo-icon i {
    font-size: 18px;
  }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}
@media (min-width: 768px) {
  .logo-text {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .logo-text {
    font-size: 30px;
  }
}
.logo-text span {
  color: var(--gold);
}

/* Menu Section */
.menu-section {
  flex-grow: 1;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-left: -20px;
  height: 100%;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .menu-section {
    padding: 0 16px;
    margin-left: -24px;
  }
}
@media (min-width: 1024px) {
  .menu-section {
    margin-left: -60px;
  }
}

.desktop-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 44px;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .desktop-menu {
    display: flex;
  }
}

.desktop-menu li a {
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.3s,
    border-color 0.3s,
    transform 0.3s;
  display: inline-block;
}
.desktop-menu li a:hover,
.desktop-menu li.active a {
  color: var(--gold);
  border-bottom-color: var(--gold);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  color: white;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .hamburger {
    padding: 10px;
    font-size: 22px;
  }
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Phone Section */
.phone-section {
  background-color: var(--white);
  display: none;
  align-items: center;
  padding-left: 40px;
  padding-right: 20px;
  margin-left: -32px;
  height: 100%;
  position: relative;
  z-index: 30;
  flex-shrink: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (min-width: 768px) {
  .phone-section {
    display: flex;
    padding-left: 48px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .phone-section {
    padding-left: 60px;
    padding-right: 48px;
  }
}

.phone-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .phone-container {
    gap: 14px;
  }
}

.phone-icon {
  width: 44px;
  height: 44px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(255, 193, 7, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .phone-icon {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1024px) {
  .phone-icon {
    width: 56px;
    height: 56px;
  }
}
.phone-icon:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.55);
}
.phone-icon i {
  font-size: 16px;
}
@media (min-width: 768px) {
  .phone-icon i {
    font-size: 18px;
  }
}

.phone-text {
  display: flex;
  flex-direction: column;
}
.phone-label {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (min-width: 768px) {
  .phone-label {
    font-size: 10px;
  }
}
.phone-number {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .phone-number {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .phone-number {
    font-size: 20px;
  }
}

/* Mobile nav overrides */
@media (max-width: 1023px) {
  nav {
    align-items: center;
    background: white;
    box-shadow: 0 1px 4px rgba(10, 46, 84, 0.1);
  }
  .phone-section {
    display: none;
  }
  .logo-section {
    clip-path: none;
    padding-right: 12px;
    flex-grow: 1;
  }
  .menu-section {
    clip-path: none;
    margin-left: 0;
    background: transparent;
    flex-grow: 0;
    padding: 0 8px;
  }
  .hamburger {
    color: var(--navy);
    background: rgba(10, 46, 84, 0.06);
    border-color: rgba(10, 46, 84, 0.12);
  }
}
@media (max-width: 639px) {
  .top-bar-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 12px;
  }
  .contact-info {
    gap: 8px;
  }
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none;
  }
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}
@media (min-width: 768px) {
  .mobile-menu-content {
    padding: 32px;
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .mobile-menu-header {
    margin-bottom: 48px;
  }
}

.mobile-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
}
@media (min-width: 768px) {
  .mobile-logo-text {
    font-size: 24px;
  }
}
.mobile-logo-text span {
  color: var(--gold);
}

.close-menu-btn {
  color: var(--gold);
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .close-menu-btn {
    font-size: 20px;
    width: 44px;
    height: 44px;
  }
}
.close-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .mobile-menu-list {
    gap: 4px;
    margin-top: 16px;
  }
}

.mobile-menu-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.3s,
    padding-left 0.3s;
}
@media (min-width: 768px) {
  .mobile-menu-list li a {
    font-size: 22px;
    padding: 16px 0;
  }
}
.mobile-menu-list li a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.mobile-menu-list li a i {
  font-size: 12px;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .mobile-menu-list li a i {
    font-size: 14px;
  }
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .mobile-menu-footer {
    padding-top: 32px;
  }
}

.mobile-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .mobile-phone-row {
    gap: 14px;
  }
}

.mobile-phone-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 193, 7, 0.4);
}
@media (min-width: 768px) {
  .mobile-phone-icon {
    width: 52px;
    height: 52px;
  }
}
.mobile-phone-icon i {
  font-size: 18px;
}
@media (min-width: 768px) {
  .mobile-phone-icon i {
    font-size: 20px;
  }
}

.mobile-phone-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (min-width: 768px) {
  .mobile-phone-label {
    font-size: 10px;
  }
}

.mobile-phone-number {
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .mobile-phone-number {
    font-size: 20px;
  }
}

.mobile-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .mobile-socials {
    gap: 10px;
    margin-top: 24px;
  }
}

.mobile-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .mobile-socials a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
.mobile-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =================================================================== */
/* HERO SECTION — IMAGE COMPARISON SLIDER                              */
/* =================================================================== */
.hero-section-wrapper {
  display: block;
}
.app-wrapper {
  background-color: var(--navy-dark);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEY FIX: Header ke neeche jaane se rokne ke liye padding-top add kiya
   Formula: top-bar (~37px) + nav height = total header height
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-section-wrapper {
  padding-top: 100px; /* mobile: top-bar(~36px) + nav(64px) */
}
@media (min-width: 480px) {
  .hero-section-wrapper {
    padding-top: 108px;
  }
} /* 36 + 72  */
@media (min-width: 768px) {
  .hero-section-wrapper {
    padding-top: 133px;
  }
} /* 37 + 96  */
@media (min-width: 1024px) {
  .hero-section-wrapper {
    padding-top: 149px;
  }
} /* 37 + 112 */

/* Jab header compact ho (top-bar collapse ho) toh adjust karo */
.sticky-header.compact ~ * .hero-section-wrapper,
.sticky-header.compact + .hero-section-wrapper {
  padding-top: 64px;
}
@media (min-width: 480px) {
  .sticky-header.compact + .hero-section-wrapper {
    padding-top: 72px;
  }
}
@media (min-width: 768px) {
  .sticky-header.compact + .hero-section-wrapper {
    padding-top: 96px;
  }
}
@media (min-width: 1024px) {
  .sticky-header.compact + .hero-section-wrapper {
    padding-top: 112px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 280px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: crosshair;
}
@media (min-width: 480px) {
  .hero-section {
    height: 55vh;
    min-height: 320px;
  }
}
@media (min-width: 640px) {
  .hero-section {
    height: 60vh;
  }
}
@media (min-width: 1024px) {
  .hero-section {
    height: 100vh;
  }
}

.hero-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  z-index: 50;
}

/* ── BASE & TOP LAYERS ─────────────────────────────────────────────── */
.base-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.layer-image {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  user-select: none;
  pointer-events: none;
}

.top-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── SLIDER LINE & HANDLE ──────────────────────────────────────────── */
.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--gold),
    var(--white),
    var(--gold)
  );
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
  z-index: 20;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(10, 46, 84, 0.3);
  border: 3px solid var(--gold);
  color: var(--navy);
  transition: transform 150ms;
  transform: translate(-50%, -50%) scale(1);
}
@media (min-width: 768px) {
  .slider-handle {
    width: 52px;
    height: 52px;
  }
}
.slider-handle.active {
  transform: translate(-50%, -50%) scale(0.9);
}

/* ── OVERLAY TEXT ──────────────────────────────────────────────────── */
.hero-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 4%;
  z-index: 40;
  max-width: 90%;
}
@media (min-width: 480px) {
  .hero-overlay-text {
    bottom: 30px;
    max-width: 85%;
  }
}
@media (min-width: 640px) {
  .hero-overlay-text {
    bottom: 50px;
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .hero-overlay-text {
    bottom: 80px;
    left: 5%;
    max-width: 600px;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero-main-title {
    margin-bottom: 16px;
  }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .hero-sub {
    margin-bottom: 28px;
  }
}

.hero-cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .hero-cta-group {
    gap: 14px;
  }
}

.hero-cta-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(255, 193, 7, 0.4);
}
@media (min-width: 768px) {
  .hero-cta-primary {
    font-size: 12px;
    padding: 14px 28px;
  }
}
.hero-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 193, 7, 0.5);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    background 0.3s,
    border-color 0.3s;
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .hero-cta-secondary {
    font-size: 12px;
    padding: 14px 28px;
  }
}
.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold);
  color: var(--gold);
}

/* =================================================================== */
/* ABOUT SECTION                                                       */
/* =================================================================== */
.about-section-wrapper .main-container {
  min-height: auto;
  background-color: var(--light-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 40px 1rem 40px;
}

@media (min-width: 480px) {
  .about-section-wrapper .main-container {
    padding: 50px 1.5rem 50px;
  }
}
@media (min-width: 768px) {
  .about-section-wrapper .main-container {
    min-height: 100vh;
    padding: 80px 1.5rem 60px;
  }
}
@media (min-width: 1024px) {
  .about-section-wrapper .main-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.about-section-wrapper .noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 100px 100px;
  opacity: 0.04;
  pointer-events: none;
}
.about-section-wrapper .content-wrapper {
  max-width: 1400px;
  margin: auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Row Fix: Added larger gap dynamically to prevent vertical collapsing / overlap */
.about-section-wrapper .main-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem; /* Increase gap safely holding row stacking on mobile */
}

@media (min-width: 768px) {
  .about-section-wrapper .main-row {
    gap: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .about-section-wrapper .main-row {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }
}

/* Shared Control Over All Columns For Mobile/Tablets ensuring central clean look instead of ultra-wides */
@media (max-width: 1023px) {
  .about-section-wrapper .left-column,
  .about-section-wrapper .center-column,
  .about-section-wrapper .right-column {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================ */
/* LEFT COLUMN                  */
/* ============================ */
.about-section-wrapper .left-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding-top: 0;
}
@media (min-width: 768px) {
  .about-section-wrapper .left-column {
    gap: 1.4rem;
    padding-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .about-section-wrapper .left-column {
    width: 34%;
    max-width: none;
    margin: 0;
  }
}

.about-section-wrapper .who-we-are-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}
.about-section-wrapper .main-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.about-section-wrapper .description-text {
  font-family: var(--font-body);
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.7;
  max-width: 28rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .about-section-wrapper .description-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

.about-section-wrapper .divider {
  border-top: 1px solid var(--mid-gray);
  width: 100%;
}
.about-section-wrapper .features-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-section-wrapper .feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.about-section-wrapper .feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .about-section-wrapper .feature-icon-circle {
    width: 52px;
    height: 52px;
  }
}
.about-section-wrapper .feature-icon-circle.yellow {
  background-color: var(--gold);
}
.about-section-wrapper .feature-icon-circle.navy {
  background-color: var(--navy);
}

.about-section-wrapper .feature-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-section-wrapper .feature-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.about-section-wrapper .feature-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}
.about-section-wrapper .feature-divider {
  border-top: 1px solid var(--mid-gray);
  width: 100%;
}

/* ============================ */
/* CENTER COLUMN (Fixing Collapse Box Model Rules)*/
/* ============================ */
.about-section-wrapper .center-column {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 290px; /* Forces vertical spacing internally on mobiles */
}
@media (min-width: 640px) {
  .about-section-wrapper .center-column {
    min-height: 380px;
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .about-section-wrapper .center-column {
    min-height: 440px;
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-section-wrapper .center-column {
    width: 32%;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    min-height: auto;
  }
}

.about-section-wrapper .yellow-square {
  position: absolute;
  width: 190px;
  height: 250px;
  border: 4px solid var(--navy);
  background-color: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 1rem;
  border-radius: 4px;
  z-index: 0;
}
@media (min-width: 640px) {
  .about-section-wrapper .yellow-square {
    width: 260px;
    height: 340px;
    margin-left: 2rem;
  }
}
@media (min-width: 768px) {
  .about-section-wrapper .yellow-square {
    width: 300px;
    height: 390px;
  }
}

.about-section-wrapper .main-image {
  position: relative;
  z-index: 10;
  width: 210px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) {
  .about-section-wrapper .main-image {
    width: 290px;
  }
}
@media (min-width: 768px) {
  .about-section-wrapper .main-image {
    width: 340px;
  }
}

/* Reorganized positions internally for absolute badging safe behavior*/
.about-section-wrapper .center-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--gold);
  transform: translate(15%, 20%);
}
@media (max-width: 380px) {
  /* Ensures tight layout for smallest iPhones*/
  .about-section-wrapper .center-badge {
    right: 10%;
    transform: translate(0, 15%);
  }
}
@media (min-width: 640px) {
  .about-section-wrapper .center-badge {
    padding: 12px 20px;
    bottom: 5%;
    right: -20px;
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  .about-section-wrapper .center-badge {
    bottom: -10px;
    right: auto;
    left: 0px;
    transform: translateX(20px);
  }
}

.center-badge-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
@media (min-width: 768px) {
  .center-badge-num {
    font-size: 1.5rem;
  }
}
.center-badge-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
@media (min-width: 768px) {
  .center-badge-label {
    font-size: 10px;
  }
}

/* ============================ */
/* RIGHT COLUMN                 */
/* ============================ */
.about-section-wrapper .right-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding-top: 0;
}
@media (min-width: 768px) {
  .about-section-wrapper .right-column {
    gap: 1.4rem;
    padding-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .about-section-wrapper .right-column {
    width: 30%;
    max-width: none;
    margin: 0;
  }
}

.about-section-wrapper .small-image-container {
  width: 100%;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .about-section-wrapper .small-image-container {
    height: 160px;
  }
}
@media (min-width: 1024px) {
  .about-section-wrapper .small-image-container {
    height: 140px;
  }
}

.about-section-wrapper .small-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-section-wrapper .small-image-container:hover img {
  transform: scale(1.04);
}

.about-section-wrapper .small-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 46, 84, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
@media (min-width: 768px) {
  .about-section-wrapper .small-image-overlay {
    padding: 12px;
  }
}
.about-section-wrapper .small-image-overlay span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (min-width: 768px) {
  .about-section-wrapper .small-image-overlay span {
    font-size: 11px;
  }
}

.about-section-wrapper .stats-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.about-section-wrapper .stat-item {
  width: 100%;
}

.about-section-wrapper .stat-label-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--navy);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .about-section-wrapper .stat-label-row {
    font-size: 0.78rem;
  }
}

.stat-num {
  color: var(--gold);
  font-weight: 800;
}
.about-section-wrapper .stat-bar-bg {
  width: 100%;
  height: 6px;
  background-color: var(--mid-gray);
  border-radius: 999px;
  overflow: hidden;
}
.about-section-wrapper .stat-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section-wrapper .stat-bar-fill.gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.about-section-wrapper .stat-bar-fill.navy {
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
}
.about-section-wrapper .stat-bar-fill.dark {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
}

.about-section-wrapper .right-subtext {
  font-family: var(--font-body);
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.65;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .about-section-wrapper .right-subtext {
    line-height: 1.7;
  }
}

.about-section-wrapper .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .about-section-wrapper .about-btn {
    font-size: 12px;
    padding: 14px 24px;
    gap: 12px;
  }
}
.about-section-wrapper .about-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.about-section-wrapper .about-btn .arrow-circle {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
@media (min-width: 768px) {
  .about-section-wrapper .about-btn .arrow-circle {
    width: 28px;
    height: 28px;
  }
}
.about-section-wrapper .about-btn:hover .arrow-circle {
  background: var(--navy);
  color: var(--gold);
}

/* ============================ */
/* BOTTOM BANNER (Mobile wrapping beautifully without breakage) */
/* ============================ */
.about-section-wrapper .bottom-banner {
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--gold);
}
@media (max-width: 767px) {
  /* Responsive wrapper spacing logic ensuring neatly formatted square items in narrow grids */
  .about-section-wrapper .bottom-banner {
    justify-content: space-evenly;
    gap: 30px 20px;
  }
}

@media (min-width: 480px) {
  .about-section-wrapper .bottom-banner {
    padding: 30px 24px;
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .about-section-wrapper .bottom-banner {
    flex-wrap: nowrap;
    padding: 32px 40px;
    margin-top: 60px;
    gap: 24px;
  }
}

.banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
@media (max-width: 767px) {
  .banner-item {
    width: calc(40% - 10px);
    min-width: 100px;
  } /* Ensures items lock nicely on wrap rather than collapsing sizes */
}
@media (min-width: 768px) {
  .banner-item {
    gap: 4px;
  }
}

.banner-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
@media (min-width: 768px) {
  .banner-num {
    font-size: 2.2rem;
  }
}

.banner-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (min-width: 768px) {
  .banner-label {
    font-size: 10px;
    letter-spacing: 0.15em;
  }
}

.banner-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}
@media (min-width: 480px) {
  .banner-divider {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .banner-divider {
    display: none;
  }
} /* Safe removed for tidy wrapping! */

/* =================================================================== */
/* SERVICE CARDS SECTION                                               */
/* =================================================================== */
.scw-wrapper {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d2f52 100%);
  color: var(--white);
  padding: 60px 0 40px;
}
@media (min-width: 480px) {
  .scw-wrapper {
    padding: 70px 0 50px;
  }
}
@media (min-width: 768px) {
  .scw-wrapper {
    padding: 80px 0 60px;
  }
}
@media (min-width: 1024px) {
  .scw-wrapper {
    padding: 0px 0 0px;
  }
}

.scw-container {
  max-width: 1400px;
  margin: auto;
  padding: 12px;
}
@media (min-width: 480px) {
  .scw-container {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .scw-container {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .scw-container {
    padding: 64px;
  }
}

.scw-header-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}
@media (min-width: 480px) {
  .scw-header-section {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .scw-header-section {
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .scw-header-section {
    flex-direction: row;
    align-items: flex-end;
    gap: 24px;
  }
}

.scw-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .scw-header-left {
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
  }
}

.scw-star-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .scw-star-label {
    gap: 10px;
    font-size: 11px;
  }
}
.scw-star-label span {
  color: rgba(255, 255, 255, 0.6);
}

.scw-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: none;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
}

.scw-btn-services {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .scw-btn-services {
    font-size: 12px;
    padding: 12px 24px;
  }
}
.scw-btn-services:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 193, 7, 0.05);
}

.scw-btn-icon {
  margin-left: 8px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 10px;
}
@media (min-width: 768px) {
  .scw-btn-icon {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}
.scw-btn-services:hover .scw-btn-icon {
  transform: translateX(3px);
}

.scw-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .scw-cards-grid {
    gap: 18px;
  }
}
@media (min-width: 768px) {
  .scw-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .scw-cards-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

.scw-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
}
@media (min-width: 480px) {
  .scw-card {
    padding: 28px;
  }
}
@media (min-width: 768px) {
  .scw-card {
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .scw-card {
    padding: 40px;
  }
}
.scw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.scw-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.scw-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.scw-card-gold {
  background: var(--gold);
  border: none;
}
.scw-card-navy {
  background: rgba(10, 46, 84, 0.6);
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.scw-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 10px;
}
@media (min-width: 768px) {
  .scw-card-header {
    margin-bottom: 20px;
    gap: 12px;
  }
}
.scw-header-bottom {
  margin-bottom: 0 !important;
  margin-top: auto;
}

.scw-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.scw-title-navy {
  color: var(--navy) !important;
}

.scw-card-arrow {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
@media (min-width: 768px) {
  .scw-card-arrow {
    width: 44px;
    height: 44px;
  }
}
.scw-arrow-navy {
  background: var(--navy) !important;
  color: var(--gold) !important;
}
.scw-card:hover .scw-card-arrow {
  transform: scale(1.1) rotate(45deg);
}
.scw-card-arrow svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .scw-card-arrow svg {
    width: 20px;
    height: 20px;
  }
}

.scw-card-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
}
@media (min-width: 768px) {
  .scw-card-text {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
}
.scw-text-navy {
  color: var(--navy) !important;
}

.scw-card-image-wrap,
.scw-card-image-wrap-top {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.scw-card-image-wrap-top {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .scw-card-image-wrap-top {
    margin-bottom: 24px;
  }
}
.scw-card-image-wrap {
  margin-top: auto;
}
.scw-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(60%);
  transition:
    filter 0.5s,
    transform 0.5s;
  display: block;
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) {
  .scw-card-image {
    height: 180px;
  }
}
.scw-card:hover .scw-card-image {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* =================================================================== */
/* SERVICE ACCORDION (STICKY SCROLL)                                   */
/* =================================================================== */
.sacc-service {
  position: relative;
  background: #0a2e54;
}

.sacc-sticky-text-layer {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
  overflow: hidden;
}
.sacc-sticky-text-layer h1 {
  font-family: "Playfair Display", serif;
  font-size: 20vw;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.05em;
  white-space: nowrap;
  margin: 0;
  transform-origin: center;
}

.sacc-hero-section {
  margin-top: -100vh;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
}
@media (min-width: 480px) {
  .sacc-hero-section {
    padding: 1.8rem;
  }
}
@media (min-width: 768px) {
  .sacc-hero-section {
    padding: 3rem;
  }
}

.sacc-hero-columns {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0a2e54;
  row-gap: 0.8rem;
}
@media (min-width: 480px) {
  .sacc-hero-columns {
    font-size: 0.95rem;
    row-gap: 0.9rem;
  }
}
@media (min-width: 768px) {
  .sacc-hero-columns {
    flex-direction: row;
    row-gap: 0;
    font-size: 1rem;
  }
}

.sacc-hero-col {
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .sacc-hero-col {
    width: 33.333333%;
  }
  .sacc-text-center {
    text-align: center;
  }
  .sacc-text-right {
    text-align: right;
  }
}

.sacc-text-muted {
  color: #9ca3af;
}
.sacc-dblock {
  display: block;
  color: #0a2e54;
}

.sacc-hero-scroll-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding-bottom: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  animation: sacc-pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@media (min-width: 480px) {
  .sacc-hero-scroll-prompt {
    gap: 7px;
    font-size: 0.75rem;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .sacc-hero-scroll-prompt {
    gap: 8px;
    font-size: 0.78rem;
    padding-bottom: 3rem;
  }
}

@keyframes sacc-pulse-anim {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.4;
    transform: translateY(5px);
  }
}

.sacc-dark-spacer {
  height: 80vh;
  width: 100%;
  background-color: #0a2e54;
  position: relative;
  z-index: 10;
}

.sacc-stacked-cards-section {
  width: 100%;
  position: relative;
  z-index: 20;
  background-color: #0a2e54;
  padding-top: 8vh;
  padding-bottom: 20vh;
}
@media (min-width: 768px) {
  .sacc-stacked-cards-section {
    padding-top: 10vh;
    padding-bottom: 30vh;
  }
}

.sacc-stacked-cards-inner {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.8rem;
}
@media (min-width: 480px) {
  .sacc-stacked-cards-inner {
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .sacc-stacked-cards-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .sacc-stacked-cards-inner {
    padding: 0 2rem;
  }
}

.sacc-service-card-stack {
  position: sticky;
  width: 100%;
  overflow: hidden;
  transform-origin: top;
  background-color: #0a2e54;
  border-top: 1px solid rgba(255, 193, 7, 0.18);
  transition: all 700ms ease;
  min-height: auto;
}

.sacc-title-row {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  background-color: #0a2e54;
  position: relative;
  z-index: 10;
  padding-top: 0.8rem;
}
@media (min-width: 480px) {
  .sacc-title-row {
    padding-top: 0.9rem;
  }
}
@media (min-width: 768px) {
  .sacc-title-row {
    padding-top: 0;
  }
}

.sacc-service-id {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  width: 40px;
  flex-shrink: 0;
  transition: color 700ms ease;
  color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 480px) {
  .sacc-service-id {
    font-size: 1.1rem;
    width: 50px;
  }
}
@media (min-width: 768px) {
  .sacc-service-id {
    font-size: 1.875rem;
    width: 80px;
  }
}
.sacc-title-row:hover .sacc-service-id {
  color: rgba(255, 193, 7, 0.5);
}
.sacc-title-row.sacc-active .sacc-service-id {
  color: #ffc107;
}

.sacc-service-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  transform-origin: left;
  transition:
    color 700ms ease,
    transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  color: rgba(255, 255, 255, 0.22);
  transform: scale(0.85);
  font-size: 1.5rem;
  line-height: 1.5rem;
}
@media (min-width: 480px) {
  .sacc-service-title {
    font-size: 1.75rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .sacc-service-title {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.sacc-title-row:hover .sacc-service-title {
  color: rgba(255, 255, 255, 0.55);
}
.sacc-title-row.sacc-active .sacc-service-title {
  color: #ffc107;
  transform: scale(1);
}

.sacc-content-wrapper {
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  background-color: #0a2e54;
}
@media (min-width: 480px) {
  .sacc-content-wrapper {
    padding-bottom: 1.2rem;
  }
}
@media (min-width: 768px) {
  .sacc-content-wrapper {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }
}

.sacc-content-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  transition:
    opacity 0.8s cubic-bezier(0.76, 0, 0.24, 1),
    transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  opacity: 0.1;
  transform: translateY(20px);
}
@media (min-width: 480px) {
  .sacc-content-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .sacc-content-grid {
    flex-direction: row;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .sacc-content-grid {
    gap: 4rem;
  }
}
.sacc-service-card-stack.sacc-active .sacc-content-grid {
  opacity: 1;
  transform: translateY(0);
}

.sacc-text-content {
  flex: 1;
  width: 100%;
  max-width: 48rem;
}
@media (min-width: 768px) {
  .sacc-text-content {
    padding-left: 60px;
  }
}

.sacc-description {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  padding-right: 0.5rem;
}
@media (min-width: 480px) {
  .sacc-description {
    font-size: 1rem;
    margin-bottom: 1.8rem;
    padding-right: 0.8rem;
  }
}
@media (min-width: 768px) {
  .sacc-description {
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 2rem;
    padding-right: 1rem;
  }
}

.sacc-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffc107;
  border-bottom: 1px solid rgba(255, 193, 7, 0.4);
  padding-bottom: 0.2rem;
  margin-bottom: 1.5rem;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
@media (min-width: 480px) {
  .sacc-explore-link {
    font-size: 0.78rem;
    margin-bottom: 1.8rem;
  }
}
@media (min-width: 768px) {
  .sacc-explore-link {
    font-size: 0.82rem;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
    margin-bottom: 2rem;
  }
}
.sacc-explore-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
@media (min-width: 480px) {
  .sacc-explore-link svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}
@media (min-width: 768px) {
  .sacc-explore-link svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.sacc-explore-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.sacc-explore-link:hover svg {
  transform: translateY(-0.125rem) translateX(0.125rem);
}

.sacc-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
@media (min-width: 480px) {
  .sacc-tags-container {
    gap: 0.6rem;
  }
}
@media (min-width: 768px) {
  .sacc-tags-container {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .sacc-tags-container {
    gap: 1.25rem;
  }
}

.sacc-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 193, 7, 0.3);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
@media (min-width: 480px) {
  .sacc-tag {
    font-size: 0.75rem;
    padding: 0.55rem 1.1rem;
  }
}
@media (min-width: 768px) {
  .sacc-tag {
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
  }
}
.sacc-tag:hover {
  background-color: #ffc107;
  color: #0a2e54;
  border-color: #ffc107;
}

.sacc-image-content {
  flex-shrink: 0;
  padding-top: 0;
  width: 100%;
  max-width: 600px;
}
@media (min-width: 768px) {
  .sacc-image-content {
    width: 45%;
    padding-top: 0.5rem;
    max-width: 700px;
    margin-left: auto;
  }
}
@media (min-width: 1280px) {
  .sacc-image-content {
    width: 40%;
  }
}

.sacc-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #071e38;
  border: 1px solid rgba(255, 193, 7, 0.18);
  filter: grayscale(80%);
  transition:
    filter 700ms ease,
    border-color 400ms ease,
    box-shadow 400ms ease;
  cursor: pointer;
}
.sacc-image-wrapper:hover {
  filter: grayscale(0%);
  border-color: #ffc107;
  box-shadow: 0 0 36px rgba(255, 193, 7, 0.16);
}
.sacc-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(5, 15, 30, 0.4);
  transition: transform 700ms ease;
}
.sacc-image-wrapper:hover img {
  transform: scale(1.05);
}

#sacc-services-h1 {
  font-family: "Playfair Display", serif;
  text-shadow: 0 0 120px rgba(255, 193, 7, 0.15);
}

/* =================================================================== */
/* EXPANDING VIDEO SECTION  ★ FIXED ★                                 */
/* =================================================================== */
.expanding-video-wrapper {
  background: var(--off-white);
  font-family: var(--font-body);
}

/* ── Scroll Container Height ──────────────────────────────────────── */
/* Mobile: less scroll so animation completes quicker                  */
.expanding-video-wrapper .scroll-container {
  height: 170vh;
  position: relative;
}
@media (min-width: 480px) {
  /* Tablet */
  .expanding-video-wrapper .scroll-container {
    height: 210vh;
  }
}
@media (min-width: 768px) {
  /* Desktop */
  .expanding-video-wrapper .scroll-container {
    height: 300vh;
  }
}

/* ── Sticky Viewport ──────────────────────────────────────────────── */
/* KEY FIX: padding-top on mobile pushes content off-dead-centre so   */
/* the text fills a "defined zone" instead of floating in void space. */
.expanding-video-wrapper .sticky-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Vertical padding keeps content away from header & bottom edge,
     making the visible zone feel intentional, not accidental.        */
}
@media (min-width: 480px) {
  .expanding-video-wrapper .sticky-viewport {
    padding: 8vh 0 5vh;
  }
}
@media (min-width: 768px) {
  .expanding-video-wrapper .sticky-viewport {
    padding: 0;
  }
}

/* ── Text Wrapper ─────────────────────────────────────────────────── */
.expanding-video-wrapper .text-wrapper {
  position: relative;
  width: 100%;
  /* flex-grow fills remaining space so text spreads rather than piles */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* space-evenly spreads the three rows + video within the zone      */
  justify-content: space-evenly;
  gap: 0;
}
@media (min-width: 768px) {
  /* Desktop: revert to tight center-packed layout (design intent)    */
  .expanding-video-wrapper .text-wrapper {
    flex: none;
    justify-content: center;
    gap: 0;
  }
}

/* ── Line: BUILDING ──────────────────────────────────────────────── */
.expanding-video-wrapper .line-building {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20;
  padding-bottom: 0;
  white-space: nowrap;
}
.expanding-video-wrapper .line-building h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0;
  /* Mobile: vw scales with viewport width so text fills the line     */
  font-size: clamp(2.8rem, 17vw, 11rem);
}
@media (min-width: 480px) {
  .expanding-video-wrapper .line-building h1 {
    font-size: clamp(3rem, 16vw, 11rem);
  }
}
@media (min-width: 768px) {
  .expanding-video-wrapper .line-building h1 {
    font-size: clamp(3.5rem, 12vw, 11rem);
  }
}

/* ── Line: DIGITAL [video] SUCCESS ───────────────────────────────── */
.expanding-video-wrapper .line-middle {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  z-index: 30;
  white-space: nowrap;
  padding-bottom: 0;
}
@media (min-width: 480px) {
  .expanding-video-wrapper .line-middle {
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .expanding-video-wrapper .line-middle {
    gap: 1rem;
  }
}

.expanding-video-wrapper .line-middle h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #ffc107;
  text-transform: uppercase;
  margin: 0;
  /* Mobile: smaller than top/bottom lines to leave room for video     */
  font-size: clamp(1.2rem, 7vw, 10rem);
}
@media (min-width: 480px) {
  .expanding-video-wrapper .line-middle h1 {
    font-size: clamp(1.4rem, 7vw, 10rem);
  }
}
@media (min-width: 768px) {
  .expanding-video-wrapper .line-middle h1 {
    font-size: clamp(1.6rem, 6vw, 10rem);
  }
}

/* ── Video Container ──────────────────────────────────────────────── */
.expanding-video-wrapper .video-container {
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  background: var(--mid-gray);
  border: 1px solid rgba(10, 46, 84, 0.08);
  will-change: width, height, border-radius;
  /* Always visible — never collapses to zero */
  min-width: 2.5rem;
  min-height: 1.2rem;
}
.expanding-video-wrapper .video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.expanding-video-wrapper .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 84, 0.1);
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: all 0.7s ease;
}
.expanding-video-wrapper .video-container:hover .video-overlay {
  background: transparent;
}

/* ── Line: PARTNERSHIPS ───────────────────────────────────────────── */
.expanding-video-wrapper .line-bottom {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20;
  padding-top: 0;
  white-space: nowrap;
}
.expanding-video-wrapper .line-bottom h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(1rem, 5.5vw, 8rem);
}
@media (min-width: 480px) {
  .expanding-video-wrapper .line-bottom h1 {
    font-size: clamp(1.1rem, 5vw, 8rem);
  }
}
@media (min-width: 768px) {
  .expanding-video-wrapper .line-bottom h1 {
    font-size: clamp(1.2rem, 4vw, 8rem);
  }
}

.expanding-video-wrapper .fade-text {
  will-change: opacity;
}

/* =================================================================== */
/* AWARDS / WORKS SECTION                                              */
/* =================================================================== */
#works {
  min-height: auto;
  background: linear-gradient(160deg, var(--cream) 0%, var(--light-bg) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0 40px;
}
@media (min-width: 480px) {
  #works {
    padding: 50px 0 50px;
  }
}
@media (min-width: 768px) {
  #works {
    min-height: 100vh;
    padding: 80px 0 60px;
  }
}

.works-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
  padding: 0 16px;
}
@media (min-width: 480px) {
  .works-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .works-header {
    margin-bottom: 48px;
    padding: 0 24px;
  }
}

.works-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .works-label-row {
    gap: 16px;
    margin-bottom: 20px;
  }
}

.works-label-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .works-label-text {
    font-size: 11px;
  }
}

.works-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

#works .works-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
#works .works-bg-text h1 {
  font-family: var(--font-display);
  font-size: 35vw;
  font-weight: 900;
  color: #0a2e54;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.15rem;
}
@media (min-width: 768px) {
  #works .works-bg-text h1 {
    font-size: 26vw;
  }
}
@media (min-width: 1024px) {
  #works .works-bg-text h1 {
    font-size: 22vw;
  }
}

#works .works-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.8rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 480px) {
  #works .works-container {
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  #works .works-container {
    padding: 0 1.5rem;
  }
}

#works .works-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
@media (min-width: 480px) {
  #works .works-grid {
    gap: 2.2rem;
  }
}
@media (min-width: 768px) {
  #works .works-grid {
    gap: 3.5rem;
  }
}
@media (min-width: 1024px) {
  #works .works-grid {
    gap: 4.5rem;
  }
}

#works .work-card-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}
@media (min-width: 480px) and (max-width: 767px) {
  #works .work-card-wrap {
    width: 88%;
  }
  #works .work-card-wrap.col-1 {
    align-self: flex-start;
  }
  #works .work-card-wrap.col-2 {
    align-self: flex-end;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #works .work-card-wrap {
    width: 60%;
  }
  #works .work-card-wrap.col-1 {
    align-self: flex-start;
  }
  #works .work-card-wrap.col-2 {
    align-self: flex-end;
  }
}
@media (min-width: 1024px) {
  #works .work-card-wrap {
    width: calc(50% - 2rem);
  }
  #works .work-card-wrap.col-1 {
    align-self: flex-start;
  }
  #works .work-card-wrap.col-2 {
    align-self: flex-end;
  }
}
#works .work-card-wrap.is-active {
  z-index: 10;
}

#works .work-card {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(10, 46, 84, 0.08);
  border: 1px solid rgba(10, 46, 84, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
@media (min-width: 480px) {
  #works .work-card {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  #works .work-card {
    padding: 24px;
  }
}
#works .work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(10, 46, 84, 0.14);
}

#works .work-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #works .work-card-header {
    margin-bottom: 12px;
  }
}

#works .work-card-title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

#works .work-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
@media (min-width: 768px) {
  #works .work-icon {
    width: 32px;
    height: 32px;
  }
}
#works .work-icon.light {
  background: rgba(10, 46, 84, 0.06);
  color: var(--navy);
}
#works .work-card:hover .work-icon.light {
  background: var(--gold);
  color: var(--navy);
}

#works .work-tags {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #works .work-tags {
    gap: 6px;
    margin-bottom: 16px;
  }
}

#works .work-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 8px;
  border: 1px solid rgba(10, 46, 84, 0.15);
  border-radius: 3px;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(10, 46, 84, 0.04);
}
@media (min-width: 480px) {
  #works .work-tag {
    font-size: 0.6rem;
    padding: 4px 9px;
  }
}
@media (min-width: 768px) {
  #works .work-tag {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

#works .tag-line-decor {
  flex: 1;
  height: 1px;
  background: rgba(10, 46, 84, 0.1);
  margin-left: 3px;
  position: relative;
  min-width: 0;
}
#works .tag-line-decor::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}
@media (min-width: 768px) {
  #works .tag-line-decor::after {
    width: 4px;
    height: 4px;
  }
}

#works .work-image-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1.45/1;
  background: var(--mid-gray);
}
#works .work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
#works .work-card:hover .work-img {
  transform: scale(1.04);
}

/* =================================================================== */
/* FOOTER                                                              */
/* =================================================================== */
.footer-wrapper {
  background: var(--navy-dark);
}
.footer-wrapper .footer {
  width: 100%;
  max-width: 1500px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 48px 16px 24px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .footer-wrapper .footer {
    padding: 56px 20px 28px;
  }
}
@media (min-width: 768px) {
  .footer-wrapper .footer {
    padding: 72px 24px 32px;
  }
}
@media (min-width: 1024px) {
  .footer-wrapper .footer {
    padding: 80px 80px 40px;
  }
}

.footer-wrapper .footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
  margin-bottom: 40px;
}
@media (min-width: 480px) {
  .footer-wrapper .footer-top {
    gap: 40px 28px;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .footer-wrapper .footer-top {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px 40px;
    margin-bottom: 64px;
  }
  .footer-wrapper .footer-brand {
    grid-column: span 6;
  }
  .footer-wrapper .footer-address {
    grid-column: span 6;
  }
  .footer-wrapper .footer-contact {
    grid-column: span 6;
  }
  .footer-wrapper .footer-quicklinks {
    grid-column: span 6;
  }
}
@media (min-width: 1024px) {
  .footer-wrapper .footer-brand {
    grid-column: span 3;
  }
  .footer-wrapper .footer-address {
    grid-column: span 3;
  }
  .footer-wrapper .footer-contact {
    grid-column: span 3;
  }
  .footer-wrapper .footer-quicklinks {
    grid-column: span 3;
  }
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
@media (min-width: 768px) {
  .footer-logo-text {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.footer-logo-text span {
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .footer-tagline {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
}

.footer-social-inline {
  display: flex;
  gap: 8px;
}
@media (min-width: 768px) {
  .footer-social-inline {
    gap: 10px;
  }
}
.footer-social-inline .social-btn {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .footer-social-inline .social-btn {
    width: 36px;
    height: 36px;
  }
}

.footer-wrapper .footer-col h3 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}
@media (min-width: 768px) {
  .footer-wrapper .footer-col h3 {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.footer-wrapper .footer-address p,
.footer-wrapper .footer-addr-extra {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .footer-wrapper .footer-address p,
  .footer-wrapper .footer-addr-extra {
    font-size: 14px;
    line-height: 1.8;
  }
}
.footer-wrapper .footer-addr-extra {
  margin-top: 6px;
  color: rgba(255, 193, 7, 0.6);
}
@media (min-width: 768px) {
  .footer-wrapper .footer-addr-extra {
    margin-top: 8px;
  }
}

.footer-wrapper .contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .footer-wrapper .contact-row {
    gap: 20px;
  }
}
.footer-wrapper .contact-item span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .footer-wrapper .contact-item span {
    font-size: 10px;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
  }
}
.footer-wrapper .contact-item a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .footer-wrapper .contact-item a {
    font-size: 14px;
  }
}
.footer-wrapper .contact-item a:hover {
  color: var(--gold);
}

.footer-wrapper .quick-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .footer-wrapper .quick-links-wrap {
    gap: 10px;
  }
}
.footer-wrapper .quick-link {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  transition:
    color 0.2s,
    padding-left 0.2s;
  padding-left: 0;
}
@media (min-width: 768px) {
  .footer-wrapper .quick-link {
    font-size: 14px;
  }
}
.footer-wrapper .quick-link:hover {
  color: var(--gold);
  padding-left: 5px;
}
@media (min-width: 768px) {
  .footer-wrapper .quick-link:hover {
    padding-left: 6px;
  }
}

.footer-wrapper .big-text-wrap {
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
}
@media (min-width: 768px) {
  .footer-wrapper .big-text-wrap {
    margin-bottom: 48px;
    padding: 20px 0;
  }
}
.footer-wrapper .big-text-wrap svg {
  width: 100%;
  height: auto;
  fill: #ffc107;
  display: block;
  user-select: none;
}

.footer-wrapper .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-wrapper .footer-bottom {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .footer-wrapper .footer-bottom {
    flex-direction: row;
    gap: 24px;
  }
}

.footer-wrapper .footer-copyright {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .footer-wrapper .footer-copyright {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

.footer-wrapper .footer-divider {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  display: none;
}
@media (min-width: 1024px) {
  .footer-wrapper .footer-divider {
    display: block;
  }
}

.footer-wrapper .footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-wrapper .footer-legal {
    gap: 24px;
  }
}
.footer-wrapper .footer-legal a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer-wrapper .footer-legal a {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}
.footer-wrapper .footer-legal a:hover {
  color: var(--gold);
}

.footer-wrapper .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    color 0.3s;
}
@media (min-width: 768px) {
  .footer-wrapper .social-btn {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }
}
.footer-wrapper .social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

:root {
  --cw-navy: #0a2e54;
  --cw-gold: #ffc107;
}

.cw-demo-section {
  background: var(--cw-navy);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
.cw-demo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cw-demo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cw-gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cw-demo-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.cw-demo-title span {
  color: var(--cw-gold);
}
.cw-demo-text {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 26px;
  max-width: 440px;
}
.cw-demo-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cw-demo-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 14.5px;
}
.cw-demo-points i {
  color: var(--cw-gold);
  font-size: 16px;
}

.cw-demo-form {
  background: #fff;
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.cw-form-heading {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--cw-navy);
  font-size: 24px;
  margin: 0 0 6px;
}
.cw-form-sub {
  font-family: "Montserrat", sans-serif;
  color: #6b7280;
  font-size: 13.5px;
  margin: 0 0 24px;
}
.cw-field {
  margin-bottom: 16px;
}
.cw-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cw-field label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--cw-navy);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.cw-field input,
.cw-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111827;
  padding: 12px 14px;
  border: 1.5px solid #e2e6ec;
  border-radius: 10px;
  background: #f8fafc;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
  outline: none;
}
.cw-field textarea {
  resize: vertical;
  min-height: 96px;
}
.cw-field input:focus,
.cw-field textarea:focus {
  border-color: var(--cw-gold);
  background: #fff;
}
.cw-form-submit {
  width: 100%;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--cw-gold);
  color: var(--cw-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 22px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cw-form-submit:hover {
  background: var(--cw-navy);
  color: var(--cw-gold);
}
.cw-form-note {
  display: none;
  margin-top: 16px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0f7a3d;
}
.cw-form-note.show {
  display: block;
}

@media (max-width: 860px) {
  .cw-demo-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cw-demo-section {
    padding: 64px 20px;
  }
}
@media (max-width: 520px) {
  .cw-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cw-demo-form {
    padding: 30px 22px;
  }
}

.logo-img {
  height: 44px; /* apni logo height ke hisaab se adjust karo */
  width: auto;
  display: block;
}

.footer-logo-img {
  filter: brightness(0) invert(1) !important; /* logo ko white bana dega */
  opacity: 1 !important;
  width: 180px;
}

.mobile-logo-img {
  height: 40px; /* apne logo ke hisaab se adjust karo */
  width: auto;
  display: block;
  filter: brightness(0) invert(1) !important; /* logo ko white bana dega */
}
