* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif; }
body { line-height:1.6; background:#c0d4e7; color:#111; display: flex; flex-direction: column; min-height: 100vh; }

.wrap { width:90%; max-width:1200px; margin:0 auto; padding:0; }

.site-header { 
  background:#092b67; 
  border-bottom:1px solid #ddd; 
  position:sticky; 
  top:0; 
  z-index:1000; 
  padding: 1.5rem 0; 
}
.site-header .wrap { display:flex; justify-content:space-between; align-items:center; }
.branding-container { display:flex; align-items:center; gap:0.6rem; }
.logo { height:42px; width:auto; display:block; }
.brand { font-weight:700; font-size:1.4rem; text-decoration:none; color:#ffffff; }
.brand-sub { font-weight:300; color:#ffffff; margin-left:.2rem; }

.nav { display:flex; gap:1.5rem; align-items:center; }
.nav a { text-decoration:none; color:#f8f6f6; font-weight:500; font-size: 1rem; transition: color 0.3s; }
.nav a.active, .nav a:hover { color:#4db8ff; }
.cta { background:#0077cc; color:#fff; padding:.5rem 1rem; border-radius:5px; }
.cta:hover { background:#005fa3; color: #fff !important; }
.nav-toggle { display:none; background:none; border:none; font-size:1.5rem; cursor:pointer; color:#fff; }

h1 { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1.2; color: #092b67; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; color: #092b67; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #0077cc; }
p { font-size: 1.1rem; margin-bottom: 1rem; color: #222; }
.muted { font-size: 1rem; color: #444; }

.text-center { text-align: center; }

section { padding: 3rem 0; } 

.hero, .projects-hero, .teams-hero, .execs-hero, .join-hero, .about-hero { 
  padding-top: 3rem; 
  padding-bottom: 2rem; 
  display:flex; 
  flex-wrap:wrap; 
  justify-content:space-between; 
  align-items: center;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-text-wrapper { width: 100%; max-width: 800px; }

.btn { text-decoration:none; padding:.7rem 1.5rem; border-radius:6px; font-weight:600; display:inline-block; margin-right:1rem; transition: all 0.3s; }
.btn-primary { background:#0077cc; color:#fff; border: 2px solid #0077cc; }
.btn-primary:hover { background:#005fa3; border-color: #005fa3; }
.btn-outline { border:2px solid #0077cc; color:#0077cc; background:none; }
.btn-outline:hover { background:#0077cc; color:#fff; }
.btn-ghost { background:none; border:2px solid #0077cc; color:#0077cc; }

.grid { 
  display:flex; 
  gap:2rem; 
  flex-wrap:wrap; 
  justify-content: center; 
  width: 100%;
}

.project-card, .exec-card { 
  background:rgba(255,255,255,0.95); 
  padding:1.5rem; 
  border-radius:12px; 
  flex: 0 0 300px; 
  border: 1px solid rgba(0, 119, 204, 0.2);
  box-shadow:0 5px 15px rgba(0,0,0,0.05); 
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.project-card:hover, .exec-card:hover {
  transform: translateY(-5px);
  border-color: #0077cc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-media { 
  height:220px; 
  background-color: #eee; 
  border-radius:8px; 
  margin-bottom:1.2rem; 
  background-size: cover; 
  background-position: center top; 
  background-repeat: no-repeat;
  width: 100%;
}

.exec-photo {
  height:220px; 
  background-color: #eee; 
  border-radius:8px; 
  margin-bottom:1.2rem; 
  background-size: contain; 
  background-position: center; 
  background-repeat: no-repeat;
  width: 100%;
}

.values {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}
.value {
  flex: 1 1 280px;
  text-align: center;
  padding: 2rem;
  border: 2px solid #0077cc;
  border-radius: 12px;
  background: rgba(255,255,255,0.5);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* HIDE SCROLLBAR BUT ALLOW SCROLL */
.gallery-track-container {
  overflow: hidden;
  width: 100%;
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch; 
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.gallery-track-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
  width: max-content;
}

.gallery-item {
  flex: 0 0 300px;
  height: 200px;
  background-color: #ddd;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
}

.gallery-btn {
  background: rgba(9, 43, 103, 0.8);
  color: white;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.gallery-btn:hover { background: #0077cc; }
.gallery-btn.prev { margin-right: 15px; }
.gallery-btn.next { margin-left: 15px; }

.site-footer { 
  background:#092b67; 
  border-top:1px solid #ddd; 
  padding: 1.5rem 0; 
  margin-top: 4rem; 
  color: white; 
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.foot-brand { font-weight:700; font-size: 1.2rem; }
.foot-links { display: flex; gap: 1rem; }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.3s;
}
.social-icon:hover { background: #0077cc; }
.social-icon svg { width: 20px; height: 20px; fill: white; }

@media(max-width:768px){
  .site-header .wrap { flex-direction:row; padding:1rem 5%; }
  
  .nav { 
    display:none; 
    flex-direction:column; 
    width:100%; 
    text-align:center; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: #092b67; 
    padding: 1rem 0; 
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
  }
  .nav.open { display:flex; }
  .nav-toggle { display:block; }
  
  .hero-split { flex-direction: column; gap: 2rem; text-align: center; }
  .hero-text-wrapper { text-align: center; }
  .hero-cta { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .btn { margin: 0 0 1rem 0; width: 100%; max-width: 300px; text-align: center; }
  
  .hero, .projects-hero, .teams-hero, .execs-hero, .join-hero { 
    padding-top: 4rem; 
    padding-bottom: 2rem;
  }
  
  .project-card, .exec-card { flex: 0 0 100%; max-width: 100%; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  
  .gallery-wrapper { overflow: visible; }
  .gallery-btn { display: none; }
}