/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f7fa;
  color:#222;
  line-height:1.6;
}

/* =========================
   CONTAINER
========================= */

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* =========================
   HEADER
========================= */

.site-header{
  background:#001f3f;
  color:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,0.2);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
}

.brand{
  text-decoration:none;
}

.logo{
  height:55px;
  width:auto;
}

/* =========================
   NAVIGATION
========================= */

.primary-nav ul{
  display:flex;
  align-items:center;
  gap:25px;
  list-style:none;
}

.primary-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.primary-nav a:hover{
  color:#00bfff;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
}

.hamburger span{
  display:block;
  width:28px;
  height:3px;
  background:#fff;
  margin:5px 0;
  border-radius:3px;
}

/* =========================
   CLOSE BUTTON
========================= */

.close-btn{
  display:none;
}

/* =========================
   TICKER
========================= */

.ticker{
  background:#003b70;
  overflow:hidden;
  white-space:nowrap;
}

.ticker p{
  display:inline-block;
  padding:10px 0;
  animation:tickerMove 18s linear infinite;
}

@keyframes tickerMove{
  from{
    transform:translateX(100%);
  }

  to{
    transform:translateX(-100%);
  }
}

/* =========================
   HERO SECTION
========================= */

.hero{
  background:
  linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
  url("images/hero.jpg") center/cover no-repeat;

  color:#fff;
  text-align:center;
  padding:120px 20px;
}

.hero h1{
  font-size:3rem;
  margin-bottom:20px;
}

.hero p{
  font-size:1.2rem;
  max-width:700px;
  margin:auto;
}

/* =========================
   BUTTONS
========================= */

.cta{
  display:inline-block;
  background:#004080;
  color:#fff;
  padding:12px 22px;
  margin-top:20px;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s ease;
  border:none;
  cursor:pointer;
  font-weight:600;
}

.cta:hover{
  background:#0066cc;
}

/* =========================
   SECTIONS
========================= */

.section{
  padding:70px 0;
}

.section h2{
  text-align:center;
  color:#001f3f;
  margin-bottom:40px;
  font-size:2rem;
}

/* =========================
   GRID LAYOUTS
========================= */

.offerings-grid,
.service-grid,
.testimonial-grid,
.blog-grid,
.resources-grid,
.executive-list,
.job-list,
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:25px;
}

/* =========================
   CARDS
========================= */

.offering-card,
.card,
.testimonial,
.blog-post,
.resource-card,
.executive,
.job-card,
.contact-card{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.offering-card:hover,
.card:hover,
.testimonial:hover,
.blog-post:hover,
.resource-card:hover,
.executive:hover,
.job-card:hover,
.contact-card:hover{
  transform:translateY(-5px);
}

.offering-card h3,
.card h3,
.blog-post h3,
.resource-card h3,
.executive h3,
.job-card h3,
.contact-card h3{
  color:#001f3f;
  margin:15px 0;
}

/* =========================
   IMAGES
========================= */

.offering-card img,
.executive img{
  width:100%;
  max-width:120px;
  margin:auto;
  display:block;
}

.executive img{
  border-radius:50%;
  margin-bottom:15px;
}

/* =========================
   STATS
========================= */

.stats-grid{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
  text-align:center;
}

.stat h3{
  font-size:2.5rem;
  color:#001f3f;
}

/* =========================
   LOGO CAROUSEL
========================= */

.logo-carousel{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.logo-carousel img{
  height:60px;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form{
  max-width:700px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.contact-form label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:1rem;
}

.contact-form textarea{
  resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#004080;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  background:#001f3f;
  color:#fff;
  text-align:center;
  padding:40px 20px;
}

.footer-logo{
  height:50px;
  margin-bottom:15px;
}

.site-footer a{
  color:#fff;
}

.disclaimer,
.credits{
  margin-bottom:10px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

  /* MOBILE NAV BUTTON */
  .nav-toggle{
    display:block;
    z-index:1001;
  }

  /* MOBILE MENU */
  .primary-nav{
    position:fixed;
    top:0;
    left:-100%;
    width:260px;
    height:100%;
    background:#001f3f;
    padding-top:70px;
    transition:0.3s ease;
    z-index:1000;
  }

  .primary-nav.open{
    left:0;
  }

  .primary-nav ul{
    flex-direction:column;
    align-items:flex-start;
    padding-left:25px;
    gap:20px;
  }

  .close-btn{
    display:block;
    position:absolute;
    top:15px;
    right:20px;
    font-size:32px;
    cursor:pointer;
    color:#fff;
  }

  /* OVERLAY */
  .nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    display:none;
    z-index:999;
  }

  .nav-overlay.active{
    display:block;
  }

  /* HERO */
  .hero{
    padding:90px 20px;
  }

  .hero h1{
    font-size:2rem;
  }

  .hero p{
    font-size:1rem;
  }

  /* SECTION HEADINGS */
  .section h2{
    font-size:1.6rem;
  }

  /* STATS */
  .stats-grid{
    flex-direction:column;
    gap:25px;
  }

}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media(max-width:480px){

  .hero h1{
    font-size:1.7rem;
  }

  .cta{
    width:100%;
    text-align:center;
  }

  .contact-form{
    padding:20px;
  }

}

/* =========================
   FIX MOBILE MENU
========================= */

.primary-nav{
  display:block;
}

.primary-nav ul li{
  width:100%;
}

.primary-nav ul li a{
  display:block;
  width:100%;
  padding:10px 0;
}