@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:          #ffffff;
  --bg2:         #f6f8f6;
  --bg3:         #eef1ee;
  --green:       #2d6a35;
  --green-lt:    #3a8a44;
  --green-pale:  #e8f3e9;
  --amber:       #c8860a;
  --amber-lt:    #e09c10;
  --amber-pale:  #fdf3e0;
  --dark:        #1a1f1b;
  --text:        #2c3a2e;
  --muted:       #5a6b5c;
  --border:      #d4dcd5;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 30px rgba(0,0,0,0.11);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ TOPBAR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.topbar {
  background: var(--dark); color: #fff;
  height: 38px; padding: 0 6%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; font-weight: 500;
  position: absolute; top: 0; left: 0; right: 0; z-index: 301;
}
.topbar-left { display: flex; gap: 1.5rem; }
.topbar-left a { color: rgba(255,255,255,0.85); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-left a:hover { color: var(--green-lt); }
.topbar-left a svg { color: var(--green-lt); } 
.topbar-right { display: flex; gap: 8px; }
.topbar-right a {
  width: 26px; height: 26px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; transition: 0.25s;
}
.topbar-right a:hover { background: var(--green); border-color: var(--green); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ NAVBAR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
nav {
  position: absolute; top: 38px; left: 0; right: 0; z-index: 300;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  transition: height 0.3s, top 0.3s, box-shadow 0.3s;
}
nav.scrolled { position: fixed; top: 0; height: 60px; box-shadow: 0 2px 16px rgba(0,0,0,0.1); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-box {
  width: 36px; height: 36px; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.logo-box svg { width: 20px; height: 20px; fill: #fff; }
.logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 2px; color: var(--dark); }
.logo-name span { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; margin-left: auto; margin-right: 30px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green);
  transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-arrow { transition: transform 0.2s; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 14px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; box-shadow: var(--shadow-md);
  min-width: 220px; max-height: 400px; overflow-y: auto; padding: 8px 0; z-index: 400;
}
/* Invisible bridge to fix hover gap issue */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; background: transparent; z-index: 399;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 18px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s, color 0.15s;
  text-transform: none;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--green-pale); color: var(--green); }
.dropdown-menu a::after { display: none !important; }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.dropdown-menu a i { width: 20px; text-align: center; margin-right: 8px; color: var(--green-lt); transition: 0.15s; }
.dropdown-menu a:hover i { color: var(--green); transform: scale(1.1); }

.nav-cta {
  background: var(--amber) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber-lt) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.3s; }

.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; top: 106px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 299;
  padding: 1.5rem 6%; overflow-y: auto;
  border-top: 1px solid var(--border);
  transition: top 0.3s;
}
nav.scrolled + .mobile-nav { top: 60px; }
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .mob-section-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; color: var(--muted);
  padding: 14px 0 6px; border-bottom: none;
  cursor: default;
}
.mobile-nav .mob-sub { padding-left: 14px; font-size: 0.88rem; text-transform: none; }
.mobile-nav a i { width: 20px; text-align: center; margin-right: 8px; color: var(--green-lt); }
.mob-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-nav .mob-cta {
  margin-top: 1.2rem; background: var(--amber); color: #fff !important;
  text-align: center; padding: 14px; border-radius: 4px; border-bottom: none;
}

.page-body { padding-top: 106px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ TICKER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ticker-wrap { background: var(--green); overflow: hidden; padding: 10px 0; }
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  white-space: nowrap; padding: 0 2.5rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SECTION COMMONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
section { padding: 80px 6%; }
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); background: var(--green-pale);
  padding: 4px 12px; border-radius: 2px; margin-bottom: 14px;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 12px;
}
.section-title span { color: var(--green); }
.section-sub {
  color: var(--muted); font-size: 1rem;
  max-width: 560px; margin-bottom: 3rem; line-height: 1.75;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ BUTTONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 13px 28px; border-radius: 4px; border: none;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover { background: var(--green-lt); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(45,106,53,0.25); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green);
  padding: 12px 26px; border-radius: 4px; border: 2px solid var(--green);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--green); color: #fff; }

.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #fff;
  padding: 13px 28px; border-radius: 4px; border: none;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-amber:hover { background: var(--amber-lt); transform: translateY(-1px); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ PAGE HERO (inner pages) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a3d2c 100%);
  padding: 60px 6% 55px; color: #fff;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.page-hero::after {
  content: ''; position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--green-lt); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.page-hero h1 span { color: var(--green-lt); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; font-size: 1rem; }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ NOTICE BOX Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.notice-box {
  background: var(--amber-pale);
  border: 1px solid #e8c47a; border-left: 4px solid var(--amber);
  border-radius: 4px; padding: 1.4rem 1.8rem;
}
.notice-box h4 { font-weight: 700; color: var(--amber); margin-bottom: 6px; font-size: 0.95rem; }
.notice-box p { font-size: 0.92rem; color: #6b4e10; line-height: 1.65; }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
footer { background: var(--dark); color: #8a9a8e; padding: 60px 6% 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: #fff; }
.footer-brand p { margin: 1rem 0 1.2rem; font-size: 0.88rem; line-height: 1.75; }
footer h5 {
  font-family: 'Rajdhani', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul a { color: #8a9a8e; font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
footer ul a:hover { color: var(--green-lt); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.88rem; color: #8a9a8e; text-decoration: none; }
.footer-contact-item a:hover { color: var(--green-lt); }
.footer-bottom {
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem; color: #4a5a4c;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ WHATSAPP FAB Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.wa-fab {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 500;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4); text-decoration: none;
  transition: transform 0.2s;
}
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 26px; height: 26px; fill: #fff; }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SCROLL REVEAL Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1050px) {
  .topbar { padding: 0 2%; }
  .topbar-left { gap: 8px !important; }
  .topbar-left a { font-size: 0.72rem !important; }
}
@media (max-width: 825px) {
  .topbar { justify-content: center; }
  .topbar-right { display: none; }
  .topbar-left a { white-space: nowrap; }
}
@media (max-width: 745px) {
  .topbar-left a[href^="tel:+92"] { display: none !important; }
}
@media (max-width: 580px) {
  .topbar-left { gap: 6px; }
  .topbar-left a[href^="mailto:"], .topbar-left span { display: none !important; }
  .topbar-left a { font-size: 0.72rem; }
  /* Show Pakistan number again since Email gives us a lot of space back */
  .topbar-left a[href^="tel:+92"] { display: flex !important; }
}
@media (max-width: 452px) {
  .topbar-left { gap: 4px; }
  .topbar-left a { font-size: 0.68rem; }
  .topbar-left a[href^="tel:+92"] { display: none !important; }
}
@media (max-width: 335px) {
  .topbar-left a[href^="tel:+65"] { display: none !important; }
  .topbar { padding: 0 2%; }
}
@media (max-width: 580px) {
  section { padding: 55px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 50px 5% 45px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ STATS BANNER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.stats-banner {
  background: #111a13; /* Very dark green/black */
  padding: 1.8rem 5%;
  display: flex; justify-content: center; align-items: center; gap: 6vw;
  border-top: 1px solid rgba(255,255,255,0.02);
}
.stat-item {
  text-align: center; color: rgba(255,255,255,0.65);
}
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: #2ecc71;
  line-height: 1; margin-bottom: 6px; display: block;
}
.stat-text {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.8px;
}
@media (max-width: 700px) {
  .stats-banner { flex-direction: column; gap: 1.8rem; padding: 2.5rem 5%; }
}

/* â”€â”€â”€ SERVICE DETAILS CARD â”€â”€â”€ */
.service-details-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 3rem 4rem;
  margin: 0 6% 40px;
  border: 1px solid var(--border);
}
.service-details-card .main-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.service-details-card .main-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--green);
}
.service-details-card .main-desc {
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.detail-group { margin-bottom: 2rem; }
.detail-group:last-child { margin-bottom: 0; }
.detail-group h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-lt);
  border-left: 4px solid var(--green);
  padding-left: 14px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.detail-group p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 18px;
}
@media (max-width: 650px) {
  .service-details-card { padding: 2rem 1.5rem; margin: 0 5% 40px; }
  .detail-group p { padding-left: 8px; border-left: 1px dashed var(--border); margin-left: 2px;}
}
