
:root{
  --primary:#036960;
  --dark:#022f2c;
  --light:#f4f8f8;
}

html, body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #272727;
}



.top-header{
  padding:20px 0;
  background:#ffffff;
  border-bottom:1px solid #eaeaea;
	box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
}

.logo img{
  height:45px;   /* Smaller logo */
}

/* Social Icons Modern Style */
.social-icons{
  display:flex;
  align-items:center;
  gap:10px;
}

.social-btn{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f2f6f6;
  color:#036960;
  font-size:16px;
  transition:all .3s ease;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.social-btn:hover{
  background:#036960;
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 8px 18px rgba(3,105,96,.3);
}


/* NAVBAR */
.navbar{
  background:var(--primary);
}

.navbar-nav .nav-link{
  color:#fff !important;
  font-weight:500;
  padding:14px 18px;
  position:relative;
  transition:.3s;
}

.navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  left:18px;
  bottom:8px;
  width:0%;
  height:2px;
  background:#fff;
  transition:.3s;
}

.navbar-nav .nav-link:hover::after{
  width:60%;
}

/* SLIDER */
.carousel-item img{
  height:520px;
  object-fit:cover;

}

.carousel-caption{
  bottom:30%;
}

.carousel-caption h2{
  font-size:42px;
  font-weight:700;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:var(--primary);
  padding:25px;
  border-radius:50%;
}



.go4youth-highlight{
  padding:40px 0;
  background:linear-gradient(135deg,#036960,#024f49);
  color:#fff;
  text-align:center;

}

.row.align-items-center22 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.highlight-title{
  font-size:38px;
  font-weight:700;
  margin-bottom:20px;
}

.highlight-subtitle{
  font-size:18px;
  max-width:800px;
}

.age-badge{
  background:#fff;
  color:#036960;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
}

.registration-box{
  background:rgba(255,255,255,.1);
  padding:25px;
  border-radius:10px;
  backdrop-filter:blur(5px);
}

.btn-register{
  background:#fff;
  color:#036960;
  padding:7px 20px;
  font-weight:600;
	font-size: 14px;
  border-radius:30px;
  text-decoration:none;
  display:inline-block;
  transition:.3s;
}

.btn-register:hover{
  background:#022f2c;
  color:#fff;
}

@media(max-width:768px){
  .highlight-title{
    font-size:26px;
  }
  .highlight-subtitle{
    font-size:16px;
  }
}

/* CARDS */
.info-card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transition:.3s;
  height:100%;
}

.info-card:hover{
  transform:translateY(-6px);
  border-top:4px solid var(--primary);
}
.btn-primary-custom{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:7px 20px;
  border-radius:4px;
}
.btn-primary-custom:hover{
  background:#024f49;
  color:#fff;
}
/* LIST */
.custom-list{
  list-style:none;
  padding:0;
}

.custom-list li{
  padding:15px 20px;
  margin-bottom:15px;
  background:#fff;
  border-left:5px solid var(--primary);
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

/* CTA */
.cta-section{
  background:var(--primary);
  color:#fff;
  padding:30px 0;
  text-align:center;
}

/* CONTACT */
.contact-box{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* FOOTER */
.footer{
  background:var(--dark);
  color:#fff;
  padding:50px 0 20px 0;
}

.footer a{
  color:#ddd;
  text-decoration:none;
}

.footer a:hover{
  color:#fff;
}

@media(max-width:768px){
  .carousel-caption h2{
    font-size:26px;
  }
  .carousel-item img{
    height:350px;
  }
}



.background-section{
  padding:80px 0;
  background:#f4f8f8;
}

.section-title{
  font-size:32px;
  font-weight:700;
  color:#036960;
  margin-bottom:25px;
  position:relative;
}



.endorsement-box{
  background:#ffffff;
  padding:20px;
  border-left:5px solid #036960;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  font-size:15px;
}

.btn-read-more{
  background:#036960;
  color:#fff;
  padding:10px 28px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.btn-read-more:hover{
  background:#024f49;
  color:#fff;
}

.image-wrapper{
  position:relative;
}

.image-wrapper img{
  border-radius:15px;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

@media(max-width:768px){
  .background-section{
    padding:50px 0;
  }
  .section-title{
    font-size:24px;
  }
}

