/* =========================
   VARIABLES & RESET
========================= */
:root {
  --primary: #1b7768;       /* Teal Green - Matches Stats/CTA */
  --accent: #e86800;        /* Orange - Matches Buttons */
  --dark-bg: #0f1112;       /* Deep Black/Charcoal - Matches Hero/Footer */
  --card-dark: #161b1d;     
  --light: #f4f6f8;
  --white: #ffffff;
  --text-main: #1f2937;
  --text-light: #6b7280;
  --radius: 8px;
  --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
html { scroll-behavior: smooth; }
body { 
  color: var(--text-main); 
  line-height: 1.6; 
  background: var(--white); 
  font-size: 16px; /* Base font size increased */
}
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
img, svg { display: block; }

/* =========================
   UTILITIES
========================= */
/* Broader container for "zoomed in" feel */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.section-padding { padding: 100px 0; }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark-bg); color: white; }
.center { text-align: center; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img img {
  height: 40px;   /* perfect size */
  width: auto;
  object-fit: contain;
}



/* =========================
   HEADER
========================= */
.site-header {
  background: var(--dark-bg);
  padding: 18px 0; /* Slightly tighter padding like screenshot */
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }



/* Nav Links */
.main-nav ul { display: flex; gap: 40px; } /* Increased gap */
.main-nav a { color: #d1d5db; font-size: 16px; font-weight: 500; }
.main-nav a:hover { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.mobile-menu-toggle { display: none; color: white; cursor: pointer; }

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-orange {
  background: var(--accent);
  color: white;
  border: none;
}
.btn-orange:hover { background: #d66c00; transform: translateY(-2px); }

.btn-outline-hero {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-hero:hover { background: white; color: var(--dark-bg); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* Header Small Call Button */
.btn-call-nav {
  background: transparent;
  color: white;
  border: 1px solid var(--primary);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.btn-call-nav:hover { background: var(--primary); }

/* =========================
   HERO SECTION (Left Aligned)
========================= */
.hero-section {
  background-color: var(--dark-bg);
  position: relative;
  /* Increased padding for taller, more prominent look */
  padding: 90px 0 120px; 
  color: white;
  overflow: hidden;
  text-align: left; /* Explicitly Left Aligned */
}

/* Background Pattern (+ signs) */
.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center top;
  pointer-events: none;
}

.hero-content { 
  position: relative; 
  z-index: 2; 
  max-width: 900px; 
  /* Removed margin: 0 auto to keep it left aligned */
}

.hero-badge {
  color: var(--primary);
  background: rgba(27, 119, 104, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 25px;
   margin-top: 0;
  border: 1px solid rgba(27, 119, 104, 0.3);
}

.hero-section h1 { 
  font-size: 64px; /* Larger font size */
  font-weight: 800; 
  line-height: 1.1; 
  margin-bottom: 25px; 
}
.hero-section h1 span { color: var(--primary); }
.hero-section p { 
  color: #9ca3af; 
  margin-bottom: 40px; 
  font-size: 20px; 
  max-width: 700px; 
  line-height: 1.6;
}

.hero-buttons { display: flex; gap: 20px; margin-bottom: 50px; }

.hero-bullets { display: flex; gap: 30px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #d1d5db; font-weight: 500; }
.dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }

/* =========================
   STATS SECTION (Broader & Stacked)
========================= */
.stats-section {
  background-color: var(--primary);
  color: white;
  padding: 60px 0; /* Broader padding top/bottom */
}
.grid-5-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: flex-start; /* Align to top */
  justify-items: center;   /* Center items in their column */
}
.stat-item {
  display: flex;
  flex-direction: column; /* Stacked: Icon top, Text bottom */
  align-items: center;
  text-align: center;
  gap: 15px;
}
.stat-item svg { 
  color: white; 
  width: 40px; 
  height: 40px; 
  opacity: 0.9;
}
.stat-text strong { 
  display: block; 
  font-size: 32px; 
  font-weight: 800; 
  line-height: 1; 
  margin-bottom: 5px; 
}
.stat-text span { 
  font-size: 15px; 
  font-weight: 500; 
  opacity: 0.9; 
}

/* =========================
   COMMON SECTION STYLES
========================= */
.about-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceo-profile-modern {
  text-align: center;
}

.ceo-image-ring {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 3px solid #1b7768;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.ceo-image-ring img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top; /* IMPORTANT */
}

.ceo-profile-modern h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ceo-profile-modern p {
  font-size: 14px;
  color: #666;
}




.section-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}
.section-header h2 { font-size: 42px; font-weight: 800; margin-bottom: 15px; color: var(--text-main); }
.section-header p { color: var(--text-light); font-size: 18px; max-width: 700px; margin: 0 auto; }

/* =========================
   WHO WE ARE
========================= */
.about-image-placeholder {
  background: #e5e7eb;
  height: 450px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}
.circle-s {
  width: 80px; height: 80px;
  background: #d1d5db;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; color: #6b7280; margin-bottom: 10px;
}

.about-list { margin-top: 30px; }
.about-list li {
  display: flex; gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--text-main);
  align-items: center;
}
.check-circle { color: var(--primary); flex-shrink: 0; }

/* =========================
   TRUST CARDS (8 Grid)
========================= */
.trust-card {
  background: white;
  padding: 35px 30px;
  border-radius: var(--radius);
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: transform 0.3s;
}
.trust-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.icon-box-trust {
  width: 54px; height: 54px;
  background: #effcf9;
  color: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.trust-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.trust-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* =========================
   PROCESS
========================= */
.process-card {
  background: white;
  padding: 40px 25px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  height: 100%;
}
.p-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.p-badge {
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}
.p-bg-num {
  font-size: 70px;
  font-weight: 900;
  color: #f3f4f6;
  line-height: 0.5;
  position: absolute;
  top: 25px; right: 25px;
  z-index: 0;
}
.process-card h3 { position: relative; z-index: 1; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.process-card p { position: relative; z-index: 1; font-size: 15px; color: var(--text-light); }

/* =========================
   SERVICES (Grid with Images)
========================= */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
  transition: 0.3s;
  overflow: hidden; 
  border: 1px solid #eee;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.service-card:hover { 
  box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
  transform: translateY(-5px); 
}

/* Image container */
.service-image-box {
  width: 100%;
  height: 220px;
  background-color: #e5e7eb; /* Placeholder grey */
  position: relative;
}
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 25px 0 10px;
  padding: 0 25px;
  color: var(--text-main);
}
.service-card p {
  font-size: 15px;
  color: var(--text-light);
  padding: 0 25px 30px;
}

/* =========================
   TRACK RECORD (Dark)
========================= */
.grid-5-special {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.dark-stat-card {
  background: var(--card-dark);
  padding: 50px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.icon-circle-teal {
  width: 60px; height: 60px;
  border: 1px solid rgba(27, 119, 104, 0.5);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.dark-stat-card h3 { font-size: 32px; font-weight: 700; color: white; margin-bottom: 5px; }
.dark-stat-card p { color: #9ca3af; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }

/* =========================
   LOCAL PRESENCE
========================= */
.mini-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px;
}
.mini-item { display: flex; gap: 15px; }
.icon-small {
  color: var(--primary);
  background: #effcf9;
  width: 48px; height: 48px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mini-item strong { display: block; font-size: 16px; margin-bottom: 4px; }
.mini-desc { font-size: 14px; color: var(--text-light); }

.map-placeholder-box {
  background: #e5e7eb;
  height: 450px;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #6b7280;
  text-align: center;
}

/* =========================
   MODERN OPS (Large 2x2)
========================= */
.operations-grid { gap: 30px; margin-top: 50px; }
.future-card {
  background: #f9fafb;
  padding: 40px;
  border-radius: var(--radius);
  display: flex; gap: 25px;
  align-items: flex-start;
  border: 1px solid #f3f4f6;
}
.f-icon {
  width: 60px; height: 60px;
  background: #e0f2f1;
  color: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.future-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.future-card p { font-size: 15px; color: var(--text-light); }

.commitment-box {
  background: #f0fdf9;
  border: 1px solid #ccfbf1;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
  color: var(--primary);
  font-size: 16px;
}

/* =========================
   CTA SECTION (Centered Green)
========================= */
.final-cta { 
  background: var(--primary); 
  color: white; 
  padding: 80px 0; 
  text-align: center; /* Centered Text */
}

/* Container for the CTA content */
.cta-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.final-cta p { font-size: 18px; margin-bottom: 30px; opacity: 0.95; }
.final-cta .sub-text { font-size: 14px; margin-top: 20px; opacity: 0.7; }

.cta-buttons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* =========================
   FOOTER
========================= */
.site-footer { 
  background: var(--dark-bg); /* Dark Black */
  color: #9ca3af; 
  padding: 80px 0 30px; 
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h3 { color: white; font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px;}
.footer-col h3 span { background: var(--primary); color: white; padding: 5px 10px; border-radius: 4px; font-size: 16px;}

.footer-col h4 { color: white; font-size: 16px; margin-bottom: 20px; font-weight: 600;}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #9ca3af; font-size: 14px; transition: 0.2s;}
.footer-col a:hover { color: white; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-icon { 
  width: 36px; height: 36px; 
  background: rgba(255,255,255,0.1); 
  display: flex; align-items: center; justify-content: center; 
  border-radius: 4px; color: white;
}
.social-icon:hover { background: var(--primary); }

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding-top: 30px; 
  margin-top: 60px; 
  display: flex; 
  justify-content: space-between;
  font-size: 14px; 
}
.footer-links-bottom a { color: #6b7280; margin-left: 20px; }
.footer-links-bottom a:hover { color: white; }

/* =========================
   Maos
========================= */
.map-box {
  width: 100%;
  height: 450px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .map-box {
    height: 300px;
  }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .ceo-card {
    max-width: 100%;
    padding: 15px 15px 0;
  }

  .about-image {
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .about-image {
    width: 160px;
    height: 160px;
  }

  .ceo-profile {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .ceo-image-ring {
    width: 180px;
    height: 180px;
  }

  .ceo-image-ring img {
    width: 155px;
    height: 155px;
  }
}



@media (max-width: 900px) {
  .logo-img img {
    height: 32px;
  }
}


@media (max-width: 900px) {
  /* Track Record Section */
  .grid-5-special {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
  }

  .dark-stat-card {
    padding: 30px 15px;
  }

  .icon-circle-teal {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .dark-stat-card h3 {
    font-size: 24px;
  }

  .dark-stat-card p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .grid-5-special {
    grid-template-columns: 1fr; /* 1 per row */
  }

  .dark-stat-card {
    padding: 25px 15px;
  }
}

@media (max-width: 1024px) {
  .hero-section h1 { font-size: 48px; }
  .grid-5-stats { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  .map-box {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .hero-section { padding: 60px 0 80px; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-bg-pattern { background-position: center center; }
  
  .hero-buttons { justify-content: center; }
  .hero-bullets { justify-content: center; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  
  /* Stats on mobile */
  .grid-5-stats { grid-template-columns: 1fr; gap: 40px; }
  
  /* CTA on mobile */
  .cta-buttons-row { flex-direction: column; width: 100%; }
  .cta-buttons-row .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .nav-right { gap: 10px; }
}