
:root{
  --primary:#5d7d4d;
  --primary-dark:#48643b;
  --secondary:#8a6d5a;
  --light:#f7f7f4;
  --white:#ffffff;
  --text:#2b2b2b;
  --border:#ececec;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
}

body{
  font-family: 'Poppins', sans-serif;
  background:var(--light);
  color:var(--text);
  overflow-x:hidden;
}

section{
  padding:90px 0;
}

img{
  width:100%;
}

.light-bg{
  background: url('images/bg-pattern.png') no-repeat center;
  background-size:cover;
}

.section-title{
  font-size:44px;
  font-family: 'Poppins', sans-serif;
  color:var(--primary-dark);
  margin-bottom:20px;
}

.section-text{
  color:#666;
  line-height:1.9;
  margin-bottom:18px;
}

.navbar{
  background:rgba(255,255,255,0.94)!important;
  backdrop-filter:blur(15px);
  padding:14px 0;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand{
  font-size:28px;
  font-weight:700;
  color:var(--primary-dark)!important;
}

.nav-link{
  color:#444!important;
  margin-left:10px;
  font-weight:600;
}

.nav-link:hover{
  color:var(--primary)!important;
}

.hero-section{
  overflow:hidden;
  padding-bottom: 0;
}

.hero-slide{
  min-height: 500px;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-slide img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.93) 20%,
    rgba(255,255,255,0.75) 55%,
    rgba(255,255,255,0.20)
  );
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:700px;
}

.hero-tag{
  display:inline-block;
  background:#edf4e8;
  color:var(--primary-dark);
  padding:10px 18px;
  border-radius:50px;
  font-weight:600;
  margin-bottom:25px;
}

.hero-content h1{
  font-size:90px;
  line-height:1;
  font-weight:700;
  color:var(--primary-dark);
  margin-bottom:20px;
}

.hero-content h1 span{
  color:var(--primary);
}

.hero-subtitle{
  font-size:30px;
  color:var(--secondary);
  margin-bottom:40px;
}

.hero-meta{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:40px;
}

.hero-meta small{
  text-transform:uppercase;
  font-size:12px;
  color:#777;
}

.hero-meta h5{
  font-size:24px;
  font-weight:700;
  color:var(--primary-dark);
}

.divider{
  width:1px;
  height:50px;
  background:#ccc;
}

.hero-btns{
  display:flex;
  gap:20px;
}

.primary-btn{
  background:var(--primary);
  color:#fff;
  padding:14px 34px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.4s;
  border:none;
}

.primary-btn:hover{
  background:var(--primary-dark);
  transform:translateY(-4px);
}

.secondary-btn{
  border:1px solid var(--primary);
  padding:14px 34px;
  border-radius:50px;
  text-decoration:none;
  color:var(--primary-dark);
  font-weight:600;
}
.countdown-section{
    padding-bottom: 0;
}
.countdown-box{
  background:#fff;
  padding:35px;
  border-radius:24px;
  text-align:center;
  box-shadow:var(--shadow);
}

.countdown-box h2{
  font-size:52px;
  color:var(--primary-dark);
}

.committee-card{
  background:#fff;
  padding:30px;
  border-radius:24px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.4s;
}

.committee-card:hover{
  transform:translateY(-10px);
}

.committee-card img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:20px;
}

.committee-card h4{
  color:var(--primary-dark);
}

.info-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.info-card h4{
  padding:20px;
  text-align:center;
  color:var(--primary-dark);
}

.highlight-box{
  background:#fff;
  border-radius:20px;
  padding:35px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.4s;
}

.highlight-box:hover{
  transform:translateY(-8px);
}

.highlight-box i{
  font-size:42px;
  color:var(--primary);
  margin-bottom:20px;
}

.download-card{
  background:#657b52;
  padding:50px 30px;
  border-radius:30px;
  text-align:center;
  color:#fff;
}
.download-card h4{
    margin-bottom: 20px;
}

.download-card.yellow{
  background:#657b52;
}

.download-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto auto 25px;
}

.download-icon i{
  font-size:38px;
  color:var(--primary-dark);
}

footer{
  background:#37432c;
  color:#fff;
  padding:80px 0 30px;
}

footer h4{
  margin-bottom:20px;
}

footer p{
  color:rgba(255,255,255,0.7);
}

.reveal{
  opacity:0;
  transform:translateY(80px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:992px){

.hero-content h1{
  font-size:60px;
}

.hero-subtitle{
  font-size:22px;
}

.section-title{
  font-size:34px;
}

}

@media(max-width:768px){

.hero-slide{
  min-height:90vh;
}

.hero-content h1{
  font-size:44px;
}

.hero-meta{
  gap:18px;
}

.divider{
  display:none;
}

.hero-btns{
  flex-direction:column;
}

.section-title{
  font-size:28px;
}

}
```
