/* ==========================================================================
   BOWEN EXECUTIVE — CONSOLIDATED DESIGN SYSTEM & STYLESHEET
   Unified styling for all pages with zero conflicts and full responsive support.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS & DESIGN TOKENS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  /* Brand Colors */
  --primary: #F6EC00;
  --light: #ffffff;
  --light-grey: #9a9a9a;
  --grey: #484848;
  --dark: #000000;
  --text-dark: #000000;
  --text-gray: #484848;
  --text-light: #ffffff;

  /* Typography Families */
  --font-heading: 'Newsreader', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --font-lora: 'Newsreader', Georgia, serif;
  --font-newsreader: 'Newsreader', Georgia, serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-sharp: 'Poppins', sans-serif;
  --font-author: 'Poppins', sans-serif;

  /* Typography Scales */
  --h1-size: 64px;
  --h1-lh: 70px;
  --h2-size: 54px;
  --h2-lh: 68px;
  --h3-size: 26px;
  --h3-lh: 1.3;
  --p-size: 18px;
  --p-lh: 1.6;
  --link-size: 16px;
  --link-lh: 1.5;
  --caption-size: 16px;
  --caption-lh: 26px;
  --tag-size: 14px;
  --tag-lh: 22px;
}

/* --------------------------------------------------------------------------
   2. BASE RESET & GLOBAL TYPOGRAPHY
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background-color: var(--light);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Lenis smooth scrolling rules */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: var(--link-size);
  font-weight: 500;
}

p {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: var(--p-size);
  line-height: var(--p-lh);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
}

h1 {
  font-family: var(--font-heading, 'Newsreader', Georgia, serif);
  font-size: var(--h1-size);
  line-height: var(--h1-lh);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
}

h2 {
  font-family: var(--font-heading, 'Newsreader', Georgia, serif);
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  color: var(--dark);
}

h3 {
  font-family: var(--font-heading, 'Newsreader', Georgia, serif);
  font-size: var(--h3-size);
  line-height: var(--h3-lh);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
}

ul {
  list-style: none;
}

.overflow-hidden {
  overflow: hidden;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1352px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.p-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.content-container {
  width: calc(100% - 8rem);
  max-width: 1352px;
  margin: 0 auto;
}

.responsive-container {
  padding-left: 0px;
  padding-right: 0px;
}

/* Typography Utility Classes */
.text-style-h-1 {
  font-size: 64px;
  font-family: var(--font-heading, 'Newsreader', Georgia, serif);
  font-weight: 400;
  font-style: normal;
  line-height: 70px;
  text-decoration: none;
  text-transform: none;
}

.text-style-h-2 {
  font-size: 54px;
  font-family: var(--font-heading, 'Newsreader', Georgia, serif);
  font-weight: 400;
  font-style: normal;
  line-height: 68px;
  text-decoration: none;
  text-transform: none;
}

.text-style-h-3 {
  font-size: 26px;
  font-family: var(--font-heading, 'Newsreader', Georgia, serif);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
}

.text-style-p {
  font-size: 18px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
}

.text-style-link {
  font-size: 16px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.text-style-caption {
  font-size: 16px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-weight: 500;
  font-style: normal;
  line-height: 26px;
  text-decoration: none;
  text-transform: none;
}

.text-style-tag {
  font-size: 14px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-weight: 500;
  font-style: normal;
  line-height: 22px;
  text-decoration: none;
  text-transform: none;
}

/* --------------------------------------------------------------------------
   3. GLOBAL ANIMATIONS & HOVER EFFECTS
   -------------------------------------------------------------------------- */
/* WebP Image Wrappers — Zoom + Sweep */
.service-img-wrapper,
.dd-card-img,
.img-wrapper,
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
}

.service-img-wrapper:hover,
.dd-card-img:hover,
.img-wrapper:hover,
.image-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img-wrapper img,
.dd-card-img img,
.image-container img,
.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.service-img-wrapper:hover img,
.dd-card-img:hover img,
.image-container:hover img,
.img-wrapper:hover .insight-img {
  transform: scale(1.12);
}

.service-img-wrapper::before,
.dd-card-img::before,
.img-wrapper::before,
.image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.service-img-wrapper:hover::before,
.dd-card-img:hover::before,
.img-wrapper:hover::before,
.image-container:hover::before {
  opacity: 1;
}

.service-img-wrapper::after,
.dd-card-img::after,
.img-wrapper::after,
.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 2;
}

.service-img-wrapper:hover::after,
.dd-card-img:hover::after,
.img-wrapper:hover::after,
.image-container:hover::after {
  left: 150%;
}

/* Button Variants */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: var(--light, #fff);
  color: var(--dark, #000);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary, #F6EC00);
  border-radius: inherit;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.btn-outline:hover::before,
.btn-outline:active::before,
.btn-outline.active::before {
  transform: translateY(0);
}

.btn-outline:hover,
.btn-outline:active {
  color: var(--dark, #000);
  border-color: var(--primary, #F6EC00);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline.active {
  background: var(--primary, #F6EC00) !important;
  color: #000000 !important;
  border-color: var(--primary, #F6EC00) !important;
  box-shadow: none;
}

.btn-solid {
  background: #fff;
  color: #000;
  padding: 8px 24px;
  border-radius: 44px;
  font-weight: 500;
  width: 167px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s ease;
}

.btn-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary, #F6EC00);
  border-radius: inherit;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.btn-solid:hover::before {
  transform: translateY(0);
}

.btn-solid:hover,
.btn-solid:active,
.btn-solid.active {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-solid-dark {
  background: #000;
  color: #fff;
  padding: 8px 24px;
  border-radius: 44px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s ease;
}

.btn-solid-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary, #F6EC00);
  border-radius: inherit;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.btn-solid-dark:hover::before {
  transform: translateY(0);
}

.btn-solid-dark:hover,
.btn-solid-dark:active {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn-warning {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--primary, #F6EC00) !important;
  border: 1px solid var(--primary, #F6EC00) !important;
  color: #000 !important;
  padding-left: 10px;
  transition: all 0.35s ease;
}

.btn-warning::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

.btn-warning:hover::after {
  left: 130%;
}

.btn-warning:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(246, 236, 0, 0.35);
  color: #000 !important;
  background: var(--primary, #F6EC00) !important;
}

.btn-warning:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.15s ease;
}

/* Arrow Navigation Buttons */
.nav-arrow-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-arrow-btn:hover {
  border-color: currentColor;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.08);
}

.nav-arrow-btn:active {
  transform: scale(0.94);
}

.nav-arrow-btn svg {
  stroke: #ffffff;
}

.dd-arrow-btn {
  background: transparent;
  border: none;
  color: #16205b;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.dd-arrow-btn:hover {
  transform: scale(1.15);
}

/* Arrow Badge Links */
.arrow-link {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: var(--primary, #F6EC00);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .arrow-link,
.service-card.active .arrow-link {
  transform: scale(1.1) rotate(-45deg);
}

.dd-arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary, #F6EC00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.dd-card:hover .dd-arrow {
  transform: translateX(4px) scale(1.08);
}

/* Scroll Reveal Classes */
.reveal-img {
  opacity: 0;
  transform: scale(0.97) translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-img.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-content {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
  transition-delay: 0.15s;
}

.reveal-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Social & Link Hovers */
.social-links a img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover img {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.2);
}

.follow-container a,
.follow-link {
  position: relative;
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.follow-container a::after,
.follow-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #C5DDFF;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.follow-container a:hover,
.follow-link:hover {
  color: #C5DDFF;
}

.follow-container a:hover::after,
.follow-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* --------------------------------------------------------------------------
   4. PRELOADER, HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-logo {
  width: 200px;
  height: auto;
  opacity: 0;
  transform: scale(0.85);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 6rem);
  max-width: 1440px;
  position: fixed;
  top: 2rem;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  z-index: 100;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  padding: 0.75rem 2.2rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.logo a,
.footer-logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.logo img {
  height: 36px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  text-align: center;
  margin: 0 !important;
  white-space: nowrap;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #C5DDFF;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.35s ease;
}

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

.nav-contact {
  display: flex;
  justify-content: flex-end;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  text-align: right;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--dark);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  padding: 4rem 1.5rem;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.2rem;
  color: var(--light);
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 90vw;
}

.mobile-nav-links li {
  overflow: hidden;
}

.mobile-nav-links a {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--light);
  font-weight: 500;
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #C5DDFF;
}

.mobile-contact-btn {
  border: 1px solid var(--light);
  padding: 0.6rem 2.5rem;
  border-radius: 100px;
  font-size: 20px !important;
}

.mobile-contact-btn:hover {
  background: var(--light);
  color: var(--dark) !important;
}

/* Services Dropdown Overlay */
.services-dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 500;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.services-dropdown-overlay.open {
  pointer-events: auto;
  clip-path: inset(0 0 0% 0);
}

.dropdown-inner {
  background: #fff;
  color: var(--dark);
  width: 100%;
  min-height: 100vh;
  padding: 2.5rem 0 3rem 0;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
}

.dropdown-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 8rem);
  max-width: 1352px;
  margin: 0 auto 3rem auto;
  padding: 0.8rem 3rem;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-logo-img {
  height: 38px;
  display: block;
}

.dropdown-nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.dropdown-nav-links a {
  font-size: var(--link-size);
  font-weight: 500;
  color: var(--dark, #000);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-nav-links a:hover {
  color: #C5DDFF;
}

.dropdown-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.35s ease;
}

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

.dropdown-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 3);
  gap: 27px;
  overflow-x: auto;
  scrollbar-width: none;
  width: calc(100% - 8rem);
  max-width: 1352px;
  margin: 0 auto;
}

.dropdown-cards::-webkit-scrollbar {
  display: none;
}

.dd-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: var(--dark);
  background: transparent;
  border: none;
}

.dd-card-img {
  position: relative;
  width: 100%;
  height: 404px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
}

.dd-card:hover .dd-card-img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dd-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dd-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dd-card-top h3 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  color: #16205b;
  margin: 0;
  flex: 1;
}

.dd-card-body>p {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-size: 18px;
  color: #484848;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.dropdown-carousel-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.services-dropdown-overlay .dd-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.services-dropdown-overlay.open .dd-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.services-dropdown-overlay.open .dd-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.services-dropdown-overlay.open .dd-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.services-dropdown-overlay.open .dd-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.services-dropdown-overlay.open .dd-card:hover {
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   5. FOOTER & CTA BANNER
   -------------------------------------------------------------------------- */
.cta-spacer {
  background: var(--light);
  height: 345px;
}

.contact-banner-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  z-index: 10;
  position: relative;
  max-width: 1352px;
  margin-left: auto;
  margin-right: auto;
}

.contact-banner {
  position: relative;
  background: var(--primary);
  border-radius: 12px;
  padding: 5rem 5% 0 5%;
  overflow: visible;
}

.banner-content {
  max-width: 550px;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
  color: var(--dark);
}

.banner-intro {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.banner-content h2 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 70px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.banner-sub {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 3.5rem;
}

.banner-contact-links {
  display: flex;
  gap: 2.5rem;
  font-weight: 500;
  font-size: var(--link-size);
}

.banner-contact-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.banner-contact-links a:hover {
  transform: translateY(-3px);
  color: #000000;
  opacity: 1;
}

.banner-contact-links a img {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-contact-links a:hover img {
  transform: scale(1.15) rotate(5deg);
}

.nick-img {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: clamp(400px, 45vw, 695px);
  width: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.site-footer {
  background: var(--dark);
  color: var(--light);
  padding: 8rem 4rem 0rem 4rem;
  position: relative;
}

.footer-content-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: -100px;
  padding: 0;
  max-width: 1352px;
  margin-left: auto;
  margin-right: auto;
}

.footer-col ul {
  margin: 0;
  padding: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.brand-col {
  max-width: 450px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 2.5rem;
}

.brand-col p {
  font-size: var(--link-size);
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links span {
  color: var(--primary);
  font-weight: 500;
  font-size: var(--link-size);
  margin-right: 0.5rem;
}

.social-links a {
  display: inline-block;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(246, 236, 0, 0.4));
}

.footer-links-wrapper {
  display: flex;
  gap: 3.5rem;
}

.footer-col h3 {
  font-size: var(--link-size);
  margin-bottom: 1.25rem;
  font-weight: 500;
  color: var(--primary);
}

.links-col ul li {
  margin-bottom: 0.5rem;
}

.links-col ul a {
  color: var(--light);
  font-size: var(--link-size);
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 3px 0;
}

.links-col ul a:hover {
  color: #C5DDFF;
  transform: translateX(4px);
}

.links-col ul a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 0;
  background-color: #C5DDFF;
  transition: width 0.3s ease;
}

.links-col ul a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: var(--light);
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.footer-bottom a {
  color: var(--primary, #F6EC00);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #C5DDFF;
}

.footer-overlay {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  line-height: 0;
}

.nick-img-overlay {
  width: 100%;
  max-width: 1352px;
  height: auto;
  opacity: 0.5;
  display: block;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   6. HOMEPAGE SECTIONS
   -------------------------------------------------------------------------- */
/* Homepage 100% Height Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--light);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5rem 6rem 5rem;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg,
.slide-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slide-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}

.hero-text-left {
  flex: 1.6;
}

.hero-text-left h1 {
  max-width: 850px;
  letter-spacing: -1.5px;
}

.hero-text-right {
  flex: 1;
  max-width: 420px;
  padding-bottom: 0.5rem;
}

.hero-text-right p {
  opacity: 0.95;
}

.hero-bottom-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 5rem 2.5rem 5rem;
}

.pagination {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 45px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--primary);
}

.play-btn {
  font-size: 2.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Homepage Services Slider Section */
.services-section {
  background: #ffffff;
  padding: 90px 0;
  overflow: hidden;
  width: 100%;
}

.services-container {
  width: 1352px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 64px;
}

.services-header h2 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 54px;
  line-height: 68px;
  color: #000000;
  margin: 0;
}

.carousel-nav {
  display: flex;
  gap: 20px;
}

.services-slider-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-slider-container::-webkit-scrollbar {
  display: none;
}

.services-grid {
  display: flex;
  gap: 27px;
  align-items: flex-start;
  flex-wrap: nowrap;
  height: 687px;
}

.service-card {
  flex: 0 0 432px;
  width: 432px;
  max-width: 85vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  height: 100%;
}

.service-card .service-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease;
  height: 404px;
}

.service-card.active .service-img-wrapper,
.service-card:hover .service-img-wrapper {
  height: 546px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 59px;
  width: 100%;
}

.service-info h3 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  color: #000000;
  margin: 0;
}

.service-info p {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #484848;
  margin: 0;
}

/* Homepage Snapshot Section */
.snapshot-section {
  background: #000000;
  padding: 90px 0;
  width: 100%;
}

.snapshot-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 324px;
  width: 1352px;
  margin: 0 auto;
  pointer-events: none;
}

.snapshot-left {
  width: 551px;
}

.snapshot-left h2 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 54px;
  line-height: 68px;
  color: #ffffff;
  margin: 0;
}

.snapshot-right {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 477px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 54px;
  line-height: 68px;
  color: var(--primary);
}

.stat-text {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  color: #ffffff;
}

/* Homepage Insights Section */
.insights-section {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.25) 28%,
      rgba(0, 0, 0, 0.72) 52%,
      rgba(0, 0, 0, 0.95) 75%,
      #000000 100%),
    url("images/Civil-Insight-Image.webp") top center / cover no-repeat;
  width: 100%;
  min-height: 1450px;
  position: relative;
  padding-top: clamp(580px, 44vw, 760px);
  padding-bottom: 6rem;
  color: var(--light);
}

/* Civil Insight Subpage Specific Cards Section */
.civil-insights-cards-section {
  background: #000000;
  width: 100%;
  padding: 90px 0;
  color: var(--light);
}

.container-custom {
  max-width: 1352px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  z-index: 2;
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.insights-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1009px;
  width: 100%;
}

.insights-title h2 {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.insights-title p {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  font-size: 18px;
  line-height: 1.6;
}

.insights-title h2,
.insights-title p {
  margin: 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.insight-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insight-card .img-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  aspect-ratio: 3 / 3.4;
  width: 100%;
}

.insight-card .insight-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.insight-card p {
  font-size: 16px;
  line-height: 26px;
  color: var(--light);
  margin: 0;
}

.read-more {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #C5DDFF;
}

.follow-container {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

/* --------------------------------------------------------------------------
   7. SUBPAGES HERO & SHARED SECTIONS
   -------------------------------------------------------------------------- */
/* Subpages 80% Height Hero Section */
.hero-section:not(:has(.hero-slide)),
.hero-subpage,
.about-page .hero-section,
.contact-page .hero-section,
.civil-page .hero-section {
  min-height: 80vh;
  height: 80vh;
  max-height: 850px;
  background: url("images/homepages-1.webp") center center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.hero-section.hero-site-superintendent,
.hero-site-superintendent {
  background: url("images/homepages-2.webp") center center / cover no-repeat;
}

.hero-section.hero-retained,
.hero-retained {
  background: url("images/homepages-3.webp") center center / cover no-repeat;
}

.hero-section.hero-leadership,
.hero-leadership {
  background: url("images/homepages-4.webp") center center / cover no-repeat;
}

.hero-section.hero-civil,
.hero-civil,
.civil-page .hero-section {
  background: url("images/homepages-5.webp") center center/cover no-repeat;
}

/* Subpage Hero Titles & Subtitles */
.hero-title {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 64px);
  color: var(--text-light);
  line-height: 1.15;
  letter-spacing: -0.015em;
  will-change: transform;
}

.hero-subtitle {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 437px;
  padding-left: 0 !important;
  margin-left: 0 !important;
  will-change: transform;
}

/* About & Subpage Text Content */
.about-section {
  padding: 90px 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 90px;
}

.section-title {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.text-content {
  max-width: 895px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-content p {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Stats Lists with Inset Container Bullets */
.text-content ul,
.stats-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-content ul li,
.stats-list li {
  position: relative;
  padding-left: 24px !important;
  list-style: none !important;
  display: block !important;
  color: var(--text-gray);
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}

.text-content ul li::before,
.stats-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-gray, #666);
}

.stats-conclusion {
  margin-top: 4px;
}

/* Image Frames & Leadership Assessment Overlays */
.image-frame-container {
  width: 100%;
  height: clamp(320px, 45vw, 500px);
  overflow: hidden;
  border-radius: 12px;
  background-color: #eee;
  margin-bottom: 90px;
  transform-style: preserve-3d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.scroll-spacer {
  height: 100%;
  position: relative;
}

.sticky-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity;
}

.image-bg-1 {
  opacity: 1;
  background-image: url("images/homepage.webp");
}

.image-bg-2 {
  background-image: url("images/homepage-2.webp");
}

.image-bg-3 {
  background-image: url("images/Civil-Insight-Image.webp");
}

.la-text-top,
.la-text-bottom {
  position: absolute;
  left: 60px;
  z-index: 2;
}

.la-text-top {
  top: 60px;
  max-width: 717px;
}

.la-text-top h2 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 68px;
  color: var(--text-light, #ffffff);
}

.la-text-bottom {
  bottom: 60px;
  max-width: 432px;
}

.la-text-bottom p {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-light, #ffffff);
}

.leadership-assessment-section {
  position: relative;
  width: 100%;
  height: clamp(320px, 45vw, 600px);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 90px;
  will-change: transform, clip-path;
}

.la-image-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity;
}

.la-bg-1 {
  opacity: 1;
  background-image: url("images/Civil-Insight-Image.webp");
}

.la-bg-2 {
  background-image: url("images/homepage-2.webp");
}

.la-bg-3 {
  background-image: url("images/homepage.webp");
}

.la-overlay-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Sectors Section */
.sectors-section {
  background: #000000;
  padding: 90px 0;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.sectors-container {
  width: 100%;
  max-width: 1352px;
  margin: 0 auto;
}

.sectors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  width: 100%;
  max-width: 100%;
  height: 64px;
}

.sectors-header h2 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 54px;
  line-height: 68px;
  color: #ffffff;
  margin: 0;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  padding-bottom: 10px;
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  text-decoration: none;
}

.image-container {
  width: 100%;
  height: clamp(260px, 35vw, 404px);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
}

.sector-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.sector-info h3 {
  font-family: var(--font-heading, "Newsreader", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  color: var(--primary);
  margin: 0;
  width: 100%;
}

.sector-info p {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

/* Market & USA Interactive Map */
.market-section {
  padding: 90px 0;
  display: flex;
  justify-content: center;
  background-color: #000;
}

.market-container {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.text-group {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.market-title {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--text-light);
}

.market-desc {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.map-wrapper {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.map-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 20px 30px rgba(246, 236, 0, 0.08));
}

/* Contact Page Form & Sections */
.contact-form-section {
  background: #000000;
  width: 100%;
  padding: 100px 0 120px;
  color: var(--light);
}

.contact-info-title {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary, #F6EC00);
  margin-bottom: 16px;
}

.contact-info-text {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 440px;
  margin: 0;
}

.custom-contact-form .form-label {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.custom-contact-form .form-control {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body, "Poppins", sans-serif);
  font-size: 15px;
  color: #000000 !important;
  width: 100%;
  transition: all 0.3s ease;
}

.custom-contact-form .form-control::placeholder {
  color: #9a9a9a !important;
  opacity: 1;
}

.custom-contact-form .form-control:focus {
  border-color: var(--primary, #F6EC00) !important;
  box-shadow: 0 0 0 3px rgba(246, 236, 0, 0.25) !important;
  outline: none;
}

.contact-submit-btn {
  background: var(--primary, #F6EC00);
  color: #000000;
  border: none;
  border-radius: 999px;
  padding: 10px 42px;
  font-family: var(--font-body, "Poppins", sans-serif);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246, 236, 0, 0.4);
}

/* Civil Inside Articles Grid */
.img-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.card-content {
  padding-top: 1.5rem;
}

.card-tag {
  color: var(--primary);
  font-family: var(--font-body, "Poppins", sans-serif);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-heading, "Newsreader", serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  color: #000;
  margin-bottom: 0.5rem;
}

.card-text {
  font-family: var(--font-body, "Poppins", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #666;
}
