@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Premium Light Theme Colors */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #FCFCFD;
  --color-bg-tertiary: #F7F8FA;

  --color-primary-gold: #D4AF37;
  --color-primary-gold-dark: #C89B3C;
  --color-primary-gold-light: #F4D06F;

  --color-text-primary: #111827;
  --color-text-secondary: #6B7280;

  --color-accent-navy: #0B1F3A;
  --color-accent-navy-light: #163057;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-section: 120px;
  --spacing-section-mobile: 80px;

  /* Layout */
  --container-width: 1320px;

  /* Borders & Shadows */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;

  --shadow-sm: 0 4px 12px rgba(17, 24, 39, 0.03);
  --shadow-md: 0 12px 24px rgba(17, 24, 39, 0.05);
  --shadow-lg: 0 24px 48px rgba(17, 24, 39, 0.08);
  --shadow-gold: 0 12px 32px rgba(212, 175, 55, 0.15);

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  /* max-width: 100%; */
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.bg-white {
  background-color: var(--color-bg-primary);
}

.bg-gray {
  background-color: var(--color-bg-tertiary);
}

.bg-navy {
  background-color: var(--color-accent-navy);
  color: white;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-primary-gold-dark);
}

.text-navy {
  color: var(--color-accent-navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-gold-dark));
  color: var(--color-text-primary);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-gold-light), var(--color-primary-gold));
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

.btn-secondary {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-gold);
  color: var(--color-primary-gold-dark);
}

.btn-navy {
  background-color: var(--color-accent-navy);
  color: white;
}

.btn-navy:hover {
  background-color: var(--color-accent-navy-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-navy-cta {
  background-color: #0b1f3a;
  color: #ffffff;
  padding: 12px 12px 12px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(11, 31, 58, 0.2);
  transition: all 0.3s ease;
}

.btn-navy-cta:hover {
  box-shadow: 0 15px 25px rgba(11, 31, 58, 0.3);
}

.btn-icon-gold {
  background-color: #d4af37;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.btn-white-cta {
  background-color: #ffffff;
  color: #0b1f3a;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.btn-white-cta:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-lg);
}

.bg-navy .glass-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Grid System */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo — fluid scaling */
.logo {
  height: clamp(60px, 8vw, 105px);
  width: auto;
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo {
  height: clamp(55px, 7vw, 95px);
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 40px);
}

.nav-links a {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--color-text-primary);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary-gold-dark);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Right wrapper (CTA + Hamburger) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger Button */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-accent-navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 24px;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--color-accent-navy-light);
}

/* =====================
   MOBILE NAV OVERLAY
   ===================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

/* Backdrop */
.mobile-nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  visibility: visible;
  pointer-events: all;
}

.mobile-nav-overlay.open::before {
  opacity: 1;
}

/* Drawer Panel */
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  transform: translateX(0);
}

/* Drawer Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafafa;
}

.mobile-nav-logo {
  height: 56px;
  width: auto;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 20px;
  color: var(--color-text-primary);
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: var(--color-accent-navy);
  color: white;
  border-color: var(--color-accent-navy);
}

/* Drawer Nav Links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}

.mobile-nav-link i {
  font-size: 20px;
  color: var(--color-accent-navy);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-nav-link:hover {
  background: rgba(11, 31, 58, 0.04);
  border-left-color: var(--color-primary-gold);
  color: var(--color-accent-navy);
  padding-left: 32px;
}

.mobile-nav-link:hover i {
  color: var(--color-primary-gold);
}

/* Drawer Footer CTA */
.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-nav-cta {
  background-color: var(--color-accent-navy);
  color: #ffffff;
  padding: 14px 20px 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.2);
}

.mobile-nav-cta:hover {
  background: var(--color-accent-navy-light);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.3);
}

.mobile-nav-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--color-primary-gold);
  margin: 0;
  text-align: center;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* =====================
   RESPONSIVE BREAKPOINTS — Navbar
   ===================== */

/* Show hamburger, hide desktop links at ≤ 991px */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Scale down CTA button on tablet */
  .nav-cta {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }
}

/* Hide desktop CTA on very small screens — hamburger replaces it */
@media (max-width: 480px) {
  .nav-cta {
    display: none;
  }
}




/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(40px, 5vw, 80px);
  overflow-x: hidden;
  /* only hide horizontal — never clip cards vertically */
  background-image: url('assets/Hero_Banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive hero container padding */
.hero .container {
  max-width: 100%;
  margin: 0;
  padding: 0 clamp(20px, 5vw, 80px);
}

.hero-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.hero-mesh {
  display: none;
}

/* Hero Left — Content */
.hero-content {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

/* Hero subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 32px);
  font-weight: 600;
  color: #cda85a;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

/* Hero title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0b1f3a;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
}

.divider-dot {
  width: 5px;
  height: 5px;
  background-color: #d4af37;
  border-radius: 50%;
}

.divider-line {
  width: 50px;
  height: 1px;
  background-color: #d4af37;
  opacity: 0.6;
}

/* Hero description */
.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #555555;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 45px;
  max-width: 90%;
}

/* Hero CTA buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right — Floating Orbit Visual */
.hero-visual {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(480px, 60vw, 750px);
  /* Removed the problematic transform: translate(60px, 40px) */
}

.hero-center-logo {
  width: clamp(160px, 18vw, 240px);
  height: clamp(160px, 18vw, 240px);
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(212, 175, 55, 0.05);
  z-index: 10;
  border: none;
}

.hero-center-logo img {
  width: 80%;
  margin-top: -10px;
}

.center-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: #cda85a;
  margin-top: 10px;
}

/* Floating Cards in Hero */
.floating-card {
  position: absolute;
  width: clamp(140px, 14vw, 180px);
  background: linear-gradient(135deg, #ffffff 0%, #fcf9f2 100%);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
  z-index: 15;
  transition: var(--transition-bounce);
  animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
  z-index: 20;
}

.fc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1f3a;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 2px;
  filter: drop-shadow(0 4px 4px rgba(11, 31, 58, 0.15));
}

.fc-dash {
  width: 16px;
  height: 2px;
  background-color: #d4af37;
  border-radius: 2px;
  margin: 4px 0 6px 0;
}

.fc-text h5 {
  font-size: clamp(12px, 1.2vw, 16px);
  margin: 0;
  font-family: var(--font-body);
  font-weight: bold;
  line-height: 1.4;
  color: #0b1f3a;
}

/* Positioning the 6 cards */
.fc-1 {
  top: 10%;
  left: calc(50% - 90px);
  animation-delay: 0s;
}

.fc-2 {
  top: 28%;
  right: 12%;
  animation-delay: 1s;
}

.fc-3 {
  top: 28%;
  left: 12%;
  animation-delay: 2s;
}

.fc-4 {
  top: 60%;
  right: 12%;
  animation-delay: 3s;
}

.fc-5 {
  top: 60%;
  left: 12%;
  animation-delay: 4s;
}

.fc-6 {
  bottom: 15%;
  left: calc(50% - 90px);
  animation-delay: 5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =====================
   HERO RESPONSIVE BREAKPOINTS
   ===================== */

/* Tablet landscape / small laptop: tighten up proportions */
@media (max-width: 1200px) {
  .hero .container {
    padding: 0 clamp(20px, 4vw, 60px);
  }

  .floating-card {
    width: clamp(130px, 12vw, 160px);
    padding: 10px;
  }

  .fc-text h5 {
    font-size: 13px;
  }

  .fc-icon {
    font-size: 28px;
  }
}

/* Tablet portrait 991px */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: clamp(90px, 12vw, 120px);
    padding-bottom: 60px;
    align-items: flex-start;
  }

  .hero-flex-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: center;
  }

  .hero-visual {
    flex: 0 0 100%;
    max-width: 100%;
    height: 520px;
    width: 100%;
    position: relative;
    margin-top: 10px;
  }

  .hero-desc {
    max-width: 80%;
  }

  .hero-center-logo {
    position: absolute !important;
    top: 255px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 140px;
    height: 140px;
    z-index: 2 !important;
  }

  .floating-card {
    animation: none;
    width: 130px;
    padding: 10px 6px;
    border-radius: 16px;
    display: flex;
    z-index: 10;
  }

  .fc-icon {
    font-size: 20px;
  }

  .fc-text h5 {
    font-size: 11px;
  }

  .fc-1,
  .fc-2,
  .fc-3,
  .fc-4,
  .fc-5,
  .fc-6 {
    display: flex;
  }

  /* Compact orbit ring for tablet */
  .fc-1 {
    top: 0;
    left: calc(50% - 65px);
    bottom: auto;
    right: auto;
    transform: none;
  }

  .fc-2 {
    top: 110px;
    right: 5%;
    left: auto;
    bottom: auto;
  }

  .fc-3 {
    top: 110px;
    left: 5%;
    right: auto;
    bottom: auto;
  }

  .fc-4 {
    top: 310px;
    right: 5%;
    left: auto;
    bottom: auto;
  }

  .fc-5 {
    top: 310px;
    left: 5%;
    right: auto;
    bottom: auto;
  }

  .fc-6 {
    top: 420px;
    left: calc(50% - 65px);
    bottom: auto;
    right: auto;
    transform: none;
  }
}

/* Mobile 768px */
@media (max-width: 768px) {
  .hero .container {
    padding: 0 clamp(16px, 4vw, 32px);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: clamp(12px, 3.2vw, 16px);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .hero-visual {
    height: 480px;
    width: 100%;
    margin-top: 10px;
  }

  .hero-center-logo {
    position: absolute !important;
    top: 235px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 125px;
    height: 125px;
    z-index: 2 !important;
  }

  .floating-card {
    animation: none;
    width: 122px;
    padding: 8px 5px;
    border-radius: 15px;
    display: flex;
    z-index: 10;
  }

  .fc-icon {
    font-size: 19px;
  }

  .fc-text h5 {
    font-size: 10.5px;
  }

  .fc-1 {
    top: 0;
    left: calc(50% - 61px);
    bottom: auto;
    right: auto;
    transform: none;
  }

  .fc-2 {
    top: 100px;
    right: 3%;
    left: auto;
    bottom: auto;
  }

  .fc-3 {
    top: 100px;
    left: 3%;
    right: auto;
    bottom: auto;
  }

  .fc-4 {
    top: 285px;
    right: 3%;
    left: auto;
    bottom: auto;
  }

  .fc-5 {
    top: 285px;
    left: 3%;
    right: auto;
    bottom: auto;
  }

  .fc-6 {
    top: 385px;
    left: calc(50% - 61px);
    bottom: auto;
    right: auto;
    transform: none;
  }
}

/* Small mobile 480px — 1:1 match to reference image */
@media (max-width: 480px) {
  .hero-flex-container {
    gap: 16px;
  }

  .hero-visual {
    height: 450px;
    width: 100%;
    margin-top: 5px;
  }

  .hero-center-logo {
    position: absolute !important;
    top: 222px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 115px;
    height: 115px;
    z-index: 2 !important;
  }

  .center-tagline {
    font-size: 9px;
    margin-top: 4px;
  }

  .floating-card {
    animation: none;
    width: 118px;
    padding: 8px 4px;
    border-radius: 14px;
    display: flex;
    z-index: 10;
  }

  .fc-icon {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .fc-dash {
    width: 12px;
    height: 2px;
    margin: 2px 0 4px 0;
  }

  .fc-text h5 {
    font-size: 10px;
    line-height: 1.25;
  }

  /* Compact 6-card ring around center logo */
  .fc-1 {
    top: 0;
    left: calc(50% - 59px);
    bottom: auto;
    right: auto;
  }

  .fc-2 {
    top: 95px;
    right: 2px;
    left: auto;
    bottom: auto;
  }

  .fc-3 {
    top: 95px;
    left: 2px;
    right: auto;
    bottom: auto;
  }

  .fc-4 {
    top: 270px;
    right: 2px;
    left: auto;
    bottom: auto;
  }

  .fc-5 {
    top: 270px;
    left: 2px;
    right: auto;
    bottom: auto;
  }

  .fc-6 {
    top: 365px;
    left: calc(50% - 59px);
    bottom: auto;
    right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-navy-cta,
  .btn-white-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small 375px */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 11px;
  }

  .hero-visual {
    height: 420px;
  }

  .hero-center-logo {
    position: absolute !important;
    top: 205px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 105px;
    height: 105px;
    z-index: 2 !important;
  }

  .floating-card {
    animation: none;
    width: 108px;
    padding: 6px 3px;
    border-radius: 12px;
  }

  .fc-icon {
    font-size: 16px;
  }

  .fc-text h5 {
    font-size: 9.5px;
  }

  .fc-1 {
    top: 0;
    left: calc(50% - 54px);
    bottom: auto;
    right: auto;
  }

  .fc-2 {
    top: 88px;
    right: 0;
    left: auto;
    bottom: auto;
  }

  .fc-3 {
    top: 88px;
    left: 0;
    right: auto;
    bottom: auto;
  }

  .fc-4 {
    top: 250px;
    right: 0;
    left: auto;
    bottom: auto;
  }

  .fc-5 {
    top: 250px;
    left: 0;
    right: auto;
    bottom: auto;
  }

  .fc-6 {
    top: 338px;
    left: calc(50% - 54px);
    bottom: auto;
    right: auto;
  }
}




/* Company Overview Section */
.overview-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.overview-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.overview-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.overview-subtitle {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}

.overview-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: #0b1f3a;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.overview-divider {
  margin-bottom: 25px;
}

.overview-divider .divider-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #d4af37;
}

.overview-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}

.overview-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}

.btn-icon-light {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0b1f3a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-white-cta:hover .btn-icon-light {
  background-color: rgba(0, 0, 0, 0.05);
}

.overview-visual {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.overview-image-wrapper {
  position: relative;
  padding: 15px 0 0 15px;
}

.overview-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid #f2e3c6;
  z-index: 0;
  box-sizing: border-box;
}

.overview-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: block;
}

.overview-stats {
  position: relative;
  width: 100%;
  background-color: var(--color-accent-navy);
  border-top: 2px solid var(--color-primary-gold);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 25px 30px;
  z-index: 5;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.stat-item h4 {
  font-family: var(--font-heading);
  color: var(--color-primary-gold);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.stat-item p {
  font-family: var(--font-body);
  color: #ffffff;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  margin: 0;
  line-height: 1.4;
}

/* =====================
   OVERVIEW RESPONSIVE BREAKPOINTS
   ===================== */

@media (max-width: 992px) {
  .overview-section {
    padding: 80px 0;
  }

  .overview-flex-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .overview-section {
    padding: clamp(60px, 8vw, 80px) 0;
  }

  .overview-flex-container {
    flex-direction: column;
    gap: 48px;
  }

  .overview-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .overview-visual {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .overview-subtitle {
    font-size: clamp(18px, 4vw, 26px);
  }

  .overview-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .overview-actions .btn-navy-cta {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .overview-stats {
    padding: 20px 16px;
  }
}

/* On very small screens, stack stats 2×2 */
@media (max-width: 480px) {
  .overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 12px;
  }

  .stat-item {
    padding: 8px 0;
    border-right: none;
  }

  .overview-actions {
    flex-direction: column;
  }

  .overview-actions .btn-navy-cta,
  .overview-actions .btn-white-cta {
    width: 100%;
    justify-content: center;
  }
}



/* Vision & Mission Section */
.vision-mission-section {
  padding: 50px 0 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.vm-header {
  margin-bottom: 70px;
}

.vm-tag {
  display: inline-block;
  font-family: var(--font-body);
  color: #d4af37;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 15px;
}

.vm-tag::before,
.vm-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #d4af37;
}

.vm-tag::before {
  right: 100%;
  margin-right: 15px;
}

.vm-tag::after {
  left: 100%;
  margin-left: 15px;
}

.vm-main-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: #0b1f3a;
  font-weight: 700;
  margin-bottom: 20px;
}

.vm-subtitle {
  font-family: var(--font-body);
  color: #555;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards Wrapper */
.vm-cards-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 60px;
}

/* Cards */
.new-vm-card {
  background: linear-gradient(145deg, #0b1f3a, #153257);
  border-radius: 20px;
  width: 36%;
  padding: 50px 40px 40px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.new-vm-card:hover {
  transform: translateY(-5px);
}

/* Top corner golden accents */
.new-vm-card::before,
.new-vm-card::after {
  content: '';
  position: absolute;
  top: -1px;
  width: 40px;
  height: 40px;
  border-top: 3px solid #d4af37;
  pointer-events: none;
}

.new-vm-card::before {
  left: -1px;
  border-left: 3px solid #d4af37;
  border-radius: 20px 0 0 0;
}

.new-vm-card::after {
  right: -1px;
  border-right: 3px solid #d4af37;
  border-radius: 0 20px 0 0;
}

/* Icon sticking out */
.vm-card-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-color: #0b1f3a;
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #d4af37;
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.15), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vm-card-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.vm-card-divider {
  width: 40px;
  height: 2px;
  background-color: #d4af37;
  margin: 0 auto 20px auto;
}

.vm-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Center Emblem */
.vm-center-emblem {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-top: -10px;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.15);
}

.vm-center-emblem img {
  width: 240px;
  margin-bottom: 150px;
  margin-right: 8px;
}

.vm-center-emblem span {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #d4af37;
  font-style: italic;
  font-weight: 600;
}



.vm-footer-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #d4af37;
  font-style: italic;
  font-weight: 600;
}

@media (max-width: 991px) {
  .vm-cards-wrapper {
    flex-direction: column;
    gap: 120px;
    align-items: center;
  }

  .new-vm-card {
    width: 100%;
    max-width: 600px;
  }

  /* Show emblem between cards on tablet */
  .vm-center-emblem {
    width: 240px;
    height: auto;
    margin: 0;
    box-shadow: none;
    /* Remove shadow if it looks weird on mobile */
  }

  .vm-center-emblem img {
    width: 345px;
    margin-bottom: 0;
    margin-right: 0;
    transform: translateY(-40px);
  }
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 40px 0 50px;
  }

  .vm-header {
    margin-bottom: 50px;
  }

  .vm-main-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .vm-subtitle br {
    display: none;
  }

  .new-vm-card {
    padding: 50px 20px 32px;
  }


}

@media (max-width: 480px) {
  .new-vm-card {
    padding: 50px 16px 24px;
  }

  .vm-card-title {
    font-size: 1.6rem;
  }
}



/* Services List Section */
.services-list-section {
  padding: 100px 0;
}

.services-list-wrapper {
  margin-top: 60px;
}

.service-item-new {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
  gap: 40px;
}

.service-item-new.reverse {
  flex-direction: row-reverse;
}

.service-content-box {
  flex: 0 0 50%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  padding: 35px 35px 35px 75px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content-box::after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid var(--color-primary-gold);
  pointer-events: none;
}

.service-content-box.left-accent::after {
  left: -1px;
  border-left: 3px solid var(--color-primary-gold);
  border-radius: 0 0 0 20px;
}

.service-content-box.right-accent::after {
  right: -1px;
  border-right: 3px solid var(--color-primary-gold);
  border-radius: 0 0 20px 0;
}

.s-icon-box {
  position: absolute;
  top: 40px;
  left: -35px;
  width: 80px;
  height: 80px;
  background-color: var(--color-accent-navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-primary-gold);
  box-shadow: 0 15px 25px rgba(11, 31, 58, 0.15);
}

.s-header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.s-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #f0f0f0;
  font-weight: 700;
  line-height: 1;
}

.s-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent-navy);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.s-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.s-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.s-list li i {
  color: var(--color-primary-gold);
  font-size: 1.2rem;
  margin-top: 2px;
}

.s-link {
  font-family: var(--font-body);
  color: var(--color-primary-gold);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.s-link:hover {
  gap: 12px;
  color: var(--color-accent-navy);
}

.service-image-box {
  flex: 0 0 45%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.service-image-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  min-height: 250px;
}

/* Services section fluid padding */
.services-list-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

@media (max-width: 991px) {

  .service-item-new,
  .service-item-new.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
  }

  .service-content-box {
    flex: 0 0 100%;
    padding: 60px 40px 40px 40px;
  }

  .service-image-box {
    flex: 0 0 100%;
  }

  .s-icon-box {
    top: -40px;
    left: 40px;
  }
}

@media (max-width: 576px) {

  .service-item-new,
  .service-item-new.reverse {
    gap: 20px;
    margin-bottom: 60px;
  }

  .service-content-box {
    padding: 55px 20px 28px 20px;
  }

  .s-icon-box {
    top: -36px;
    left: 20px;
    width: 68px;
    height: 68px;
    font-size: 26px;
  }

  .service-image-box img {
    height: 220px;
    min-height: 200px;
  }

  .s-title {
    font-size: 1.25rem;
  }

  .s-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 375px) {
  .service-content-box {
    padding: 52px 14px 24px 14px;
  }
}

/* About Storytelling */
.about-grid {
  align-items: center;
}

.about-content {
  grid-column: span 6;
  padding-right: 48px;
}

.about-visual {
  grid-column: span 6;
  position: relative;
}

.about-img-main {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-stats-card {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--color-accent-navy);
  color: white;
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.3);
  max-width: 300px;
}

.about-stats-card h4 {
  color: var(--color-primary-gold);
  margin-bottom: 12px;
}

.about-stats-card p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.timeline {
  margin-top: 40px;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
  padding-left: 32px;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary-gold-dark);
  border: 4px solid white;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.timeline-item h4 {
  margin-bottom: 4px;
  font-size: 18px;
}

/* Define missing bg-light-cream utility */
.bg-light-cream {
  background-color: #faf9f6;
}

/* Why Choose Us - New */
.why-us-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.why-card-new {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-primary-gold);
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--color-primary-gold);
}

.why-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-accent-navy);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.why-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Why Stats Banner */
.why-stats-banner {
  background-color: var(--color-accent-navy);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(11, 31, 58, 0.2);
  position: relative;
  border-top: 3px solid var(--color-primary-gold);
}

.w-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.w-stat-item i {
  font-size: 40px;
  color: var(--color-primary-gold);
}

.w-stat-text {
  display: flex;
  flex-direction: column;
}

.w-stat-text h4 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #fff;
  margin: 0 0 5px 0;
  line-height: 1;
}

.w-stat-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #d1d5db;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .why-stats-banner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 28px 20px;
    gap: 20px;
  }

  .w-stat-item {
    flex: 0 0 calc(50% - 10px);
    justify-content: flex-start;
  }

  .w-stat-text h4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .why-card-new {
    padding: 28px 20px;
    gap: 16px;
  }

  .why-stats-banner {
    padding: 20px 16px;
  }

  .w-stat-item {
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .w-stat-item i {
    font-size: 32px;
  }

  .w-stat-text h4 {
    font-size: 1.6rem;
  }
}

/* Core Values Section */
.core-values-section {
  background-color: var(--color-accent-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.values-flow-wrapper {
  position: relative;
  margin-top: 80px;
}

.cv-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}

.cv-col {
  position: relative;
  flex: 1;
  min-width: 0;
}

.v-dashed-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1px dashed var(--color-primary-gold);
  z-index: 1;
}

.cv-dot {
  position: absolute;
  top: 36px;
  left: -4px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary-gold);
  border-radius: 50%;
  z-index: 3;
}

.cv-card {
  background: var(--color-accent-navy);
  border: 1px solid var(--color-primary-gold);
  border-radius: 12px;
  padding: 60px 15px 30px 15px;
  text-align: center;
  position: relative;
  height: 100%;
  margin-top: 40px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cv-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cv-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-accent-navy);
  border: 1px solid var(--color-primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-primary-gold);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px var(--color-accent-navy);
}

.cv-card h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.cv-card p {
  color: #a0aec0;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Override the flex-nowrap HTML class — allow wrapping on all sizes below desktop */
@media (max-width: 991px) {
  .cv-row {
    flex-wrap: wrap !important;
    row-gap: 60px;
  }

  .cv-col {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .v-dashed-line,
  .cv-dot {
    display: none;
  }

  .values-flow-wrapper {
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .core-values-section {
    padding: clamp(60px, 8vw, 100px) 0;
  }

  .cv-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .values-flow-wrapper {
    margin-top: 40px;
  }
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

/* Force 3-col on tablet for better density */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .industry-card {
    height: 130px;
  }

  .ind-content i {
    font-size: 26px;
  }

  .ind-content span {
    font-size: 13px;
  }
}

/* 2-col on small phones */
@media (max-width: 425px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .industry-card {
    height: 120px;
  }
}

.industry-card {
  position: relative;
  height: 160px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-accent-navy);
}

.industry-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: var(--transition-smooth);
}

.industry-card:hover img {
  opacity: 0.2;
  transform: scale(1.1);
}

.ind-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 16px;
}

.ind-content i {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--color-primary-gold);
}

.ind-content span {
  font-weight: 600;
  display: block;
  font-size: 15px;
}

/* Leadership */
.leadership-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.leader-card {
  display: flex;
  background: white;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  position: relative;
}

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--color-primary-gold);
  border-left: 3px solid var(--color-primary-gold);
  border-top-left-radius: var(--border-radius-xl);
  z-index: 2;
}

.leader-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-bottom: 3px solid var(--color-primary-gold);
  border-left: 3px solid var(--color-primary-gold);
  border-bottom-left-radius: var(--border-radius-xl);
  z-index: 2;
}

.leader-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.leader-card-centered {
  grid-column: 1 / -1;
  width: calc(50% - 16px);
  margin: 0 auto;
}

@media (max-width: 992px) {
  .leader-card-centered {
    width: 100%;
  }
}

.leader-img {
  width: 35%;
  position: relative;
  background-color: var(--color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info {
  width: 65%;
  padding: 32px 32px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.leader-title {
  color: #333;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.leader-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.leader-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.leader-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: #f7f7f7;
  color: #333;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.leader-social a:hover {
  background: var(--color-primary-gold);
  color: white;
}

/* Contact Section */
.contact-wrapper {
  background: var(--color-accent-navy);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.contact-bg-graphic {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
}

.contact-info {
  padding: clamp(40px, 6vw, 80px);
  color: white;
}

.contact-info h2 {
  color: white;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.contact-item i {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-gold);
  font-size: 24px;
}

.contact-item p {
  margin: 0;
  font-weight: 500;
  color: white;
}

.contact-form-container {
  background: white;
  padding: clamp(32px, 6vw, 80px);
}

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

.form-control {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-bg-tertiary);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary-gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Contact responsive breakpoints */
@media (max-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-info {
    padding: 32px 20px;
  }

  .contact-form-container {
    padding: 28px 20px;
  }

  .contact-details {
    gap: 16px;
    margin-top: 24px;
  }

  .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
  }
}

/* Footer & CTA Banner */
.footer-section {
  position: relative;
  background-color: var(--color-accent-navy);
  color: white;
  padding: 120px 0 40px;
  margin-top: 60px;
}

.footer-bg-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Add subtle sweeping lines using pseudo-elements */
.footer-bg-graphic::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 60%;
  height: 200%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.05);
  transform: rotate(-15deg);
}

.footer-bg-graphic::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 80%;
  height: 150%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.08);
  transform: rotate(15deg);
}


.footer-content-wrapper {
  position: relative;
  z-index: 2;
}

/* CTA Banner */
.cta-banner {
  background-color: white;
  border-radius: 60px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-text-primary);
  flex-wrap: wrap;
  gap: 24px;
}

.cta-left h2 {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-weight: 700;
}

.cta-left h2 span {
  color: var(--color-primary-gold);
}

.cta-left p {
  color: var(--color-text-secondary);
  font-size: 16px;
  margin: 0;
}

.cta-middle {
  display: flex;
  gap: 40px;
  align-items: center;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 40px;
}

.cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.cta-feature .icon-circle {
  width: 56px;
  height: 56px;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--color-primary-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo-main {
  height: clamp(64px, 8vw, 100px);
  margin-bottom: 16px;
}

.footer-brand-name {
  color: white;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.footer-divider-line {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.footer-divider-line::before,
.footer-divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-gold), transparent);
}

.footer-tagline {
  color: var(--color-primary-gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  padding: 0 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--color-primary-gold);
  border-color: var(--color-primary-gold);
  color: var(--color-text-primary);
  transform: translateY(-4px);
}

.footer-title {
  color: white;
  font-size: 22px;
  margin-bottom: 32px;
  position: relative;
  font-family: var(--font-heading);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary-gold);
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a i:first-child {
  color: var(--color-primary-gold);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.footer-links a .arrow-right {
  margin-left: auto;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--color-primary-gold);
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover .arrow-right {
  opacity: 1;
  transform: translateX(0);
}

/* Company Info Card */
.company-info-card {
  padding: 0;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  /* prevent CIN number from overflowing on small screens */
  word-break: break-all;
  overflow-wrap: break-word;
}

.status-active .dot {
  width: 8px;
  height: 8px;
  background-color: #4ade80;
  /* bright green */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.2);
}

.back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-gold);
  transition: all 0.3s ease;
  background: transparent;
}

.back-to-top:hover {
  background-color: var(--color-primary-gold);
  color: var(--color-text-primary);
  border-color: var(--color-primary-gold);
  transform: translateY(-4px);
}

/* =====================
   RESPONSIVE FOOTER & CTA
   ===================== */

.cta-container-pos {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  z-index: 10;
}

@media (max-width: 1200px) {
  .cta-middle {
    padding: 0 20px;
    gap: 20px;
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .footer-section {
    padding-top: 260px;
  }

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 32px;
    padding: 28px 32px;
  }

  .cta-middle {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding-top: 250px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cta-banner {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .cta-middle {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: space-around;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0;
  }

  .cta-feature {
    gap: 6px;
  }

  .cta-feature .icon-circle {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .cta-feature span {
    font-size: 11px;
    line-height: 1.2;
  }

  .cta-right {
    width: 100%;
  }

  .cta-right .btn-navy-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding-top: 260px;
  }

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

  .cta-banner {
    border-radius: 20px;
    padding: 20px 16px;
    gap: 14px;
  }

  .cta-left h2 {
    font-size: 1.35rem;
  }

  .cta-left p {
    font-size: 13px;
  }

  .cta-middle {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: space-around;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 0;
  }

  .cta-feature .icon-circle {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .cta-feature span {
    font-size: 10px;
    line-height: 1.15;
  }

  .cta-right {
    width: 100%;
  }

  .cta-right .btn-navy-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .info-value {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .footer-section {
    padding-top: 270px;
  }

  .cta-banner {
    padding: 18px 12px;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-gold-dark);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* =====================
   LEADERSHIP RESPONSIVE
   ===================== */

@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .leader-card {
    flex-direction: column;
  }

  .leader-img {
    width: 100%;
    min-height: 260px;
  }

  .leader-info {
    width: 100%;
    padding: 28px 24px;
  }
}

@media (max-width: 576px) {
  .leader-info {
    padding: 20px 16px;
  }

  .leader-name {
    font-size: 18px;
  }
}

/* =====================
   GLOBAL SECTION HEADING OVERRIDES
   Override inline style font-sizes for responsiveness
   ===================== */

@media (max-width: 768px) {

  /* Services, Industries, Why Us, Core Values inline-style headings */
  .section h2[style],
  .container h2[style],
  h2[style*="2.6rem"] {
    font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
  }

  .section-tag[style*="24px"],
  span.section-tag[style*="font-size: 24px"] {
    font-size: clamp(12px, 3.5vw, 18px) !important;
  }
}

@media (max-width: 480px) {
  h2[style*="2.6rem"] {
    font-size: 1.5rem !important;
  }

  /* General section padding reduction */
  .section {
    padding: clamp(50px, 7vw, 120px) 0;
  }
}

/* =====================
   LEGACY GRID FALLBACK
   ===================== */
@media (max-width: 768px) {
  .grid-12 {
    display: flex;
    flex-direction: column;
  }
}