/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f8f9fc;
  color:#333;
}



/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 50px;
  box-shadow:0 2px 15px rgba(0,0,0,0.08);
  z-index:1000;
  transition:0.4s ease;
}

.navbar.scrolled{
  padding:10px 50px;
}

.logo-container{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:bold;
  color:#2f3c7e;
  animation:float 3s ease-in-out infinite;
}

.logo-container img{
  height:45px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:3px;
  background:#ff6b35;
  transition:0.4s;
}

.nav-links a:hover::after,
.active::after{
  width:100%;
}

/* DONATE */
.donate-btn{
  background:linear-gradient(135deg,#ff6b35,#ff9f1c);
  color:#fff !important;
  padding:10px 18px;
  border-radius:30px;
}

/* HERO */
.work-hero{
  height:70vh;
  background:
  linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
  url('hero.png') center/cover no-repeat;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}

.hero-content h1{
  font-size:60px;
}

.hero-content p{
  margin-top:15px;
  font-size:20px;
}

/* SECTION */
section{
  padding:90px 60px;
}

h2{
  text-align:center;
  margin-bottom:30px;
  color:#2f3c7e;
  font-size:38px;
}

.intro-section p{
  max-width:900px;
  margin:auto;
  text-align:center;
  line-height:1.8;
  font-size:18px;
}

/* SERVICES INTRO */
.services-intro{
  max-width:1000px;
  margin:0 auto 40px;
  text-align:center;
  line-height:1.9;
  font-size:18px;
  color:#555;
}

/* SERVICE CARD */
.service-card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.4s ease;
  border-top:5px solid #ff6b35;
}

.service-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.service-card h3{
  margin-bottom:18px;
  color:#ff6b35;
  font-size:22px;
}

.service-card p{
  line-height:1.8;
  margin-bottom:12px;
  color:#555;
}




/* FOOTER */
footer{
  background:#2f3c7e;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* FADE */
.fade{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.fade.show{
  opacity:1;
  transform:translateY(0);
}

/* FLOAT */
@keyframes float{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-4px);
  }
  100%{
    transform:translateY(0px);
  }
}

/* MOBILE */
@media(max-width:768px){

  .navbar{
    flex-direction:column;
    padding:15px 20px;
    gap:15px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-content h1{
    font-size:40px;
  }

  section{
    padding:70px 20px;
  }

}

/* CENTER VIEW WORK BUTTON */
.btn-primary {
  display: block;
  width: fit-content;
  margin: 30px auto;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff9f1c);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: 30px auto;
  font-weight: 600;
  transition: 0.4s ease;
  box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255,107,53,0.5);
}