body{
font-family: Arial, sans-serif;
margin:0;
background:#f5f5f5;
}

header{
background:#004080;
color:white;
padding:15px;
display:flex;
align-items:center;
}

.logo{
font-size:24px;
font-weight:bold;
margin-right:auto;
}

nav a{
color:white;
margin:0 15px;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
text-decoration:underline;
}

.slider{
width:100%;
height:500px;
overflow:hidden;
position:relative;
}

.slides{
display:flex;
width:300%;
animation:slide 12s infinite;
}

.slides img{
width:100%;
height:1000px;
object-fit:cover;
}

@keyframes slide{
0%{margin-left:0;}
33%{margin-left:-100%;}
66%{margin-left:-200%;}
100%{margin-left:0;}
}

.container{
padding:40px;
max-width:1100px;
margin:auto;
background:white;
}

h1{
color:#004080;
}

footer{
background:#004080;
color:white;
text-align:center;
padding:15px;
margin-top:20px;
}

.program-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.program{
background:#eef3ff;
padding:20px;
border-radius:8px;
}

.activity{
background:#fff7e6;
padding:15px;
margin-bottom:10px;
border-left:5px solid orange;
}

.contact-box{
background:#eef3ff;
padding:20px;
border-radius:10px;
}
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}
.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #f5c542; /* Gold accent */
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f5c542;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.social-icons a:hover {
  color: #f5c542;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}