* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
}

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
body {
    background-color: rgb(255, 255, 255);
}
nav{
    background-color: #FFFDF5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 35px 0px 25px;
    position: fixed;
    width: 100%;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.814);
    z-index: 9999999;
}
.nav1{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 300px;
}
.nav1 img{
    height: 100px;
}
.nav1 h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: rgb(5, 23, 97);
}
.nav2{
    display: flex;
    gap: 70px;
    align-items: center;
    height: 100px;
}

.nav2 a{
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: rgb(5, 23, 97);
    
}
.nav2 h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: rgb(5, 23, 97);
}
.nav2 a {
    position: relative;
    text-decoration: none;
}

.nav2 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav2 a:hover::after {
    width: 100%;
}


.nav3{
    display: none;
    align-items: center;
}
.nav3 h4{
   
    font-size: 1.3rem;
    color: rgb(5, 23, 97);

}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.596);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(198, 215, 10, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;


}
.sidebar h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    width: 100%;
    padding: 12px 15px;
    transition: all 0.3s ease;
}
.sidebar a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    width: 100%;
}
.sidebar h4:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FBBF24;
}
.sidebar h4 {
    transition: transform 0.3s ease;
}

.sidebar h4:hover {
    transform: translateX(10px);
}

.hero-section {
    background-image: url("heroimage.jpg");
    width: 100%;
    min-height: 100vh;
    height: auto;
    margin-top: 100px;
    padding: 30px 16px;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-section-intro {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin-top: 0;
    padding: 24px 18px;
    background-color: rgba(0, 0, 0, 0.751);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.9rem;
    border-radius: 14px;
    text-align: center;
}
.hero-section span{
    font-size: 34px;
}
.hero-section h3{
    color: rgb(237, 239, 166);
     font-size: 1.45rem;
    line-height: 1.25;
    margin: 12px 0;
}

/* Features and statistics sections */
.hero-features,
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    width: 100%;
    margin-top: 24px;
}

.hero-feature-card,
.hero-stat-card {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(250, 222, 8, 0.35);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgb(255, 255, 255);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.hero-feature-card:hover,
.hero-stat-card:hover {
    transform: translateY(-4px);
    background-color: rgba(250, 222, 8, 0.14);
    border-color: rgb(250, 222, 8);
}

.hero-feature-card {
    font-size: 1rem;
    font-weight: 600;
}

.hero-feature-card span {
    display: inline-block;
    margin-left: 6px;
    font-size: 1rem;
}

.hero-stat-card strong {
    display: block;
    color: rgb(250, 222, 8);
    font-size: 1.45rem;
    line-height: 1.2;
}

.hero-stat-card span {
    display: block;
    margin-top: 6px;
    color: rgb(255, 255, 255);
    font-size: 0.95rem;
    line-height: 1.3;
}
/* =====================================================
   DIRECTOR PROFILE SECTION
   Self-contained styles — does not modify existing
   .hero-section / .hero-section-intro rules
===================================================== */

.director-profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding: 20px;
    flex-wrap: wrap;
    text-align: left;
}

/* Image container — handles sizing, shape, shadow */
.director-image-container {
    flex-shrink: 0;
    width: 180px;
    height: 200px;
    border-radius: 15%; /* Circular shape suits a profile photo */
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.8);
    background-color: #ffffff; /* Fallback while image loads */
}

/* Image itself — proper object-fit for quality */
.director-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Text info beside the image */
.director-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.director-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px 0;
}

.director-title {
    font-size: 1rem;
    font-weight: 500;
    color: #e8bc1c; /* Matches the yellow accent used in hero text */
    margin: 0;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Laptop / small desktop */
@media (max-width: 1200px) {
    .director-image-container {
        width: 130px;
        height: 130px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .director-profile-section {
        gap: 18px;
        margin-top: 32px;
    }

    .director-image-container {
        width: 120px;
        height: 120px;
    }

    .director-name {
        font-size: 1.15rem;
    }

    .director-title {
        font-size: 0.95rem;
    }
}

/* Small tablet / large mobile */
@media (max-width: 768px) {
    .director-profile-section {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .director-info {
        align-items: center;
    }

    .director-image-container {
        width: 110px;
        height: 110px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .director-profile-section {
        margin-top: 26px;
        padding: 14px;
    }

    .director-image-container {
        width: 96px;
        height: 96px;
        border-width: 2px;
    }

    .director-name {
        font-size: 1rem;
    }

    .director-title {
        font-size: 0.85rem;
    }
}
  
/* =====================================================
   SUNWAVE SOLAR ENERGY — COVERAGE AREA
   sunwave-coverage.css
   ===================================================== */
 
/* ─── Reset & Base ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #f4f8ff;
  color: #1e293b;
}
 
/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
 
/* ─── Keyframe Animations ────────────────────────────── */
 
/* Badge pulse dot */
@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.7); opacity: 0; }
}
 
/* Marker ripple rings */
@keyframes markerRipple {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(3);   opacity: 0; }
}
 
/* Floating sun card decoration */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
 
/* Rotating sun halo */
@keyframes spinHalo {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
 
/* Background dot grid scroll */
@keyframes bgScroll {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}
 
/* Content fade-in-up (left column) */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
/* Map fade-in-up (right column) */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
/* Stat card pop */
@keyframes statPop {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
 
/* ─── Section ────────────────────────────────────────── */
.sw-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 2rem 5rem;
  background: linear-gradient(150deg, #eff6ff 0%, #f0f9ff 55%, #e8f2ff 100%);
}
 
/* Animated dot-grid overlay */
.sw-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #93c5fd50 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  animation: bgScroll 12s linear infinite;
  opacity: 0.5;
}
 
/* Rotating sun halo – top right */
.sw-sun-halo {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #fde68a70 60deg,
    #fbbf2460 120deg,
    #fde68a50 180deg,
    transparent 240deg,
    #fde68a40 300deg,
    transparent 360deg
  );
  animation: spinHalo 24s linear infinite;
  pointer-events: none;
  z-index: 0;
}
 
.sw-sun-halo__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #fef9c3, #fbbf24);
  opacity: 0.72;
}
 
/* Wave bottom border */
.sw-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23bfdbfe' fill-opacity='0.38' d='M0,30 C360,60 720,0 1080,30 C1260,44 1380,18 1440,30 L1440,60 L0,60Z'/%3E%3C/svg%3E")
    no-repeat bottom center / cover;
}
 
/* ─── Inner Grid ─────────────────────────────────────── */
.sw-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
 
/* ─── LEFT – Content ─────────────────────────────────── */
.sw-content {
  animation: fadeInLeft 0.8s ease both;
}
 
/* Badge */
.sw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  padding: 5px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
 
.sw-badge__dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  animation: badgePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
 
/* Heading */
.sw-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
  color: #0f172a;
  margin-bottom: 1.1rem;
}
 
.sw-heading__highlight {
  color: #2563eb;
  position: relative;
}
 
/* Subtle underline on highlight */
.sw-heading__highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #3b82f6, #93c5fd);
  border-radius: 99px;
  opacity: 0.5;
}
 
/* Description */
.sw-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 430px;
}
 
/* ── Stat Cards ── */
.sw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
 
.sw-stat {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 1.2rem 0.9rem;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: statPop 0.6s ease both;
  cursor: default;
}
 
.sw-stat:nth-child(1) { animation-delay: 0.2s; }
.sw-stat:nth-child(2) { animation-delay: 0.35s; }
.sw-stat:nth-child(3) { animation-delay: 0.5s; }
 
.sw-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px #2563eb18;
  border-color: #93c5fd;
}
 
.sw-stat__icon {
  display: block;
  font-size: 24px;
  color: #60a5fa;
  margin-bottom: 8px;
}
 
.sw-stat__num {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1;
}
 
.sw-stat__lbl {
  display: block;
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.35;
}
 
/* ─── RIGHT – Map ────────────────────────────────────── */
.sw-map-area {
  animation: fadeInRight 0.8s 0.15s ease both;
}
 
.sw-map-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #dbeafe;
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 6px 40px #2563eb0d, 0 1px 4px #0000000a;
  overflow: visible;
}
 
/* State label pill */
.sw-map-card__label {
  position: absolute;
  top: 16px; right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 4px 11px;
  z-index: 10;
  letter-spacing: 0.03em;
}
 
/* Floating sun */
.sw-map-card__sun {
  position: absolute;
  bottom: 18px; left: 20px;
  font-size: 26px;
  animation: floatY 3.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
  z-index: 10;
  filter: drop-shadow(0 2px 6px #fbbf2444);
}
 
/* ─── Map Container ──────────────────────────────────── */
 
/*
  ════════════════════════════════════════════════════════
  HOW TO USE YOUR OWN MAP IMAGE
  ────────────────────────────────────────────────────────
  1. In the HTML, change the <img src="..."> to point to
     your map file: src="images/up-map.png"
  2. The container uses aspect-ratio: 1031/883 which matches
     the original screenshot. If your image has different
     dimensions, update that value below.
  3. City markers use CSS custom properties --mx / --my
     set as inline styles on each .sw-marker element in HTML.
     These are percentages of the container width/height.
     Adjust them visually until each pin lands on the correct
     city in YOUR map image.
  ════════════════════════════════════════════════════════
*/
.sw-map-container {
  position: relative;
  width: 100%;
  /* Match the aspect ratio of your map image */
  aspect-ratio: 1031 / 883;
  border-radius: 14px;
  overflow: hidden;
  background: #e8f4fd;
}
 
.sw-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  pointer-events: none;
  /* Slight desaturation so markers stand out */
  filter: saturate(0.82) brightness(0.94);
}
 
/* ─── City Markers ───────────────────────────────────── */
 
/*
  ════════════════════════════════════════════════════════
  REPOSITIONING MARKERS
  ────────────────────────────────────────────────────────
  Each marker's position is set by inline CSS variables
  on the element in HTML:
    style="--mx: 56.3%; --my: 51.5%"
 
  • --mx = distance from LEFT edge of map (percentage)
  • --my = distance from TOP  edge of map (percentage)
 
  To move a marker, just change those values on the
  corresponding div in the HTML file.
 
  Current positions were calculated from the provided
  screenshot (1031×883 px). If you crop or zoom the map,
  recalculate using:
    --mx = (city_pixel_x / image_width)  × 100
    --my = (city_pixel_y / image_height) × 100
  ════════════════════════════════════════════════════════
*/
 
.sw-marker {
  position: absolute;
  left: var(--mx);
  top:  var(--my);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
}
 
/* Remove default outline; we provide a custom focus ring */
.sw-marker:focus { outline: none; }
.sw-marker:focus .sw-marker__dot {
  box-shadow: 0 0 0 4px #2563eb55;
}
 
/* Ripple rings */
.sw-marker__ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #3b82f645;
  border: 1.5px solid #3b82f688;
  animation: markerRipple 2.4s ease-out infinite;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
 
.sw-marker__ring--2 {
  animation-delay: 0.9s;
}
 
/* Blue dot */
.sw-marker__dot {
  position: relative;
  z-index: 2;
  display: block;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #2563eb;
  border: 2.5px solid #ffffff;
  box-shadow:
    0 0 0 2.5px #93c5fd,
    0 0 10px #2563eb66;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.sw-marker:hover .sw-marker__dot,
.sw-marker:focus .sw-marker__dot {
  transform: scale(1.55);
  box-shadow:
    0 0 0 3px #60a5fa,
    0 0 18px #3b82f688;
}
 
/* Tooltip */
.sw-marker__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e3a8a;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
  letter-spacing: 0.02em;
  transform: translateX(-50%) translateY(4px);
  box-shadow: 0 4px 14px #1e3a8a44;
}
 
/* Tooltip arrow */
.sw-marker__tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1e3a8a;
}
 
.sw-marker:hover .sw-marker__tooltip,
.sw-marker:focus .sw-marker__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
 
/* ─── Responsive ─────────────────────────────────────── */
 
/* Tablet */
@media (max-width: 900px) {
  .sw-section { padding: 4rem 1.5rem; }
  .sw-inner   { gap: 2.5rem; }
  .sw-heading { font-size: 1.5rem; }
}
 
/* Mobile – stack vertically */
@media (max-width: 700px) {
  .sw-section { padding: 3rem 1rem 3.5rem; }
 
  .sw-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
 
  /* Map first on mobile for visual impact */
  .sw-map-area  { order: 1; }
  .sw-content   { order: 2; }
 
  .sw-desc      { max-width: 100%; }
 
  /* Slightly smaller markers on small screens */
  .sw-marker__dot {
    width: 11px; height: 11px;
  }
 
  .sw-marker__tooltip { font-size: 10.5px; }
}
 
/* Very small phones – 2-col stats */
@media (max-width: 400px) {
  .sw-stats {
    grid-template-columns: 1fr 1fr;
  }
  .sw-stat:last-child {
    grid-column: 1 / -1;
    max-width: 180px;
    margin: 0 auto;
  }
}
 





/* ============================================================
   WHY CHOOSE US – Solar Energy Section
   Standalone stylesheet, zero external dependencies
   ============================================================ */
 
/* ── 1. Tokens ──────────────────────────────────────────── */
:root {
  --c-navy:       #051761;    /* primary brand blue          */
  --c-navy-light: #0a2494;    /* hover / accent variant      */
  --c-gold:       #fbbf24;    /* solar yellow accent         */
  --c-gold-light: #fde68a;    /* soft gold tint              */
  --c-bg:         #f0f4ff;    /* section background          */
  --c-surface:    #ffffff;    /* card surface                */
  --c-text:       #1e2a4a;    /* primary text                */
  --c-muted:      #64748b;    /* secondary / description     */
  --c-border:     #e2e8f0;    /* subtle dividers             */
 
  --radius-card:  18px;
  --radius-img:   12px;
  --shadow-base:  0 2px 12px rgba(5, 23, 97, 0.08);
  --shadow-hover: 0 16px 40px rgba(5, 23, 97, 0.18);
 
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
 
  --section-px:   clamp(1.25rem, 5vw, 5rem);
  --section-py:   clamp(3.5rem,  7vw, 6rem);
  --gap-cards:    1.5rem;
}
 
/* ── 2. Reset helpers ───────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
 
img { display: block; max-width: 100%; }
 
ul[role="list"] { list-style: none; }
 
/* ── 3. Section wrapper ─────────────────────────────────── */
.wcu-section {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%,  rgba(251, 191, 36, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(5,  23,  97, 0.07) 0%, transparent 65%),
    var(--c-bg);
  padding: var(--section-py) var(--section-px);
  font-family: var(--font-body);
  color: var(--c-text);
  overflow: hidden;
}
 
/* ── 4. Header ──────────────────────────────────────────── */
.wcu-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
 
.wcu-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-navy-light);
  background: rgba(5, 23, 97, 0.07);
  padding: 0.35em 1em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
 
.wcu-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
}
 
/* Accent divider line with sun pip */
.wcu-accent-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
 
.wcu-accent-line__track {
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--c-gold));
}
 
.wcu-accent-line__track:last-child {
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
 
.wcu-accent-line__sun {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3), 0 0 0 6px rgba(251, 191, 36, 0.1);
}
 
.wcu-subheading {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  color: var(--c-muted);
  max-width: 600px;
  margin: 0 auto;
}
 
/* ── 5. Grid layout ─────────────────────────────────────── */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-cards);
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto 3.5rem;
}
 
/* ── 6. Card ────────────────────────────────────────────── */
.wcu-card {
  background: var(--c-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-base);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform   0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow  0.35s ease,
    border-color 0.35s ease;
  cursor: default;
}
 
.wcu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(5, 23, 97, 0.14);
}
 
/* Image wrapper */
.wcu-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border-radius: var(--radius-img) var(--radius-img) 0 0;
}
 
.wcu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-img) var(--radius-img) 0 0;
  transition: transform 0.45s ease, opacity 0.3s ease;
  opacity: 0.9;
}
 
/* When the placeholder is broken / missing, keep the overlay visible */
.wcu-card__img[src="placeholder.jpg"] {
  opacity: 0;
}
 
.wcu-card:hover .wcu-card__img {
  transform: scale(1.05);
}
 
/* Centered SVG icon overlay (visible over placeholder / image) */
.wcu-card__img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
 
.wcu-card__icon {
  width: 72px;
  height: 72px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 8px rgba(5, 23, 97, 0.12));
}
 
.wcu-card:hover .wcu-card__icon {
  transform: scale(1.12);
}
 
/* Hide the icon once a real image loads */
.wcu-card__img:not([src="placeholder.jpg"]) ~ .wcu-card__img-overlay {
  opacity: 0;
}
 
/* Card body */
.wcu-card__body {
  padding: 1.5rem 1.375rem 1.625rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
 
.wcu-card__number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--c-gold);
  background: rgba(251, 191, 36, 0.12);
  padding: 0.2em 0.55em;
  border-radius: 999px;
}
 
.wcu-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  padding-right: 2.25rem; /* clear the number badge */
}
 
.wcu-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-muted);
  flex: 1;
}
 
/* Bottom tag pill */
.wcu-card__tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-navy);
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  padding: 0.3em 0.85em;
  border-radius: 999px;
  align-self: flex-start;
  transition: background 0.3s ease;
}
 
.wcu-card:hover .wcu-card__tag {
  background: linear-gradient(135deg, var(--c-gold), #f59e0b);
}
 
/* ── 7. Bottom CTA strip ────────────────────────────────── */
.wcu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--c-navy);
  border-radius: var(--radius-card);
  padding: 2rem 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
}
 
.wcu-cta__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
 
.wcu-cta__btn {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.8em 2em;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition:
    background   0.25s ease,
    transform    0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow   0.25s ease;
  white-space: nowrap;
}
 
.wcu-cta__btn:hover,
.wcu-cta__btn:focus-visible {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
  outline: none;
}
 
.wcu-cta__btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}
 
/* ── 8. Responsive breakpoints ──────────────────────────── */
 
/* Large desktops (≥ 1400px) — no change, grid is already 5-col */
 
/* Laptops / medium screens (< 1280px) — still 5 col but tighter */
@media (max-width: 1279px) {
  :root { --gap-cards: 1.125rem; }
  .wcu-card__title  { font-size: 0.98rem; }
  .wcu-card__desc   { font-size: 0.875rem; }
}
 
/* Tablet landscape / small laptop (< 1024px) — 3 columns */
@media (max-width: 1023px) {
  .wcu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
 
/* Tablet portrait (< 768px) — 2 columns */
@media (max-width: 767px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .wcu-cta {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
  }
}
 
/* Mobile (< 480px) — 1 column, full width cards */
@media (max-width: 479px) {
  .wcu-grid {
    grid-template-columns: 1fr;
  }
 
  .wcu-card__img-wrap {
    aspect-ratio: 16 / 9;
  }
 
  .wcu-card__icon {
    width: 60px;
    height: 60px;
  }
 
  .wcu-header {
    margin-bottom: 2.5rem;
  }
}
 
/* ── 9. Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .wcu-card,
  .wcu-card__img,
  .wcu-card__icon,
  .wcu-card__tag,
  .wcu-cta__btn { transition: none; }
}




  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --sun-gold:    #F5A623;
      --sun-amber:   #E8861A;
      --sky-deep:    #0A2540;
      --sky-mid:     #1B4F72;
      --leaf-green:  #2ECC71;
      --off-white:   #F7F9FB;
      --mid-grey:    #8A9BB0;
      --card-bg:     #FFFFFF;
      --radius:      16px;
      --transition:  0.35s ease;
    }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: 'Inter', sans-serif;
      background: var(--off-white);
      color: var(--sky-deep);
      line-height: 1.7;
      background-color: #f6e9ca6e;
    }
 
    /* ── SECTION WRAPPER ── */
    .about-section {
      padding: 96px 0 80px;
      overflow: hidden;
    }
 
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── EYEBROW ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sun-amber);
      margin-bottom: 16px;
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--sun-gold);
      border-radius: 2px;
    }
 
    /* ── HERO ROW (Image left | Content right) ── */
    .hero-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      margin-bottom: 80px;
    }
 
    /* IMAGE PLACEHOLDER */
    .img-placeholder {
      background-image: url(aboutsectionimage2.jpg);
      background-size: cover;
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/5;
      /* background: linear-gradient(135deg, #B8D4E8 0%, #8FAEC6 50%, #6E90A8 100%); */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      color: rgba(255,255,255,0.85);
    }
    .img-placeholder .label {
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .img-placeholder svg { opacity: 0.7; }
 
    /* decorative border accent */
    .img-placeholder::after {
      content: '';
      position: absolute;
      bottom: -12px;
      right: -12px;
      width: 70%;
      height: 70%;
      border: 3px solid var(--sun-gold);
      border-radius: var(--radius);
      z-index: -1;
    }
 
    /* Badge floating on image */
    .badge {
      position: absolute;
      top: 5px;
      left: 24px;
      background: var(--sky-deep);
      color: #fff;
      padding: 14px 20px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 8px 24px rgba(10,37,64,0.35);
    }
    .badge-icon {
      width: 40px;
      height: 40px;
      background: var(--sun-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .badge-text strong {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--sun-gold);
    }
    .badge-text span {
      font-size: 0.72rem;
      color: var(--mid-grey);
      letter-spacing: 0.05em;
    }
 
    /* ── CONTENT SIDE ── */
    .hero-content h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--sky-deep);
      margin-bottom: 20px;
    }
    .hero-content h2 span { color: var(--sun-gold); }
 
    .hero-content p {
      font-size: 1rem;
      color: #3D5775;
      margin-bottom: 16px;
    }
 
    .tagline {
      margin-top: 28px;
      padding: 18px 20px;
      background: linear-gradient(120deg, var(--sky-deep), var(--sky-mid));
      border-radius: 12px;
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      line-height: 1.5;
      border-left: 4px solid var(--sun-gold);
    }
    .tagline .hindi {
      display: block;
      margin-top: 6px;
      font-size: 0.88rem;
      color: var(--sun-gold);
      font-weight: 400;
      font-family: 'Inter', sans-serif;
    }
 
    /* ── STATS ROW ── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 80px;
    }
    .stat-card {
      background: var(--sky-deep);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform var(--transition);
    }
    .stat-card:hover { transform: translateY(-4px); }
    .stat-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 100px;
      height: 100px;
      background: var(--sun-gold);
      opacity: 0.08;
      border-radius: 50%;
    }
    .stat-card .number {
      font-family: 'Syne', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--sun-gold);
      line-height: 1;
    }
    .stat-card .unit {
      font-size: 1.2rem;
      color: var(--sun-gold);
      font-weight: 600;
    }
    .stat-card p {
      font-size: 0.82rem;
      color: var(--mid-grey);
      margin-top: 6px;
      letter-spacing: 0.04em;
    }
 
    /* ── SERVICES ── */
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--sky-deep);
      margin-bottom: 8px;
    }
    .section-sub {
      color: var(--mid-grey);
      margin-bottom: 40px;
      font-size: 0.95rem;
    }
 
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 80px;
    }
    .service-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid #DDE6EE;
      transition: box-shadow var(--transition), transform var(--transition);
      position: relative;
    }
    .service-card:hover {
      box-shadow: 0 12px 32px rgba(10,37,64,0.10);
      transform: translateY(-3px);
    }
    .service-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #FEF3D0, #FDE08A);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 1.4rem;
    }
    .service-card h4 {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--sky-deep);
      margin-bottom: 6px;
    }
    .service-card p {
      font-size: 0.82rem;
      color: var(--mid-grey);
      line-height: 1.6;
    }
 
    /* ── MISSION / VISION ROW ── */
    .mv-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 80px;
    }
    .mv-card {
      border-radius: var(--radius);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
    }
    .mv-card.mission {
      background: linear-gradient(135deg, var(--sky-deep), var(--sky-mid));
      color: #fff;
    }
    .mv-card.vision {
      background: linear-gradient(135deg, var(--sun-amber), var(--sun-gold));
      color: var(--sky-deep);
    }
    .mv-card::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
    }
    .mv-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 700;
      opacity: 0.7;
      margin-bottom: 10px;
    }
    .mv-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .mv-card p {
      font-size: 0.95rem;
      line-height: 1.7;
      opacity: 0.9;
    }
 
    /* ── TEAM IMAGE ROW ── */
    .team-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      margin-bottom: 80px;
    }
    .team-content h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--sky-deep);
      margin-bottom: 18px;
    }
    .team-content h2 span { color: var(--sun-gold); }
    .team-content p {
      color: #3D5775;
      font-size: 0.97rem;
      margin-bottom: 14px;
    }
 
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: #3D5775;
    }
    .check-list li::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      min-width: 22px;
      background: var(--leaf-green);
      color: #fff;
      border-radius: 50%;
      font-size: 0.7rem;
      font-weight: 700;
      margin-top: 1px;
    }
 
    .team-img {
      background-image: url(team-image.jpg);
      background-size: cover;
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      color: rgba(255,255,255,0.85);
    }
    .team-img .label {
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
    }
 
    /* ── CLOSING BANNER ── */
    .closing-banner {
      background: linear-gradient(120deg, var(--sky-deep) 0%, #143960 60%, var(--sky-mid) 100%);
      border-radius: 20px;
      padding: 56px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      position: relative;
      overflow: hidden;
    }
    .closing-banner::before {
      content: '☀';
      position: absolute;
      right: -20px;
      top: -30px;
      font-size: 180px;
      color: rgba(245,166,35,0.07);
      line-height: 1;
      pointer-events: none;
    }
    .closing-text h3 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }
    .closing-text p {
      color: var(--mid-grey);
      font-size: 0.95rem;
      max-width: 480px;
    }
    .closing-text .hindi-tag {
      display: inline-block;
      margin-top: 12px;
      color: var(--sun-gold);
      font-size: 0.9rem;
      font-style: italic;
    }
    .cta-btn {
      flex-shrink: 0;
      background: var(--sun-gold);
      color: var(--sky-deep);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border: none;
      padding: 16px 36px;
      border-radius: 50px;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
      white-space: nowrap;
    }
    .cta-btn:hover {
      background: var(--sun-amber);
      transform: scale(1.04);
    }





    ork · CSS
/* ============================================================
   OUR WORK – Sunwave Energy Solution
   Standalone stylesheet · No external frameworks
   ============================================================ */
 
/* ── 1. Design Tokens ───────────────────────────────────── */
:root {
  --c-navy:         #082B59;      /* Primary dark blue            */
  --c-navy-mid:     #0d3a78;      /* Hover / lighter blue         */
  --c-navy-pale:    #e8eef8;      /* Light tint for backgrounds   */
  --c-orange:       #F5A623;      /* Accent orange                */
  --c-orange-dark:  #d9901a;      /* Orange hover                 */
  --c-orange-pale:  #fef3dc;      /* Soft orange tint             */
  --c-white:        #ffffff;
  --c-bg:           #f4f7fc;      /* Section background           */
  --c-process-bg:   #082B59;      /* Dark band                    */
  --c-trust-bg:     #f0f5ff;
  --c-text:         #1a2c4e;
  --c-muted:        #5a6e8a;
  --c-border:       #dce6f2;
 
  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      22px;
 
  --shadow-sm:      0 2px 10px rgba(8, 43, 89, 0.07);
  --shadow-md:      0 6px 24px rgba(8, 43, 89, 0.11);
  --shadow-lg:      0 16px 48px rgba(8, 43, 89, 0.17);
 
  --font-display:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
 
  --px:             clamp(1.25rem, 5vw, 4.5rem);
  --section-pt:     clamp(4rem, 8vw, 7rem);
  --section-pb:     clamp(2rem, 4vw, 3.5rem);
 
  --trans:          all 0.3s ease;
}
 
/* ── 2. Base resets ─────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
 
img { display: block; max-width: 100%; }
ol, ul { list-style: none; }
a { text-decoration: none; }
 
/* ── 3. Shared layout wrapper ───────────────────────────── */
.ow-section {
  background: var(--c-bg);
  font-family: var(--font-body);
  color: var(--c-text);
  overflow-x: hidden;
}
 
.ow-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--px);
}
 
/* ── 4. Shared typography helpers ───────────────────────── */
.ow-eyebrow {
  color: #f6e9ca6e;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: var(--c-orange-pale);
  padding: 0.3em 1em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
 
.ow-eyebrow--dark {
  color: var(--c-navy);
  background: var(--c-navy-pale);
}
 
.ow-subsection-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 2rem;
  text-align: center;
}
 
.ow-subsection-title--light {
  color: var(--c-white);
}
 
/* ── 5. Section Header ──────────────────────────────────── */
.ow-section > .ow-container:first-child {
  padding-top: var(--section-pt);
  padding-bottom: 0;
}
 
.ow-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
 
.ow-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--c-navy);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
 
.ow-br { display: block; }
 
.ow-subheading {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  color: var(--c-muted);
}
 
/* ── 6. Statistics Row ──────────────────────────────────── */
.ow-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
 
.ow-stat-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
 
.ow-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.3);
}
 
.ow-stat-card__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
}
 
.ow-stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
 
.ow-stat-icon svg {
  width: 48px;
  height: 48px;
}
 
.ow-stat-card__data {
  display: flex;
  flex-direction: column;
}
 
.ow-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
}
 
.ow-stat-plus {
  color: var(--c-orange);
}
 
.ow-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-muted);
  margin-top: 0.3rem;
  line-height: 1.3;
}
 
/* ── 7. Gallery ─────────────────────────────────────────── */
.ow-section > .ow-container:nth-child(3) {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
 
.ow-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.125rem;
}
 
/* Featured card spans left column, full height */
.ow-gallery__card--featured {
  grid-row: 1 / 3;
}
 
/* Small cards fill right 2x2 */
.ow-gallery__card:not(.ow-gallery__card--featured) {
  grid-column: 2;
}
 
/* Right column gets its own 2x2 sub-grid */
.ow-gallery {
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 1fr 1fr;
}
 
.ow-gallery__card--featured {
  grid-column: 1;
  grid-row: 1 / 3;
}
 
.ow-gallery__card:nth-child(2) { grid-column: 2; grid-row: 1; }
.ow-gallery__card:nth-child(3) { grid-column: 3; grid-row: 1; }
.ow-gallery__card:nth-child(4) { grid-column: 2; grid-row: 2; }
.ow-gallery__card:nth-child(5) { grid-column: 3; grid-row: 2; }
 
/* Card shell */
.ow-gallery__card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
 
/* Figure fills the card */
.ow-gallery__figure {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 220px;
}
 
.ow-gallery__card--featured .ow-gallery__figure {
  min-height: 460px;
}
 
/* Image */
.ow-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  /* Placeholder background shown when image is missing */
  background: linear-gradient(135deg, #c8d8ef 0%, #dde8f7 100%);
  min-height: inherit;
}
 
.ow-gallery__card:hover .ow-gallery__img {
  transform: scale(1.06);
}
 
/* Overlay – hidden by default, revealed on hover */
.ow-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(8, 43, 89, 0.88) 0%,
    rgba(8, 43, 89, 0.4)  45%,
    transparent           75%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
  margin: 0; /* reset figcaption default */
}
 
.ow-gallery__card:hover .ow-gallery__overlay,
.ow-gallery__card:focus-within .ow-gallery__overlay {
  opacity: 1;
}
 
.ow-gallery__overlay-inner {
  padding: 1.25rem 1.25rem 1.35rem;
  width: 100%;
}
 
.ow-gallery__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--c-orange);
  color: var(--c-navy);
  padding: 0.2em 0.7em;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
 
.ow-gallery__project-name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
 
.ow-gallery__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
 
.ow-gallery__meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
 
/* ── 8. Process Band ────────────────────────────────────── */
.ow-process-band {
  background: var(--c-navy);
  padding: clamp(3rem, 6vw, 5rem) 0;
  margin-top: 0;
  position: relative;
}
 
.ow-process-intro {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.975rem;
  line-height: 1.7;
  max-width: 560px;
  margin: -1.25rem auto 3rem;
}
 
.ow-process-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
 
/* Horizontal connecting line behind all steps */
.ow-process-list::before {
  content: '';
  position: absolute;
  top: 36px; /* center of icon */
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(245, 166, 35, 0.15) 0%,
    rgba(245, 166, 35, 0.6)  50%,
    rgba(245, 166, 35, 0.15) 100%
  );
  z-index: 0;
}
 
.ow-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
 
/* Hide the individual connector (we use the ::before on the list) */
.ow-process-step__connector { display: none; }
 
.ow-process-step__icon-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  border: 2px solid rgba(245, 166, 35, 0.25);
  transition: var(--trans);
  background: var(--c-navy);
}
 
.ow-process-step:hover .ow-process-step__icon-wrap {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.12);
}
 
.ow-process-step__icon {
  width: 72px;
  height: 72px;
  display: block;
}
 
.ow-process-step__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.ow-process-step__number {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-orange);
  background: rgba(245, 166, 35, 0.1);
  padding: 0.2em 0.65em;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
 
.ow-process-step__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
 
.ow-process-step__desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 160px;
}
 
/* ── 9. Before & After Highlight Card ───────────────────── */
.ow-section > .ow-container:nth-child(5) {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
 
.ow-highlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-white);
  border: 1px solid var(--c-border);
}
 
/* Left: image */
.ow-highlight-card__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
 
.ow-highlight-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  /* Placeholder color when image is missing */
  background: linear-gradient(135deg, #c8d8ef 0%, #9cb8de 100%);
}
 
.ow-highlight-card:hover .ow-highlight-card__img {
  transform: scale(1.04);
}
 
/* Floating badge */
.ow-highlight-card__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--c-navy);
  border: 2px solid var(--c-orange);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
 
.ow-highlight-card__badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-orange);
}
 
.ow-highlight-card__badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2em;
}
 
/* Right: content */
.ow-highlight-card__content {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.ow-highlight-card__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.2;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
 
.ow-highlight-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}
 
.ow-highlight-card__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.5;
}
 
.ow-highlight-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
 
.ow-highlight-card__check svg {
  width: 22px;
  height: 22px;
}
 
/* ── 10. Buttons ────────────────────────────────────────── */
.ow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85em 2em;
  transition: var(--trans);
  cursor: pointer;
  align-self: flex-start;
}
 
.ow-btn--primary {
  background: var(--c-orange);
  color: var(--c-navy);
}
 
.ow-btn--primary:hover,
.ow-btn--primary:focus-visible {
  background: var(--c-orange-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
  outline: none;
}
 
.ow-btn--primary:focus-visible {
  outline: 3px solid var(--c-navy);
  outline-offset: 3px;
}
 
/* ── 11. Trust Band ─────────────────────────────────────── */
.ow-trust-band {
  background: var(--c-trust-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
 
.ow-trust-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--c-navy);
  text-align: center;
  margin-bottom: 2.25rem;
  line-height: 1.3;
}
 
.ow-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
 
.ow-trust-badge {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
 
.ow-trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.35);
}
 
.ow-trust-badge__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
 
.ow-trust-badge__icon svg {
  width: 36px;
  height: 36px;
}
 
.ow-trust-badge__text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
 
.ow-trust-badge__check {
  color: var(--c-orange);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
 
.ow-trust-badge__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.3;
}





 
/* ── 12. Responsive Breakpoints ─────────────────────────── */
 
/* Tablet landscape (< 1200px) */
@media (max-width: 1199px) {
  .ow-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .ow-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
 
  .ow-gallery__card--featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }
 
  .ow-gallery__card--featured .ow-gallery__figure {
    min-height: 340px;
  }
 
  .ow-gallery__card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .ow-gallery__card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .ow-gallery__card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .ow-gallery__card:nth-child(5) { grid-column: 2; grid-row: 3; }
 
  .ow-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
/* Tablet portrait (< 900px) */
@media (max-width: 899px) {
  .ow-highlight-card {
    grid-template-columns: 1fr;
  }
 
  .ow-highlight-card__media {
    min-height: 280px;
  }
 
  .ow-process-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
 
  .ow-process-list::before {
    display: none;
  }
 
  .ow-process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
  }
 
  .ow-process-step__icon-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
  }
 
  .ow-process-step__body {
    align-items: flex-start;
    padding-top: 0.5rem;
  }
 
  .ow-process-step__desc {
    max-width: none;
  }
 
  /* Vertical connector line between steps */
  .ow-process-step:not(:last-child) .ow-process-step__connector {
    display: block;
    position: absolute;
    left: 35px; /* center of 72px icon */
    top: 72px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: rgba(245, 166, 35, 0.3);
  }
 
  .ow-process-step {
    position: relative;
  }
}
 
/* Mobile (< 768px) */
@media (max-width: 767px) {
  .ow-br { display: inline; }
 
  .ow-stats-grid {
    grid-template-columns: 1fr;
  }
 
  .ow-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
 
  .ow-gallery__card--featured {
    grid-column: 1;
    grid-row: auto;
  }
 
  .ow-gallery__card--featured .ow-gallery__figure {
    min-height: 260px;
  }
 
  .ow-gallery__card:nth-child(2),
  .ow-gallery__card:nth-child(3),
  .ow-gallery__card:nth-child(4),
  .ow-gallery__card:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
 
  .ow-gallery__figure {
    min-height: 220px;
  }
 
  /* Always show overlay on mobile (no hover) */
  .ow-gallery__overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(8, 43, 89, 0.82) 0%,
      rgba(8, 43, 89, 0.2)  50%,
      transparent           75%
    );
  }
 
  .ow-trust-grid {
    grid-template-columns: 1fr;
  }
 
  .ow-highlight-card__content {
    padding: 1.75rem 1.25rem;
  }
}
 
/* Small mobile (< 480px) */
@media (max-width: 479px) {
  .ow-stat-card__inner {
    padding: 1.1rem 1rem;
  }
 
  .ow-process-step__icon-wrap,
  .ow-process-step__icon {
    width: 56px;
    height: 56px;
  }
 
  .ow-highlight-card__badge {
    padding: 0.5rem 0.85rem;
  }
 
  .ow-highlight-card__badge-num {
    font-size: 1.35rem;
  }
}
 
/* ── 13. Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ow-gallery__img,
  .ow-gallery__overlay,
  .ow-stat-card,
  .ow-trust-badge,
  .ow-highlight-card__img,
  .ow-process-step__icon-wrap,
  .ow-btn { transition: none; }
 
  .ow-gallery__card:hover .ow-gallery__img,
  .ow-highlight-card:hover .ow-highlight-card__img { transform: none; }
}
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-row, .mv-row, .team-row {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .hero-row .img-placeholder { aspect-ratio: 16/9; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-row { grid-template-columns: repeat(3, 1fr); }
      .closing-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
    }
 
    @media (max-width: 600px) {
      .about-section { padding: 56px 0 48px; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: 1fr; }
      .mv-row { grid-template-columns: 1fr; }
    }
 
    @media (prefers-reduced-motion: reduce) {
      .service-card, .stat-card, .cta-btn { transition: none; }
    }


@media (max-width: 800px) {
    nav {
        padding: 0px 20px 0px 20px; 
    }
    .nav1 img{
        height: 90px;
    }
    .nav1 h4{
        font-size: 0.9rem;
    }
    .nav2 {
        display: none;
    }
    .nav3 {
        display: flex;
    }
    

}
@media (max-width: 400px){
    .sidebar{
        width: 100%;
    }
    .nav1 h4{
        font-size: 0.9rem;
    }
    .sidebar h4{
        font-size: 0.85rem;
    }
    .sidebar a{
        font-size: 0.85rem;
    }
    .nav1 img{
        height: 80px;
    }

}
@media (max-width: 1100px){
    .nav2 h4{
        font-size: 0.85rem;
    }
    .nav2 a{
        font-size: 0.85rem;
    }
}
/* Large Mobile: 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .hero-section {
        width: 100%;
        min-height: 100vh;
        height: auto;
        margin-top: 70px;
        padding: 40px 24px;
        align-items: center;
        background-size: cover;
        background-position: center;
    }

    .hero-section-intro {
        width: 90%;
        max-width: 620px;
        height: auto;
        margin-top: 0;
        padding: 32px 28px;
        font-size: 1rem;
        line-height: 1.7;
        border-radius: 16px;
        text-align: center;
    }

    .hero-section span {
        font-size: 40px;
    }

    .hero-section h3 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
}

/* Tablet: 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    html,
    body {
        overflow-x: hidden;
    }

    .hero-section {
        width: 100%;
        min-height: 100vh;
        height: auto;
        margin-top: 80px;
        padding: 50px 32px;
        align-items: center;
        background-size: cover;
        background-position: center;
    }

    .hero-section-intro {
        width: 82%;
        max-width: 820px;
        height: auto;
        margin-top: 0;
        padding: 40px 42px;
        font-size: 1.08rem;
        line-height: 1.8;
        border-radius: 18px;
    }

    .hero-section span {
        font-size: 45px;
    }

    .hero-section h3 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
}

/* Laptop/Desktop: 1025px and above */
@media (min-width: 1025px) {
    html,
    body {
        overflow-x: hidden;
    }

    .hero-section {
        width: 100%;
        min-height: 100vh;
        height: auto;
        padding: 0 40px 60px;
        background-size: cover;
        background-position: center;
    }

    .hero-section-intro {
        width: 70%;
        max-width: 1100px;
        min-height: 70vh;
        height: auto;
        padding: 30px 50px;
        font-size: 1.2rem;
        line-height: 2;
    }

    .hero-section h3 {
        font-size: 2rem;
        line-height: 1.3;
    }
}
/* Mobile: up to 480px */
@media (max-width: 600px) {
    .hero-features,
    .hero-stats {
        flex-direction: column;
        gap: 12px;
        margin-top: 18px;
    }

    .hero-feature-card,
    .hero-stat-card {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .hero-feature-card,
    .hero-feature-card span {
        font-size: 0.9rem;
    }

    .hero-stat-card strong {
        font-size: 1.25rem;
    }

    .hero-stat-card span {
        font-size: 0.85rem;
    }
}

/* Large Mobile: 481px to 768px */
@media (min-width: 600px) and (max-width: 900px) {
    .hero-features,
    .hero-stats {
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 20px;
    }

    .hero-feature-card,
    .hero-stat-card {
        flex: 1 1 45%;
        padding: 13px 15px;
    }
}

/* Tablet: 769px to 1024px */
@media (min-width: 900px) and (max-width: 1200px) {
    .hero-features,
    .hero-stats {
        gap: 16px;
        margin-top: 22px;
    }

    .hero-feature-card,
    .hero-stat-card {
        padding: 14px 15px;
    }

    .hero-stat-card strong {
        font-size: 1.35rem;
    }
}

/* Desktop: 1025px and above */
@media (min-width: 1200px) {
    .hero-features,
    .hero-stats {
        flex-direction: row;
        gap: 18px;
    }

    .hero-feature-card,
    .hero-stat-card {
        max-width: 260px;
    }
}




/* =====================================================
   GLOBAL: SMOOTH SCROLL NAVIGATION
   ===================================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* offsets the fixed nav height */
}

/* Sidebar nav items generated by JS reuse .sidebar h4/a styles already
   defined above; no extra rules required. */

/* =====================================================
   CONTACT SECTION — "Connect With Us"
   Uses the existing brand variables defined in :root
   (--c-navy, --c-gold, --c-bg, --c-surface, --c-text, --c-muted)
   ===================================================== */
.contact-section {
    background: var(--c-bg);
    padding: var(--section-py) var(--section-px);
}

.contact-container {
    max-width: 1180px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.contact-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-navy);
    background: var(--c-gold-light);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.contact-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--c-navy);
    margin-bottom: 0.75rem;
}

.contact-subheading {
    font-family: var(--font-body);
    color: var(--c-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: stretch;
}

/* ── Left: Company Info ───────────────────────────── */
.contact-info {
    background: var(--c-navy);
    color: #fff;
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-base);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: var(--c-gold);
    opacity: 0.12;
    border-radius: 50%;
}

.contact-info__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.contact-info__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
}

.contact-info__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.16);
    color: var(--c-gold);
    font-size: 1.1rem;
}

.contact-info__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2px;
}

.contact-info__value {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
}

a.contact-info__value:hover {
    color: var(--c-gold);
}

.contact-info__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 999px;
}

.contact-info__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: contact-pulse 1.8s infinite;
}

@keyframes contact-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ── Right: Contact Form ──────────────────────────── */
.contact-form-wrap {
    background: var(--c-surface);
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-base);
    border: 1px solid var(--c-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--c-text);
}

.form-group input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--c-text);
    padding: 13px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    background: var(--c-bg);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder {
    color: var(--c-muted);
}

.form-group input:focus {
    border-color: var(--c-navy);
    box-shadow: 0 0 0 3px rgba(5, 23, 97, 0.12);
}

.form-group input.input-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-error {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #ef4444;
    min-height: 14px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-navy);
    background: var(--c-gold);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-base);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--c-gold-light);
}

.contact-form__note {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #16a34a;
    text-align: center;
    min-height: 18px;
}

/* ── Responsiveness ───────────────────────────────── */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-wrap {
        padding: 1.75rem 1.25rem;
    }
}

/* =====================================================
   SITE FOOTER
   ===================================================== */
.site-footer {
    background: #051761;
    color: #ffffff;
    padding: 4rem clamp(1.25rem, 5vw, 5rem) 0;
    font-family: var(--font-body, 'Inter', sans-serif);
}
 
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
 
.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}
 
.footer-col--brand {
    flex: 1.4 1 280px;
}
 
/* Column 1: Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.1rem;
}
 
.footer-logo__img {
    height: 48px;
    width: auto;
    border-radius: 6px;
}
 
.footer-logo__text {
    font-family: var(--font-display, 'Manrope', sans-serif);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: 0.02em;
}
 
.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}
 
/* Column headings */
.footer-heading {
    font-family: var(--font-display, 'Manrope', sans-serif);
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 1.4rem;
    position: relative;
}
 
.footer-heading::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: #fbbf24;
    margin-top: 10px;
    border-radius: 2px;
}
 
/* Column 2: Quick Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
 
.footer-links a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.25s ease;
}
 
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1.5px;
    background: #fbbf24;
    transition: width 0.3s ease;
}
 
.footer-links a:hover {
    color: #ffffff;
}
 
.footer-links a:hover::after {
    width: 100%;
}
 
/* Column 3: Contact Information */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
 
.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease, transform 0.25s ease;
}
 
.footer-contact__item:hover {
    color: #ffffff;
    transform: translateX(3px);
}
 
.footer-contact__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.14);
    color: #fbbf24;
    font-size: 0.85rem;
}
 
.footer-contact__item a {
    color: inherit;
    text-decoration: none;
}
 
.footer-contact__item--areas {
    line-height: 1.5;
}
 
/* Column 4: Why Choose Us */
.footer-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
}
 
.footer-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.footer-checklist i {
    color: #fbbf24;
    font-size: 0.85rem;
}
 
/* Social Media Row */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 0;
    max-width: 1280px;
    margin: 0 auto;
}
 
.footer-social__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
 
.footer-social__icon:hover {
    background: #fbbf24;
    color: #051761;
    transform: scale(1.12);
}
 
/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
 
.footer-bottom__copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
 
.footer-bottom__credit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}
 
.footer-bottom__credit-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}
 
.footer-bottom__credit-text strong {
    color: #fbbf24;
    font-weight: 700;
}
 
.footer-bottom__credit-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}
 
.footer-bottom__credit-contact i {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-left: 8px;
}
 
.footer-bottom__credit-contact i:first-child {
    margin-left: 0;
}
 
/* Responsiveness */
@media (max-width: 900px) {
    .footer-main {
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .footer-bottom__credit {
        align-items: flex-start;
        text-align: left;
    }
}
 
@media (max-width: 540px) {
    .site-footer {
        padding-top: 3rem;
    }
    .footer-col {
        flex: 1 1 100%;
    }
    .footer-social {
        gap: 0.8rem;
    }
}
