:root {
  --primary: #0d3b66;
  --secondary: #f4b400;
  --light: #f7f9fc;
  --dark: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

p{
  font-size: 1.2rem;
}

li{
  list-style-type: none;
}

html, body {
  overflow-x: hidden;
}


body {
  color: var(--dark);
  line-height: 1.6;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-muted {
  background: #f6f6f6;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

/* Hero */
.hero {
  display: flex;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cover {
  position: relative;
  inset: 0;
  background: url("assets/hero.jpg") center/cover no-repeat;
  width: 95vw;
  height: 95vh;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #003A79;
  background: linear-gradient(180deg,rgba(0, 58, 121, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 150px 20px 20px 20px;
  text-align: center;

}

.logo{
  width: 70px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin: 10px 0;
}

.hero-desc {
  margin: 20px 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: var(--secondary);
  color: #003a79;
}

.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}


.section p h2{
  color: #003a79;
  font-weight: bold;
}
/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 15px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Cards */
.card {
  background: #f6f6f6;
  padding: 24px;
  border-radius: 16px;
  height: 40vh;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* remove inline gap */
}


/* Program */
.program-card {
  padding: 20px;
  border: solid 1px #ddd;
  background: white;
  text-align: center;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  padding-bottom: 20px;
}

.program-card h3 {
  margin: 15px 0;
}

.program-card ul {
  padding-left: 20px;
}

/* Stats */
.stats-section{
    background: #f6f6f6;
    padding-bottom: 100px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
  padding: 0 300px;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--primary);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 0 5px;
}

.wa-btn {
  position: fixed;
  bottom: calc(88px + env(safe-area-inset-bottom));
  right: calc(16px + env(safe-area-inset-right));
  left: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;

  z-index: 99999;
}




/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 80px 0;
  text-align: center;
  height:40vh;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { 
    grid-template-columns: repeat(2,1fr); 
    padding: 0 10px;
  }
  .hero-cover {
    width: 100%;
    height: 100vh;
    border-radius: 0 0 15px 15px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero h1 { font-size: 2.6rem; }

}


@media (max-width: 900px) {
  .wa-btn {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 901px) {
  .wa-btn {
    bottom: 24px;
  }
}
