
/* ===== FONT AWESOME OFFLINE FALLBACK ===== */
/* When FA loads (internet), these rules are overridden by FA's own CSS */
/* When FA fails (offline/local file), show clean minimal placeholders */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  src: local('Font Awesome 6 Free');
}
.fas, .fab, .far {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}
/* Ensure icon containers don't collapse when FA not loaded */
.strip-icon .fas, .strip-icon .fab,
.service-icon .fas, .service-icon .fab,
.info-icon .fas, .info-icon .fab,
.why-icon .fas, .why-icon .fab,
.value-icon .fas, .value-icon .fab,
.hero-card .icon .fas,
.social-links a .fab,
.m-icon .fas,
.feat-icon.fas {
  min-width: 16px;
  min-height: 16px;
}
/* Hamburger menu always visible */
.hamburger { cursor: pointer; }

/* ===== CRITICAL: Ensures layout works even if fonts/icons fail to load ===== */
* { box-sizing: border-box; }
body { font-family: 'Nunito Sans','Segoe UI','Helvetica Neue',Arial,sans-serif; }
h1,h2,h3,h4,h5,h6,.btn,.nav-link,.logo-text,.section-title {
  font-family: 'Montserrat','Segoe UI','Helvetica Neue',Arial,sans-serif;
}
/* Ensure icons container never collapses */
.fas,.fab,.far,.fal { display:inline-block; min-width:1em; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2e4a;
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #4cd964;
  --teal: #1abc9c;
  --white: #ffffff;
  --light-bg: #f4f8f6;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --dark-text: #1a2e4a;
  --body-text: #555;
  --border: #dee2e6;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --gradient: linear-gradient(135deg, #1a2e4a 0%, #2a4a6e 100%);
  --green-gradient: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
  --hero-gradient: linear-gradient(135deg, #0d1f35 0%, #1a3a5c 50%, #0d2e1f 100%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: var(--dark-text); line-height: 1.3; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-light { background: var(--light-bg); }
.bg-navy { background: var(--navy); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 6px; font-weight: 700;
  font-size: 14px; cursor: pointer; border: 2px solid transparent;
  transition: all 0.3s ease; font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.btn-primary { background: var(--green-gradient); color: var(--white); border-color: transparent; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,204,113,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #2a4a6e; transform: translateY(-2px); }

.section-label {
  font-size: 13px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.section-title {
  font-size: 34px; font-weight: 800; color: var(--navy); margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-subtitle { font-size: 15px; color: var(--gray); max-width: 600px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy); color: var(--white);
  padding: 8px 0; font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,0.7); font-size: 14px; }
.topbar-right a:hover { color: var(--green); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white); padding: 14px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled { padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 52px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.logo-text .brand span { color: var(--green); }
.logo-text .sub { font-size: 10px; letter-spacing: 2px; color: var(--green); font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 600;
  color: var(--navy); border-radius: 4px;
  font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link i { font-size: 11px; margin-left: 3px; }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); min-width: 200px; border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all 0.3s ease;
  border-top: 3px solid var(--green); z-index: 100;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 18px; font-size: 13px; font-weight: 600;
  color: var(--navy); border-bottom: 1px solid var(--light-gray);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--green); padding-left: 24px; }

.nav-cta { margin-left: 10px; }

/* Mobile Nav Toggle */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  background: var(--hero-gradient);
  padding: 90px 0 60px; position: relative; overflow: hidden;
  min-height: 600px; display: flex; align-items: center;
}
.hero::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='%232ecc71' fill-opacity='0.04'%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");
}
.hero .container { display: block; position: relative; z-index: 2; max-width: 680px; }
.hero-content { padding-top: 10px; position: relative; z-index: 2; }
.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff; padding: 6px 14px; border-radius: 30px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 44px; font-weight: 900; color: #ffffff; margin-bottom: 20px; line-height: 1.2;
}
.hero-title span { color: #ffffff; }
.hero-title em { font-style: normal; color: #ffffff; }
.hero-desc { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  padding: 20px; text-align: center; color: var(--white);
  transition: all 0.3s ease;
}
.hero-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.hero-card .icon {
  width: 50px; height: 50px; background: var(--green-gradient);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 22px; color: var(--white);
}
.hero-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.hero-card p { font-size: 11px; color: rgba(255,255,255,0.6); }

/* ── Hero image – full-bleed background, 1/5 larger than hero ── */
.hero-img-wrap {
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  opacity: 0.65;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@keyframes heroImgFloat {
  0%, 100% { transform: scale(1.2) translateY(0px); }
  50%       { transform: scale(1.2) translateY(-6px); }
}

/* ── Hero service cards – 2×2 grid – DOUBLED SIZE ── */
.hero-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  margin-top: 24px !important;
}
.hero-card {
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 22px !important;
  padding: 36px 32px !important;
  text-align: center !important;
  color: var(--white) !important;
  transition: all 0.3s ease !important;
  animation: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
}
.hero-card:hover {
  background: rgba(255,255,255,0.13) !important;
  transform: translateY(-6px) !important;
  border-color: rgba(46,204,113,0.5) !important;
  box-shadow: 0 12px 40px rgba(46,204,113,0.15) !important;
}
.hero-card .icon {
  width: 96px !important;
  height: 96px !important;
  background: linear-gradient(135deg, #2ecc71, #1abc9c) !important;
  border-radius: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  font-size: 42px !important;
  color: var(--white) !important;
  flex-shrink: 0 !important;
  box-shadow: 0 8px 28px rgba(46,204,113,0.4) !important;
}
.hero-card h4 {
  font-size: 18px !important;
  font-weight: 800 !important;
  margin: 0 !important;
  color: var(--white) !important;
  font-family: 'Montserrat','Segoe UI',sans-serif !important;
  line-height: 1.3 !important;
}
.hero-card p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Hero stats */
.hero-stats { display: flex; gap: 40px; margin-top: 36px; }
.stat-item { text-align: center; }
.stat-num { font-size: 32px; font-weight: 900; color: var(--green); line-height: 1; }
.stat-num sup { font-size: 18px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===== SERVICES STRIP ===== */
.services-strip {
  background: var(--white); padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.services-strip .container { display: grid; grid-template-columns: repeat(4,1fr); }
.strip-item {
  padding: 28px 20px; border-right: 1px solid var(--light-gray);
  display: flex; align-items: flex-start; gap: 14px;
  transition: all 0.3s ease; cursor: pointer;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: #f8fffc; }
.strip-icon {
  width: 44px; height: 44px; background: rgba(46,204,113,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 18px; flex-shrink: 0;
}
.strip-item h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.strip-item p { font-size: 11px; color: var(--gray); line-height: 1.5; }
.strip-item a { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 6px; display: block; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 80px 0; background: var(--white); }
.about-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 16px; box-shadow: var(--shadow-hover); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--white);
  border-radius: 12px; padding: 20px; text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .num { font-size: 36px; font-weight: 900; color: var(--green); line-height: 1; }
.about-badge .txt { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 4px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.feat-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--light-bg); border-radius: 8px; padding: 14px;
}
.feat-icon { color: var(--green); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.feat-item h5 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.feat-item p { font-size: 12px; color: var(--gray); }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 80px 0; background: var(--light-bg); }
.why-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: var(--white); border-radius: 12px; padding: 24px;
  box-shadow: var(--shadow); transition: all 0.3s ease; border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--green); }
.why-icon { font-size: 26px; color: var(--green); margin-bottom: 10px; }
.why-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: 12px; color: var(--gray); }

.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 30px; }
.stat-card {
  background: var(--navy); border-radius: 12px; padding: 20px;
  text-align: center; color: var(--white);
}
.stat-card .num { font-size: 30px; font-weight: 900; color: var(--green); }
.stat-card .lbl { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===== CONSULTATION BANNER ===== */
.consult-banner {
  background: var(--green-gradient); padding: 50px 0;
}
.consult-banner .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.consult-banner h2 { font-size: 26px; font-weight: 800; color: var(--white); }
.consult-banner p { color: rgba(255,255,255,0.85); font-size: 14px; margin-top: 6px; }
.btn-white { background: var(--white); color: var(--green-dark); font-weight: 700; }
.btn-white:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo img { height: 60px; width: auto; background: white; border-radius: 8px; padding: 6px 10px; margin-bottom: 14px; }
.footer-logo .brand { font-family: 'Montserrat',sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.footer-logo .brand span { color: var(--green); }
.footer-logo .tagline { font-size: 11px; color: var(--green); letter-spacing: 2px; text-transform: uppercase; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); margin: 14px 0 20px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px; transition: all 0.3s;
}
.social-links a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--green); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact p i { color: var(--green); margin-top: 2px; font-size: 14px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0; margin-top: 50px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--green); }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  background: var(--hero-gradient); padding: 70px 0;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::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='%232ecc71' fill-opacity='0.04'%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-hero h1 { font-size: 42px; font-weight: 900; color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero h1 span { color: var(--green); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 550px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.breadcrumb a { color: var(--green); }
.breadcrumb span { opacity: 0.5; }

/* ===== ABOUT PAGE ===== */
.about-story { padding: 80px 0; }
.about-story .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-hover); }
.story-img img { width: 100%; height: 400px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.value-card {
  background: var(--white); border-radius: 12px; padding: 30px;
  text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--green);
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.value-icon { font-size: 36px; color: var(--green); margin-bottom: 14px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--gray); }
.team-section { padding: 80px 0; background: var(--light-bg); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 40px; }
.team-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s ease; text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-img { background: linear-gradient(135deg, #1a2e4a, #2ecc71); height: 200px; display: flex; align-items: center; justify-content: center; font-size: 60px; color: rgba(255,255,255,0.3); }
.team-info { padding: 20px; }
.team-info h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
.team-info span { font-size: 12px; color: var(--green); font-weight: 600; }

/* ===== SERVICES PAGE ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.service-card {
  background: var(--white); border-radius: 14px; padding: 34px 28px;
  box-shadow: var(--shadow); transition: all 0.3s ease; border-bottom: 4px solid transparent;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green-gradient); transform: scaleX(0); transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 60px; height: 60px; background: rgba(46,204,113,0.1);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--green); margin-bottom: 18px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--green-gradient); color: var(--white); }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.service-features li { font-size: 13px; color: var(--body-text); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.service-features li i { color: var(--green); font-size: 12px; }
.learn-more { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 13px; font-weight: 700; margin-top: 16px; }
.learn-more:hover { gap: 10px; }

/* ===== SOLUTIONS PAGE ===== */
.solutions-list { display: flex; flex-direction: column; gap: 50px; margin-top: 40px; }
.solution-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.solution-item.reverse { direction: rtl; }
.solution-item.reverse > * { direction: ltr; }
.solution-visual {
  background: linear-gradient(135deg, var(--navy), #2a4a6e);
  border-radius: 16px; padding: 40px; text-align: center; color: var(--white);
  min-height: 280px; display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.solution-content h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.solution-content p { color: var(--gray); margin-bottom: 20px; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  background: rgba(46,204,113,0.1); color: var(--green-dark);
  border: 1px solid rgba(46,204,113,0.3); padding: 4px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600;
}

/* ===== CONSULTING PAGE ===== */
.consulting-intro { padding: 80px 0; }
.consulting-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.consulting-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 40px; }
.consult-card {
  background: var(--white); border-radius: 12px; padding: 28px;
  box-shadow: var(--shadow); border-left: 4px solid var(--green);
  transition: all 0.3s ease;
}
.consult-card:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.consult-card .icon { font-size: 28px; color: var(--green); margin-bottom: 12px; }
.consult-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.consult-card p { font-size: 13px; color: var(--gray); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; }
.contact-info-card {
  background: var(--navy); border-radius: 16px; padding: 40px; color: var(--white);
}
.contact-info-card h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 30px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px; background: rgba(46,204,113,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 18px; flex-shrink: 0;
}
.info-item h5 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.info-item p { font-size: 13px; color: rgba(255,255,255,0.7); }
.contact-form-card { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form-card p { color: var(--gray); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  transition: border-color 0.3s; outline: none; color: var(--dark-text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== GET IN TOUCH MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.3s;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: 16px; padding: 40px;
  max-width: 540px; width: 100%; position: relative;
  transform: translateY(20px); transition: transform 0.3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--light-gray); border: none; border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.modal-close:hover { background: var(--green); color: var(--white); }
.modal h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.modal p { color: var(--gray); font-size: 14px; margin-bottom: 24px; }

/* ===== KNOW MORE SECTION ===== */
.know-more-section { padding: 80px 0; background: var(--white); }
.know-more-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.km-visual { position: relative; }
.km-img-main { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-hover); }
.km-img-main img { width: 100%; height: 360px; object-fit: cover; }
.km-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green-gradient); color: var(--white);
  border-radius: 12px; padding: 18px 22px; box-shadow: var(--shadow);
}
.km-float .num { font-size: 28px; font-weight: 900; }
.km-float p { font-size: 12px; opacity: 0.9; }

.milestones { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.milestone {
  display: flex; align-items: center; gap: 16px;
  background: var(--light-bg); border-radius: 10px; padding: 16px;
}
.m-icon { width: 42px; height: 42px; background: var(--green-gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; flex-shrink: 0; }
.m-text h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.m-text p { font-size: 12px; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container, .about-section .container, .why-section .container,
  .about-story .container, .consulting-intro .container, .know-more-section .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 34px; }
  .section-title { font-size: 28px; }
  .services-strip .container { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .solution-item, .solution-item.reverse { grid-template-columns: 1fr; direction: ltr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-link { display: block; padding: 12px; border-bottom: 1px solid var(--light-gray); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--light-bg); margin-top: 0; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .services-strip .container { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .hero-btns { flex-direction: column; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .consult-banner .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-grid, .values-grid, .consulting-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 24px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fade-in { animation: fadeInUp 0.6s ease forwards; }
/* float animation removed – cards are now static grid under hero image */

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  background: rgba(46,204,113,0.1); border: 1px solid var(--green);
  color: var(--green-dark); padding: 14px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; display: none; margin-top: 10px;
}
.success-msg.show { display: block; }

/* Map placeholder */
.map-placeholder {
  background: var(--light-bg); border-radius: 12px; height: 300px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 15px; margin-top: 40px;
  border: 2px dashed var(--border); flex-direction: column; gap: 10px;
}
.map-placeholder i { font-size: 36px; color: var(--green); }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 50px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(to right, var(--green), var(--teal)); z-index: 0; }
.step {
  text-align: center; position: relative; z-index: 1;
  padding: 0 16px;
}
.step-num {
  width: 70px; height: 70px; background: var(--white); border: 3px solid var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px; font-weight: 900; color: var(--green);
  box-shadow: 0 0 0 6px rgba(46,204,113,0.1);
}
.step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--gray); }

/* Testimonials */
.testimonials { padding: 80px 0; background: var(--light-bg); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.test-card {
  background: var(--white); border-radius: 14px; padding: 28px;
  box-shadow: var(--shadow); position: relative;
}
.test-card::before { content: '\201C'; font-size: 60px; color: var(--green); opacity: 0.2; position: absolute; top: 10px; left: 20px; font-family: Georgia,serif; line-height: 1; }
.test-stars { color: #f39c12; font-size: 13px; margin-bottom: 14px; }
.test-text { font-size: 13px; color: var(--gray); font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 42px; height: 42px; background: var(--green-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; font-weight: 700; }
.test-author h5 { font-size: 13px; font-weight: 700; color: var(--navy); }
.test-author span { font-size: 11px; color: var(--gray); }

@media (max-width: 768px) { .test-grid { grid-template-columns: 1fr; } .process-steps { grid-template-columns: 1fr 1fr; } .process-steps::before { display: none; } }
