
/* style.css - Deep blue gradient theme with parallax and creative buttons */
:root{
  --primary-gradient: linear-gradient(135deg,#062f4f,#0f4b6f,#1b6b95);
  --accent:#ffd54a;
  --card-bg: #ffffff;
  --muted:#6c757d;
}
body{
  font-family: "Helvetica Neue", Arial, sans-serif;
  color:#222;
  background:#f8f9fa;
}
.navbar-brand img{ height:40px; }

/* Hero section with parallax */
.hero{
  background: url('../images/hero.jpg') center/cover fixed;
  color: #fff;
  padding: 7rem 0 6rem;
  text-align:center;
  position: relative;
}
.hero::before{
  content:""; position:absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.55);
}
.hero .container{ position:relative; z-index:2; }
.hero .logo-circle{
  width:110px;height:110px;border-radius:50%;
  background: rgba(255,255,255,0.12); display:inline-flex;
  align-items:center; justify-content:center; font-weight:700;
  box-shadow: 0 8px 20px rgba(11,33,66,0.35);
  margin-bottom:1rem;
}
.hero h1{font-size:3rem; font-weight:700; letter-spacing:0.5px;}
.hero p.lead{max-width:850px;margin:0 auto 1.5rem; color:rgba(255,255,255,0.9);}

/* Creative buttons */
.btn-primary{
  background: linear-gradient(90deg,#0f4b6f,#1b6b95);
  border:none; border-radius:50px; padding:0.75rem 2rem;
  font-weight:600; transition:all 0.3s ease; position:relative; overflow:hidden;
}
.btn-primary::after{
  content:"\f061"; font-family:"Font Awesome 6 Free"; font-weight:900;
  margin-left:10px; transition:transform 0.3s ease; display:inline-block;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 18px rgba(11,33,66,0.35); }
.btn-primary:hover::after{ transform:translateX(5px); }

.btn-outline-light{
  border-radius:50px; padding:0.75rem 2rem; font-weight:600;
}
.section{ padding:4rem 0; }
.card-service{
  border:1px solid #e9ecef; border-radius:12px; padding:1.25rem;
  background:var(--card-bg); min-height:150px;
}
.mission-card{border-radius:10px; padding:1.5rem; background:#ffffff; border:1px solid #ececec;}
.services-grid .card-service img{ width:100%; border-radius:8px; margin-bottom:0.75rem; }
.events .card{ border-radius:12px; overflow:hidden; }
.carousel-inner img{ width:100%; height:700px; object-fit:cover; border-radius:12px; }
.team-member img{ width:140px; height:140px; object-fit:cover; border-radius:50%; }

/* Footer with social icons */
.footer{
  background:#0b1320; color:#cfe8ff; padding:2.5rem 0; margin-top:3rem;
}
.footer a{ color:#cfe8ff; text-decoration:none; margin:0 10px; font-size:1.25rem; transition:color 0.3s; }
.footer a:hover{ color:#fff; }

@media (max-width:767px){
  .hero h1{font-size:2rem;}
  .carousel-inner img{ height:220px; }
}
