/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #0b1f38;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}


/* ============================================================================
   HEADER – Clean, Compact, Responsive (FINAL)
============================================================================ */
.header {
    width: 100%;
    padding: 12px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    height: 78px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    object-fit: contain;
}

/* NAVIGATION MENU */
.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #002D62;
    padding: 8px 0;
    transition: 0.25s;
}

.navbar ul li a:hover {
    color: #0096FF;
}

/* ============================================================================
   MEGA MENU / DROPDOWN
============================================================================ */
.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 58px;
    left: 0;
    width: 260px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;
    pointer-events: none;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #002D62;
    margin-bottom: 12px;
}

.mega-menu a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #003A78;
    text-decoration: none;
    transition: 0.2s ease;
}

.mega-menu a:hover {
    color: #0096FF;
    padding-left: 5px;
}

/* ============================================================================
   MOBILE MENU
============================================================================ */
.mobile-menu-icon {
    display: none;
    font-size: 34px;
    cursor: pointer;
}

@media (max-width: 900px) {

    .mobile-menu-icon {
        display: block;
    }

    .navbar .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
    }

    .nav-links.nav-active {
        max-height: 800px;
        opacity: 1;
        pointer-events: auto;
        border-bottom: 1px solid #eee;
    }

    .dropdown:hover .mega-menu {
        display: none;
    }

    .dropdown.open .mega-menu {
        display: block !important;
        position: relative;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        background: #f4f8ff;
        padding: 14px 20px;
        border-radius: 10px;
        box-shadow: none;
        transform: none;
    }
}


/* ============================================================================
   HERO
============================================================================ */
.hero {
  background: #002b5c;
  color: #fff;
  padding: 70px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 { font-size: 2.6rem; }

.hero-img img {
  width: 380px;
  border-radius: 12px;
}


/* ============================================================================
   LEADER SECTION
============================================================================ */
.leaders { padding: 60px 0; }

.leader-card {
  background: #f9fbff;
  padding: 28px;
  border-radius: 14px;
  display: flex;
  gap: 28px;
  margin-bottom: 45px;
  border: 1px solid #e6eef8;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.leader-photo {
  width: 230px;
  height: 260px;
  border-radius: 12px;
  object-fit: cover;
}

.leader-info h2 { font-size: 1.8rem; margin-bottom: 4px; }
.leader-info h4 { color: #006cff; margin-bottom: 12px; }
.leader-info p { margin-bottom: 12px; text-align: justify; }

.linkedin-btn {
  display: inline-block;
  background: #006cff;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
  font-size: 0.92rem;
}

.linkedin-btn:hover {
  background: #0052b8;
}


/* ============================================================================
   RESPONSIVE
============================================================================ */
@media(max-width: 850px) {

  .hero { flex-direction: column; text-align: center; }

  .leader-card {
    flex-direction: column;
    text-align: center;
  }

  .leader-photo {
    margin: auto;
    width: 200px;
    height: 220px;
  }
}


/* ============================================================================
   FOOTER – Final Clean Version
============================================================================ */
.footer {
    background: #002D62;
    color: white;
    padding: 80px 12%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: #dbe6ff;
    font-size: 15px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: 0.25s;
}

.footer-col a:hover {
    color: #57D0FF;
    padding-left: 5px;
}

.footer-social a {
    font-size: 22px;
    margin-right: 14px;
    color: white;
    transition: 0.2s;
}

.footer-social a:hover {
    color: #57D0FF;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Mobile Footer */
@media (max-width: 600px) {
    .footer { padding: 60px 8%; }
    .footer-container { gap: 30px; }
}
