/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #f7f9fc;
  color: #333;
  line-height: 1.7;
}

/* =====================
   SCROLL PROGRESS BAR
===================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #0b3c8a, #00bcd4);
  z-index: 2000;
}

/* =====================
   HEADER FIX
===================== */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* HEADER LAYOUT */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 200px;
  display: block;
  width: 180px;
}

/* NAV */
nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-weight: 600;
  color: #0633c5;
  text-decoration: none;
  position: relative;
}

nav a:hover{
  color: #ee6408;
}

nav a.active {
  color: #0b3c8a;
}

/* =====================
   HERO FIX (IMPORTANT)
===================== */
.hero {
  padding: 140px 20px 100px; /* PUSH DOWN FROM HEADER */
  background: linear-gradient(
      rgba(11,60,138,0.9),
      rgba(11,60,138,0.9)
    ),
    url("images/hero-bg.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

.hero p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 18px;
}


.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    display: block;
}

.nav {
    display: none;
    flex-direction: column;
    background: #0b3c7c;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.nav a {
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.nav.active {
    display: flex;
}

/* Desktop */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        width: auto;
    }

    .nav a {
        color: #000;
        border: none;
        padding: 10px 15px;
    }
}

/* =====================
   PAGE HERO
===================== */
.page-hero {
  background: linear-gradient(rgba(11,60,138,0.85), rgba(11,60,138,0.85)),
              url("images/hero-bg.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* =====================
   CONTENT SECTIONS
===================== */
.content {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #0b3c8a;
  margin-bottom: 20px;
  text-align: center;
}

.content p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
}

/* LIGHT BACKGROUND */
.light-bg {
  background: #ffffff;
  padding: 80px 0;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ee6408;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #082f6a;
}
/* ===== INTRODUCTION SECTION ===== */
.intro-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.intro-section .container {
  max-width: 1000px;
  margin: auto;
}

.intro-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1f2933;
}

.intro-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 15px;
}
/* =====================
   FOOTER
===================== */
footer {
  background: #0b3c8a;
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #ffffff;
  font-size: 24px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.grid-section {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.grid-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.grid-box h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  color: #0b3c8a;
}
.values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.values-list li {
  font-weight: 600;
  margin-bottom: 10px;
}
.grid-box ul {
  margin-top: 15px;
  padding-left: 20px;
}

.grid-box ul li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.1rem;
  }
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  font-family: 'Poppins', sans-serif;
  color: #0b3c8a;
  margin-bottom: 10px;
}

.project-location {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #475569;
}
.profile-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.profile-card {
  background: #ffffff;
  max-width: 320px;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.profile-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.profile-card h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
  color: #0b3c8a;
}

.profile-card .role {
  font-weight: 600;
  color: #f97316;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .profile-card {
    max-width: 100%;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info a {
  color: #0b3c8a;
  text-decoration: none;
  font-weight: 600;
}

.contact-form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Open Sans', sans-serif;
}

.contact-form-box textarea {
  min-height: 120px;
  resize: vertical;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
nav.show {
  display: flex;
}
nav a.active {
  color: #f97316;
}
.stats{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:50px 10%;
  background:#0b3c91;
  color:white;
  text-align:center;
}

.stat-box h3{
  font-size:36px;
  color:#f5a623;
}

.stat-box p{
  font-size:15px;
  margin-top:5px;
}
