/* -------------------- GLOBAL -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
  }
  
  body {
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .section {
    padding: 70px 0;
  }
  
  h1, h2, h3, h4 {
    font-weight: 600;
    color: #0a3a75;
  }
  
  h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* -------------------- HEADER -------------------- */
  .header {
    background: #0a3a75;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
  }
  
  .nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
  }
  
  .nav a:hover,
  .nav a.active {
    color: #4db7ff;
  }
  
  /* Mobile Menu Icon */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .mobile-menu span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
  }
  
  /* -------------------- HERO -------------------- */
  .hero {
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 50, 120, 0.55);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn-primary {
    display: inline-block;
    background: #4db7ff;
    padding: 12px 25px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn-primary:hover {
    background: #1d8fe0;
  }
  
  /* -------------------- ABOUT -------------------- */
  .about p {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .about-box {
    background: #f6f9ff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #dbe8ff;
    text-align: center;
  }
  
  /* -------------------- SERVICES -------------------- */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
  }
  
  .service-item {
    padding: 25px;
    background: #fff;
    border: 1px solid #e1e9f5;
    border-radius: 6px;
    transition: 0.3s;
  }
  
  .service-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
  }
  
  .service-item h3 {
    margin-bottom: 10px;
    color: #0a3a75;
  }
  
  /* -------------------- PROJECTS -------------------- */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .project-item {
    background: #eef6ff;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #cfe4ff;
    font-weight: 500;
  }
  
  /* -------------------- FOOTER -------------------- */
  .footer {
    background: #0a3a75;
    color: white;
    padding: 50px 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 25px;
  }
  
  .footer h3, .footer h4 {
    color: #4db7ff;
    margin-bottom: 12px;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col a {
    text-decoration: none;
    color: #d0e8ff;
    transition: 0.3s;
  }
  
  .footer-col a:hover {
    color: #4db7ff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    font-size: 14px;
  }
  
  /* -------------------- RESPONSIVE -------------------- */
  @media (max-width: 992px) {
    .about-grid,
    .service-grid,
    .project-grid,
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100%;
      background: #0a3a75;
      padding-top: 80px;
      transition: 0.4s;
    }
  
    .nav ul {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .mobile-menu {
      display: flex;
    }
  
    .nav.active {
      right: 0;
    }
  
    .about-grid,
    .service-grid,
    .project-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* ==============================
   ABOUT PAGE STYLES
================================= */

/* Hero About */
.hero-about {
  background: url('../img/about-hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.hero-about::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 47, 108, 0.7); /* Corporate Blue overlay */
}

.hero-about .container {
  position: relative;
  z-index: 2;
}

.hero-about h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-about p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Base */
.section {
  padding: 70px 0;
}

.section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #002f6c;
}

.section p,
.section ul {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.bg-light {
  background: #f5f8fc;
}

/* Three Columns */
.three-columns {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}

.three-columns .card {
  background: #fff;
  flex: 1;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.three-columns .card:hover {
  transform: translateY(-5px);
}

.three-columns .card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #002f6c;
}

.three-columns .card ul {
  padding-left: 20px;
}

.three-columns .card ul li {
  list-style: disc;
  margin-bottom: 6px;
}

/* Ecosystem List */
.section ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* ==============================
 RESPONSIVE
================================= */

@media (max-width: 992px) {
  .three-columns {
      flex-direction: column;
  }
  .hero-about h1 {
      font-size: 32px;
  }
  .hero-about p {
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-about {
      padding: 80px 0;
  }
  .hero-about h1 {
      font-size: 28px;
  }
}




/* ==============================
   CONTACT PAGE STYLES
================================= */

/* Hero Contact */
.hero-contact {
  background: url('../img/contact-hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.hero-contact::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 47, 108, 0.7);
}

.hero-contact .container {
  position: relative;
  z-index: 2;
}

.hero-contact h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-contact p {
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto;
}

/* Contact Wrapper */
.contact-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.contact-info, .contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2 {
  font-size: 28px;
  color: #002f6c;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #d8e3ef;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #002f6c;
  box-shadow: 0 0 0 3px rgba(0, 47, 108, 0.08);
}

.contact-form form button {
  width: 100%;
  padding: 14px;
  background: #002f6c;
  color: #fff;
  font-size: 17px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form form button:hover {
  background: #01408f;
}

/* Map */
.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* ==============================
 RESPONSIVE
================================= */

@media (max-width: 992px) {
  .contact-wrapper {
      flex-direction: column;
  }

  .hero-contact h1 {
      font-size: 32px;
  }

  .hero-contact p {
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-contact {
      padding: 80px 0;
  }

  .hero-contact h1 {
      font-size: 28px;
  }
}
