/* =========================
   ROOT VARIABLES
========================= */
:root {
  --dark-navy: #0B1F3A;
  --sky-blue: #87CEEB;
  --highlight: #f39c12;
  --text-dark: #1e1e1e;
  --text-light: #f9f9f9;
  --background: #f5f7fa;
}

/* =========================
   BASE STYLES
========================= */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  color: #1e1e1e;
  line-height: 1.6;
}

/* =========================
   NAVIGATION
========================= */
nav {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.logo {
  font-weight: bold;
  font-size: 1.4em;
  color: var(--dark-navy);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--dark-navy);
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--highlight);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-navy);
  transition: 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   HEADER / HERO
========================= */
.header {
  background: linear-gradient(135deg, var(--dark-navy), #122f54);
  color: var(--text-light);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.header img.profile-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sky-blue);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.header h1 {
  font-size: 2.5em;
  margin: 0;
}

.header p {
  font-size: 1.2em;
  color: #cfd8e3;
  margin: 8px 0 0;
}

/* Desktop view: photo left, text right */
@media (min-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .header img.profile-photo {
    margin-right: 25px;
    margin-bottom: 0;
  }

  .header-text {
    max-width: 600px;
  }
}

/* =========================
   SECTION BASE
========================= */
.section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 50px 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.section h2,
.section h3 {
  color: var(--dark-navy);
  margin-bottom: 25px;
  border-left: 5px solid var(--sky-blue);
  padding-left: 15px;
  font-size: 1.7em;
}

/* =========================
   GRID & CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-top: 4px solid var(--sky-blue);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.card h4 {
  margin-bottom: 10px;
  color: var(--dark-navy);
}

/* =========================
   BUTTON
========================= */
.btn {
  display: inline-block;
  padding: 8px 16px;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #005bb5;
}

/* =========================
   PROJECT LIST
========================= */
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.project-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* =========================
   TEAM SECTION
========================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  text-align: center;
}

.team-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sky-blue);
  margin-bottom: 15px;
}

.team-card h4 {
  margin: 10px 0 4px;
  color: var(--dark-navy);
  font-size: 18px;
}

.team-card span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 14px;
  color: #444;
}

/* =========================
   CONTACT CARDS
========================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-left: 5px solid var(--sky-blue);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.1);
}

.contact-card h3 {
  font-size: 1.1em;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.contact-card a {
  text-decoration: none;
  font-weight: 500;
  color: var(--dark-navy);
  font-size: 1em;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--highlight);
}

/* =========================
   CERTIFICATIONS SHOWCASE 
========================= */
.certification-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap; /* for mobile responsiveness */
}

.cert-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sky-blue);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.cert-image img:hover {
  transform: scale(1.05);
}

.cert-details {
  flex: 1;
  min-width: 250px;
}

.cert-details h3 {
  margin-bottom: 12px;
  color: var(--dark-navy);
}

.cert-details p {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.5;
  font-size: 0.95em;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 768px) {
  .certification-container {
    flex-direction: column;
    text-align: center;
  }

  .cert-details {
    min-width: 100%;
  }
}


/* =========================
   FOOTER
========================= */
.footer {
  background: var(--dark-navy);
  color: var(--text-light);
  padding: 20px;
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icons a {
  color: var(--sky-blue);
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icons a:hover {
  color: var(--text-light);
  transform: scale(1.2);
}

/* Footer legal note */
.footer-note {
  font-size: 9px; /* as requested */
  line-height: 1.4;
  color: #cfd8e3;
  max-width: 900px;
  margin: 10px auto 0;
  opacity: 0.85;
}
/* =========================
   ECOMMERCE
========================= */

    .packages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .package {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .package-header {
      background: var(--dark);
      color: #fff;
      padding: 20px;
      text-align: center;
    }

    .package-body {
      padding: 25px;
      flex-grow: 1;
    }

    .package-body ul {
      padding-left: 18px;
    }

    .package-body li {
      margin-bottom: 10px;
    }

    .cta {
      text-align: center;
      padding: 20px;
    }

    .btn {
      display: inline-block;
      padding: 10px 22px;
      background: var(--highlight);
      color: #fff;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover {
      background: #d68910;
    }
    
    /* PACKAGES */
    .packages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .package {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .package-header {
      background: var(--dark);
      color: #fff;
      padding: 20px;
      text-align: center;
    }

    .package-body {
      padding: 25px;
      flex-grow: 1;
    }

    .package-body ul {
      padding-left: 18px;
    }

    .package-body li {
      margin-bottom: 10px;
    }

    .cta {
      text-align: center;
      padding: 20px;
    }

    .btn {
      display: inline-block;
      padding: 10px 22px;
      background: var(--highlight);
      color: #fff;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover {
      background: #d68910;
    }

/* Compliance */
    .compliance {
      background: #fff;
      padding: 50px 25px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      margin-top: 60px;
    }

    .compliance a {
      color: var(--dark);
      font-weight: 600;
      text-decoration: none;
    }
