/* ============================================================
   BRIYA PROJECTS — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:   #1a3a5c;
  --accent:    #e8880a;
  --accent2:   #f5a623;
  --dark:      #0d1b2a;
  --light:     #f4f6f9;
  --white:     #ffffff;
  --text:      #444c5e;
  --text-light:#777f8e;
  --border:    #dde2ea;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --transition: .3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', 'Open Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { font-weight: 700; color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,3.4rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--text); }

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-light   { background: var(--light); }
.bg-dark    { background: var(--dark); }
.bg-primary { background: var(--primary); }
.text-center{ text-align: center; }
.text-white { color: var(--white) !important; }
.text-white p, .text-white h2, .text-white h3, .text-white h4 { color: var(--white) !important; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  margin-bottom: 14px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}
.divider {
  width: 52px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px 0 24px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: #c97008; border-color: #c97008; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================================
   SITE HEADER — Fixed wrapper containing top-bar + navbar
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary);
  padding: 7px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.top-bar a { color: rgba(255,255,255,.8); transition: var(--transition); }
.top-bar a:hover { color: var(--accent); }
.top-bar-links { display: flex; align-items: center; gap: 20px; }
.top-bar-contact { display: flex; align-items: center; gap: 20px; }
.top-bar-contact span { display: flex; align-items: center; gap: 5px; }
.top-bar-links span  { display: flex; align-items: center; gap: 5px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  /* Position is handled by .site-header — navbar is static inside it */
  position: static;
  background: var(--white);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: none; } /* shadow handled by .site-header */
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  gap: 8px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo .logo-icon svg { width: 22px; height: 22px; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-weight: 600; font-size: .88rem;
  color: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { margin-left: 8px; white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BANNER / PAGE HERO
   ============================================================ */
.page-banner {
  background: url('../images/banner-bg.svg') center/cover no-repeat, linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
  padding: 100px 0 70px;
  margin-top: 106px; /* top-bar (~36px) + navbar (70px) */
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 12px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.page-banner .banner-shape {
  position: absolute; right: -80px; bottom: -40px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}

/* ============================================================
   HOME HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 106px; /* top-bar (~36px) + navbar (70px) */
  height: 680px;
}
.slides { display: flex; height: 100%; transition: transform .7s cubic-bezier(.77,0,.18,1); }
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex; align-items: center;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,.75) 0%, rgba(13,27,42,.18) 60%, rgba(13,27,42,.05) 100%);
}
/* Hero Slide background images */
.slide:nth-child(1) .slide-bg { background-image: url('../images/hero1.svg'); background-size: cover; background-position: center; }
.slide:nth-child(2) .slide-bg { background-image: url('../images/hero2.svg'); background-size: cover; background-position: center; }
.slide:nth-child(3) .slide-bg { background-image: url('../images/hero3.svg'); background-size: cover; background-position: center; }
/* Dark overlay on .slide-bg::after for text readability */

.slide-content {
  position: relative; z-index: 1;
  max-width: 660px;
}
.slide-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  font-size: .75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 18px;
}
.slide-content h1 { color: var(--white); margin-bottom: 20px; }
.slide-content p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 30px; max-width: 520px; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
  position: absolute; bottom: 34px; right: 40px;
  display: flex; gap: 10px; z-index: 10;
}
.slider-btn {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slider-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; }

.slider-dots {
  position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.dot.active { background: var(--accent); border-color: var(--accent); transform: scale(1.2); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--accent);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.85); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   ABOUT SECTION (Home)
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 8px;
  overflow: hidden;
  height: 450px;
  background: linear-gradient(135deg,#1a3a5c,#2c7be5);
  display: flex; align-items: center; justify-content: center;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  padding: 16px;
}
.about-img-badge .num { font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; }
.about-img-badge .lbl { font-size: .72rem; color: rgba(255,255,255,.9); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.about-feat-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.about-feat-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.about-feat-icon svg { width: 20px; height: 20px; fill: #fff; }
.about-feat-item h4 { color: var(--dark); margin-bottom: 4px; }
.about-feat-item p  { font-size: .88rem; color: var(--text-light); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.service-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), #2c7be5);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-img svg { width: 72px; height: 72px; fill: rgba(255,255,255,.2); }
.service-img .service-icon-wrap {
  position: absolute;
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-img .service-icon-wrap svg { width: 38px; height: 38px; fill: #fff; }
.service-body { padding: 26px; }
.service-body h3 { margin-bottom: 10px; color: var(--dark); }
.service-body p  { font-size: .9rem; color: var(--text-light); margin-bottom: 18px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 700; font-size: .88rem;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-we-do-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.target-list { display: flex; flex-direction: column; gap: 16px; }
.target-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.target-item:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(232,136,10,.12); }
.target-num {
  width: 42px; min-width: 42px; height: 42px;
  background: var(--accent);
  color: #fff; font-weight: 800; font-size: 1rem;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.target-item h4 { margin-bottom: 4px; }
.target-item p  { font-size: .88rem; color: var(--text-light); }

.wwd-image {
  border-radius: 10px; overflow: hidden;
  height: 460px;
  background: linear-gradient(135deg, #0d2a45, #1a5c3a);
  display: flex; align-items: center; justify-content: center;
}
.wwd-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CLIENTELE
   ============================================================ */
.clients-section { padding-bottom: 80px; }
.clients-track {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
  padding: 8px 0;
}
.clients-track::before, .clients-track::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.clients-track::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.clients-track::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }
.clients-inner {
  display: flex; gap: 30px;
  animation: scroll-clients 25s linear infinite;
  width: max-content;
}
.clients-inner:hover { animation-play-state: paused; }
@keyframes scroll-clients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  width: 180px; height: 80px; min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  transition: var(--transition);
}
.client-logo:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(232,136,10,.12); }
.client-logo span {
  font-weight: 700; font-size: .82rem; color: var(--text-light);
  text-align: center; text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 10px; }
.cta-text p  { color: rgba(255,255,255,.75); max-width: 560px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-logo .logo-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo .logo-icon svg { width: 24px; height: 24px; fill: #fff; }
.footer-logo span { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-logo span em { color: var(--accent); font-style: normal; }
.footer-about p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  font-size: .85rem; font-weight: 700;
}
.footer-social a:hover { background: var(--accent); color: #fff; }

.footer-col h4 { color: var(--white); margin-bottom: 22px; font-size: 1rem; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--accent); border-radius: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1rem; font-weight: 700; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-icon {
  width: 32px; min-width: 32px; height: 32px;
  background: rgba(232,136,10,.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.footer-contact-icon svg { width: 15px; height: 15px; fill: var(--accent); }
.footer-contact-item span { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-contact-item a { color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--accent); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.mv-card {
  padding: 40px;
  border-radius: 10px;
  position: relative; overflow: hidden;
}
.mv-card.mission { background: var(--primary); }
.mv-card.vision  { background: var(--dark); }
.mv-card::before {
  content: '';
  position: absolute; right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.mv-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mv-icon svg { width: 28px; height: 28px; fill: #fff; }
.mv-card h3 { color: #fff; margin-bottom: 14px; font-size: 1.4rem; }
.mv-card p  { color: rgba(255,255,255,.75); font-size: .93rem; line-height: 1.8; }

.usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.usp-card {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.usp-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.usp-icon {
  width: 70px; height: 70px;
  background: rgba(232,136,10,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 2px solid rgba(232,136,10,.2);
}
.usp-icon svg { width: 30px; height: 30px; fill: var(--accent); }
.usp-card h4 { margin-bottom: 10px; }
.usp-card p  { font-size: .87rem; color: var(--text-light); }

.revenue-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.revenue-card {
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #1a5080);
  position: relative; overflow: hidden;
}
.revenue-card::before {
  content: '';
  position: absolute; right: -20px; bottom: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.revenue-card h4 { color: var(--accent); margin-bottom: 10px; }
.revenue-card p  { color: rgba(255,255,255,.75); font-size: .88rem; }
.revenue-num    { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }

/* ---------- Turnover Timeline ---------- */
.timeline {
  position: relative; padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: var(--border); transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 40px; margin-bottom: 48px;
  align-items: center;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.timeline-item:nth-child(odd)  .timeline-content { margin-right: 60px; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 60px; }
.timeline-content::after {
  content: '';
  position: absolute; top: 50%;
  width: 20px; height: 2px; background: var(--border);
  transform: translateY(-50%);
}
.timeline-item:nth-child(odd)  .timeline-content::after { right: -20px; }
.timeline-item:nth-child(even) .timeline-content::after { left: -20px; }
.timeline-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 50px; height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .8rem;
  border: 4px solid var(--white);
  box-shadow: 0 2px 12px rgba(232,136,10,.3);
  z-index: 1;
}
.timeline-spacer { flex: 1; }
.timeline-content h4 { color: var(--accent); margin-bottom: 6px; font-size: 1.1rem; }
.timeline-content .turnover { font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.timeline-content p { font-size: .87rem; color: var(--text-light); margin-top: 6px; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-filter {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 24px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: var(--transition); color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.project-img {
  height: 220px;
  background: linear-gradient(135deg, #1a3a5c, #2c5f8a);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.badge-completed { background: #16a34a; color: #fff; }
.badge-ongoing   { background: var(--accent); color: #fff; }
.project-body { padding: 22px; }
.project-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.project-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.project-meta span { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.project-meta svg  { width: 13px; height: 13px; fill: var(--accent); }
.project-body p    { font-size: .88rem; color: var(--text-light); }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.team-img {
  height: 230px;
  background: linear-gradient(135deg, #1a3a5c, #2c5f8a);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar {
  width: 90px; height: 90px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: #fff;
}
.team-body { padding: 20px; }
.team-body h4 { margin-bottom: 4px; }
.team-designation { font-size: .82rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--accent); }
.contact-icon {
  width: 52px; min-width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 24px; height: 24px; fill: #fff; }
.contact-info-card h4 { color: var(--dark); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: .9rem; color: var(--text-light); }
.contact-info-card a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap p  { color: var(--text-light); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .87rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem; color: var(--dark);
  transition: var(--transition);
  outline: none;
  font-family: inherit;
  background: var(--light);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,136,10,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.map-embed { border-radius: 10px; overflow: hidden; margin-top: 60px; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 380px; display: block; border: none; }

/* ============================================================
   PLACEHOLDER ILLUSTRATIONS
   ============================================================ */
.placeholder-img {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}
.placeholder-img svg { width: 64px; height: 64px; opacity: .3; fill: #fff; }
.placeholder-img span { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .what-we-do-grid{ grid-template-columns: 1fr; gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid      { grid-template-columns: repeat(3,1fr); }
  .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; padding-left: 60px; }
  .timeline-dot   { left: 24px; }
  .timeline-content, .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { margin: 0; }
  .timeline-content::after { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 28px 24px;
    gap: 4px; z-index: 999;
    align-items: flex-start;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { font-size: 1rem; padding: 12px 16px; display: block; }
  .nav-cta { display: none; }
  .hero { height: 520px; margin-top: 70px; } /* no top-bar on mobile */
  .page-banner { margin-top: 70px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 16px; }
  .stat-item:nth-child(even) { border-right: none; }
  .services-grid  { grid-template-columns: 1fr; }
  .projects-grid  { grid-template-columns: 1fr; }
  .usp-grid       { grid-template-columns: 1fr 1fr; }
  .revenue-grid   { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
  .cta-inner      { flex-direction: column; text-align: center; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .top-bar        { display: none; }
  .site-header .top-bar { display: none; } /* hide top bar, nav only on mobile */
}
@media (max-width: 480px) {
  .usp-grid   { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr 1fr; }
  .slide-btns { flex-direction: column; }
}

/* ============================================================
   LARAVEL BLADE SUPPLEMENTS
   ============================================================ */

/* Section header — tag label + h2 + sub-paragraph */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  margin-bottom: 14px;
  color: var(--dark);
}
.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,136,10,.1);
  border: 1px solid rgba(232,136,10,.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Hero slide with inline background */
.slide { background-size: cover; background-position: center; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,.78) 0%, rgba(13,27,42,.18) 60%, rgba(13,27,42,.04) 100%);
}

/* Slider layout fix for dynamic slides */
.hero-slider { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; display: flex; align-items: center; }
.hero-slider .slide.active { opacity: 1; }
.slider-controls { position: absolute; bottom: 34px; right: 40px; display: flex; gap: 10px; z-index: 10; align-items: center; }
.slider-dots { position: static; transform: none; display: flex; gap: 8px; }

/* Page banner content alias */
.banner-content { position: relative; z-index: 1; }
.banner-overlay { position: absolute; inset: 0; background: rgba(13,27,42,.4); }

/* USPs aliases */
.usps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.usps-grid .usp-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
@media (max-width: 768px) { .usps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .usps-grid { grid-template-columns: 1fr; } }

/* Mission/Vision grid */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-grid .mv-card { background: var(--primary); }
.mv-grid .mv-card:last-child { background: var(--dark); }
.mv-icon svg { fill: none; stroke: #fff; }
@media (max-width: 768px) { .mv-grid { grid-template-columns: 1fr; } }

/* Service detail cards (About page) */
.services-detail { display: flex; flex-direction: column; gap: 64px; }
.service-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-img img { width: 100%; border-radius: 12px; }
.service-detail-content .section-tag { margin-bottom: 8px; }
.service-detail-content h3 { font-size: 1.8rem; margin-bottom: 16px; color: var(--dark); }
.service-detail-content p { color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text); }
.service-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) { .service-detail-card, .service-detail-card.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; } }

/* Turnover grid (flat cards, alternative to timeline) */
.turnover-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; }
.turnover-card { background: var(--white); border-radius: 10px; padding: 28px 24px; border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.turnover-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.turnover-year { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 8px; }
.turnover-amount { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.turnover-desc { font-size: .82rem; color: var(--text-light); }

/* CTA strip */
.cta-strip { background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%); padding: 70px 0; }
.cta-content { text-align: center; }
.cta-content h2 { color: #fff; font-size: 2.2rem; margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 30px; }
.btn-lg { padding: .875rem 2.5rem; font-size: 1rem; }

/* Alert messages */
.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.field-error { display: block; font-size: .78rem; color: #dc2626; margin-top: 4px; }
.req { color: #dc2626; }
.form-group input.error, .form-group textarea.error { border-color: #dc2626; }
.btn-block { width: 100%; justify-content: center; padding: .875rem; font-size: 1rem; }

/* Contact info aliases */
.contact-info { padding-top: 1rem; }
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; color: var(--dark); }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 18px; padding: 20px; background: var(--white); border-radius: 10px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-detail-item:hover { border-color: var(--accent); }
.contact-detail-icon { width: 48px; min-width: 48px; height: 48px; background: rgba(232,136,10,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-item h4 { color: var(--dark); margin-bottom: 4px; font-size: .9rem; }
.contact-detail-item p { font-size: .87rem; color: var(--text-light); margin: 0; }
.contact-detail-item a { color: var(--text-light); transition: var(--transition); }
.contact-detail-item a:hover { color: var(--accent); }

/* About highlights */
.about-highlights { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 12px; }
.highlight-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text); }
.highlight-icon { width: 24px; height: 24px; background: rgba(232,136,10,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 700; font-size: .8rem; flex-shrink: 0; }

/* About stats inline */
.about-stats { display: flex; gap: 32px; margin: 1.5rem 0; }
.mini-stat { display: flex; flex-direction: column; }
.mini-stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.mini-stat-label { font-size: .78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Service card link */
.service-link { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-weight: 600; font-size: .88rem; margin-top: 12px; transition: var(--transition); }
.service-link:hover { gap: 8px; }

/* Client placeholder text */
.client-placeholder { font-size: .82rem; font-weight: 700; color: var(--text-light); text-align: center; padding: 1rem; }

/* Team card photo alias */
.team-photo { height: 230px; background: linear-gradient(135deg, #1a3a5c, #2c5f8a); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px; text-align: center; }
.team-info h3 { margin-bottom: 4px; font-size: 1rem; }

/* Project status badge alias */
.project-status { position: absolute; top: 16px; left: 16px; padding: 4px 12px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.project-status.completed { background: #16a34a; color: #fff; }
.project-status.ongoing { background: var(--accent); color: #fff; }

/* Project info alias */
.project-info { padding: 22px; }
.project-info h3 { margin-bottom: 8px; font-size: 1.1rem; }
.project-info > p { font-size: .88rem; color: var(--text-light); }
.project-location, .project-year { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.project-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }

/* Project filters alias */
.project-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }

/* Background utilities */
.bg-light { background: var(--light); }

/* Reveal animation base */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

