
body {
  margin:0;
  font-family:'Poppins', sans-serif;
  background:#f4f6f8;
  color:#222;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.top-blue {height:30px;background:#1E3C72}
.gold-line {height:4px;background:#FFCC29}

.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO TOP LEFT */
    .logo {
      top: 22px;
      left: 5px;
      z-index: 5;
    }

    .logo img {
      width: 70px;
    }

.logo a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* prevents blue color */
}

.nav-links a {
  margin-left:20px;
  text-decoration:none;
  color:#34457D;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover {color:#00A859}

.nav-links a.active {
  background: linear-gradient(90deg, #00A859, #FFCC29);
  color: #0f2e4d;
  padding: 8px 14px;
  border-radius: 6px;
}

.hero-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* IMAGE */
.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

/* TRANSPARENT HERO */
.hero {
  position: relative;
  z-index: 3;
  background: transparent !important;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 700px;
}

/* ================= VISION ================= */
.vision-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f2e4d, #00A859);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-content {
  max-width: 800px;
  margin: auto;
  animation: fadeUp 1s ease forwards;
}

/* VISION ICON */
.vision-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s ease forwards;
}

/* SVG EYE */
.eye-icon {
  width: 32px;
  height: 32px;
  fill: #FFCC29; /* gold */
  animation: pulseEye 2s infinite ease-in-out;
}

/* SUBTLE PULSE */
@keyframes pulseEye {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* GOLD LINE ANIMATION */
.gold-bar {
  width: 60px;
  height: 4px;
  background: #FFCC29;
  margin: 0 auto 20px;
  border-radius: 2px;
  animation: growLine 1s ease forwards;
}

@keyframes growLine {
  from { width: 0; }
  to { width: 60px; }
}

.vision-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.vision-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}


/* ================= VALUES ================= */
.values-section {
  padding: 100px 40px;
  text-align: center;
  background: #f9fbfa;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* CARD */
.value-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 16px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
}

/* ICON */
.value-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* HOVER */
.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* TEXT */
.value-card h3 {
  color: #0f2e4d;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* EXECUTIVE GRID */
.executive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* Center heading + paragraph for Executive Team */
.exec-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.exec-intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0f2e4d;
}

.exec-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .executive-grid {
    grid-template-columns: 1fr;
  }
}
/* EXECUTIVE CARD DESIGN */
.exec-card {
  background: white;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: 0.3s ease;
}

.exec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* PROFILE IMAGE */
.exec-card img {
  width: 100%;
  object-fit: cover; 
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 6px solid white;
}

@media (max-width: 768px) {
  .exec-card img {
  width: 180px;
  height: 180px;
  object-fit: cover; 
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 6px solid white;
  }
}

/* NAME */
.exec-card h3 {
  margin: 8px 0 5px;
  font-size: 1rem;
  color: #0f2e4d;
}

/* ROLE */
.exec-card .role {
  font-size: 0.85rem;
  color: #00A859;
  font-weight: 600;
  margin-bottom: 6px;
}

/* EMAIL */
.exec-card .email {
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
}


.btn {
  padding:12px 22px;
  border:none;
  margin:5px;
  cursor:pointer;
  border-radius:6px;
  font-weight:600;
}

.btn.primary {background:#FFCC29}
.btn.outline {background:transparent;border:2px solid white;text-decoration: none; color:white}


.footer {
  background: linear-gradient(180deg, #0f2e4d, #081a2c);
  color: #fff;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

/* GOLD LINE */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background: #FFCC29;
}

/* subtle glow */
.footer::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0,168,89,0.15);
  border-radius: 50%;
  filter: blur(100px);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-brand h2 {
  font-size: 1.8rem;
}

.footer-brand p {
  color: #ccc;
  margin: 10px 0 20px;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.socials img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1); /* makes icons white */
}

.socials a:hover {
  background: #FFCC29;
  transform: translateY(-4px) scale(1.05);
}

.icon {
  width: 18px;
  height: 18px;
  fill: white;
  transition: 0.3s;
}


/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  margin-bottom: 12px;
  color: #FFCC29;
}

.footer-links a {
  display: block;
  color: #ddd;
  margin-bottom: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #FFCC29;
  transform: translateX(5px);
}

/* CONTACT */
.footer-contact p {
  margin: 6px 0;
  color: #ccc;
}

/* NEWSLETTER */
.newsletter-box {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
}

.newsletter-box button {
  background: #00A859;
  border: none;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: 0.3s;
}

.newsletter-box button:hover {
  background: #008c47;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 18px;
  background: rgba(0,0,0,0.3);
  font-size: 0.9rem;
  color: #bbb;
}
@keyframes fadeIn {
  from {opacity:0; transform:translateY(-20px)}
  to {opacity:1; transform:translateY(0)}
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0f2e4d;
  border-radius: 3px;
  transition: 0.3s;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
/* ========================= */
/* MOBILE (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo span {
    font-size: 0.8rem;
  }

  .nav-links {
    display: none;
  }

  /* HERO */
  .hero {
    padding: 60px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-box input,
  .newsletter-box button {
    width: 100%;
  }

  /* SECTION SPACING */
  .section {
    padding: 40px 20px;
  }
}
