/* =========================
   eKO Knowledge.net
   FINAL CONSULTING CSS (FIXED)
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #1f2933;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden; /* 🔴 mobile squeeze fix */
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   CONTAINER (IMPORTANT FIX)
========================= */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.header {
  background: #0a2540;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  flex-wrap: wrap; /* 🔴 prevents nav overflow */
}

.logo img {
  height: 48px;
  max-width: 200px;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap; /* 🔴 mobile nav wrap fix */
}

nav a {
  color: #ffffff;
  margin-left: 22px;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(180deg, #0a2540, #071a2f);
  color: #ffffff;
  padding: 100px 0;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 720px;
}

/* =========================
   FOUNDER STRIP
========================= */
.founder-strip {
  display: flex;
  align-items: center;
  margin-top: 35px;
  gap: 22px;
  flex-wrap: wrap; /* 🔴 mobile fix */
}

.founder-strip img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
}

.founder-strip h3 {
  font-size: 21px;
}

.founder-strip p {
  font-size: 14px;
  opacity: 0.9;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  display: inline-block;
  background: #0a2540;
  color: #ffffff;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 18px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  margin-left: 10px;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 0;
}

.section.light {
  background: #f8fafc;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0a2540;
}

/* =========================
   GRID (CRITICAL FIX)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* 🔴 card width overflow fix */
.card {
  background: #ffffff;
  padding: 26px;
  border-left: 5px solid #0a2540;
  width: 100%;
  min-width: 0;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  width: 100%;
  max-width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* =========================
   FLOATING BUTTONS
========================= */
.call-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #0a2540;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  font-size: 24px;
  z-index: 999;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  font-size: 26px;
  z-index: 999;
}

/* =========================
   WOW FOOTER
========================= */
.footer-wow {
  background: linear-gradient(180deg, #071a2f, #0a2540);
  color: #ffffff;
  padding: 70px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo img {
  height: 38px;
  margin-bottom: 14px;
}

.footer-wow h4 {
  font-size: 17px;
  margin-bottom: 14px;
}

.footer-wow p,
.footer-wow li {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 7px;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 35px;
  padding-top: 14px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* =========================
   MAP
========================= */
iframe {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* =========================
   MOBILE FINAL FIX
========================= */
@media (max-width: 768px) {

  .container {
    width: 94%;
  }

  .header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 8px;
  }

  nav a {
    margin: 8px 14px 0 0;
    font-size: 14px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 50px 0;
  }

  .grid {
    grid-template-columns: 1fr; /* 🔴 key fix */
  }

  .founder-strip {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  iframe {
    height: 300px;
  }
}
/* =========================
   CLIENT LIST – PROFESSIONAL ALIGN
========================= */

.clients-intro {
  max-width: 820px;
  margin-bottom: 35px;
  font-size: 16px;
}

.clients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px 40px;
}

.clients-list div {
  font-size: 15px;
  padding-left: 16px;
  position: relative;
  opacity: 0.9;
}

/* subtle professional marker */
.clients-list div::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0a2540;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
  .clients-list {
    grid-template-columns: 1fr;
  }
}
/* =========================
   CLIENTS – EXECUTIVE STYLE
========================= */

.clients-intro {
  max-width: 820px;
  margin-bottom: 40px;
  font-size: 16px;
  opacity: 0.9;
}

.clients-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.clients-card {
  background: #ffffff;
  padding: 26px;
  border-top: 4px solid #0a2540;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.clients-card h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #0a2540;
}

.clients-card ul {
  list-style: none;
}

.clients-card li {
  font-size: 14px;
  padding-left: 14px;
  margin-bottom: 8px;
  position: relative;
  opacity: 0.9;
}

.clients-card li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #0a2540;
}

/* Mobile */
@media (max-width: 768px) {
  .clients-columns {
    grid-template-columns: 1fr;
  }
}
/* =========================
   INTERNATIONAL CLIENT SECTION
========================= */

.clients-exec {
  background: #f8fafc;
}

.section-header {
  max-width: 780px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 14px;
  color: #0a2540;
}

.section-header p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}

.clients-exec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}

.clients-exec-block {
  padding-left: 22px;
  border-left: 4px solid #0a2540;
}

.clients-exec-block h4 {
  font-size: 17px;
  margin-bottom: 14px;
  color: #0a2540;
}

.clients-exec-block p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .clients-exec-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-header h2 {
    font-size: 26px;
  }
}
/* =========================
   SERVICES – EXECUTIVE LAYOUT
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-block {
  padding-left: 24px;
  border-left: 4px solid #0a2540;
}

.service-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0a2540;
}

.service-block p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}
