*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: sans-serif;
  background:#fefcf8;
  overflow-x:hidden;
}


.custom-nav{
  background:#797d62;
  padding:15px 0;
}

.nav-link{
  transition:0.3s;
}

.nav-link:hover{
  color:#f8d488 !important;
}


.hero-section{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  background:linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("pin(4).jpg") center/cover no-repeat;
}

.hero-title{
  color:white;
  font-size:4rem;
  font-weight:800;
  line-height:1.2;
}

.hero-title span{
  color:#f8d488;
}

.hero-text{
  color:#f5f5f5;
  margin:20px 0;
  line-height:1.8;
  font-size:1.1rem;
}

.hero-img{
  max-height:500px;
  border-radius:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.3);
  transition:0.4s;
}

.hero-img:hover{
  transform:scale(1.03);
}


.custom-btn{
  background:#d08c60;
  color:white;
  padding:12px 30px;
  border:none;
  border-radius:50px;
  transition:0.4s;
}

.custom-btn:hover{
  background:#997b66;
  transform:translateY(-3px);
}

.outline-btn{
  border:2px solid #fff;
  color:#fff;
  padding:12px 30px;
  border-radius:50px;
}

.outline-btn:hover{
  background:white;
  color:#797d62;
}


.section-title h2{
  font-size:2.5rem;
  color:#797d62;
  font-weight:700;
}

.section-title p{
  color:#777;
}


.component-btn{
  background:#797d62;
  color:white;
  padding:15px;
  border-radius:15px;
  transition:0.4s;
}

.component-btn:hover{
  background:#9b9b7a;
  transform:translateY(-5px);
}

.component-btn-two{
  background:#d08c60;
  color:white;
  padding:15px;
  border-radius:15px;
  transition:0.4s;
}

.component-btn-two:hover{
  background:#997b66;
}

.glow-btn{
  background:#f8d488;
  color:#333;
  padding:15px;
  border-radius:15px;
  transition:0.4s;
}

.glow-btn:hover{
  box-shadow:0 0 20px #f8d488;
  transform:scale(1.04);
}


.cards-section{
  background:#fff8ef;
}

.custom-card{
  background:white;
  padding:35px;
  border-radius:25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  height:100%;
}

.custom-card:hover{
  transform:translateY(-10px);
}

.card-icon{
  width:80px;
  height:80px;
  background:#f1dca7;
  margin:auto;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  color:#797d62;
  margin-bottom:20px;
}

.card-btn{
  background:#797d62;
  color:white;
  padding:10px 25px;
  border-radius:30px;
  margin-top:15px;
}

.card-btn:hover{
  background:#d08c60;
  color:white;
}


.input-box{
  background:white;
  padding:40px;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.custom-input{
  padding:15px;
  border-radius:15px;
  border:2px solid #eee;
  transition:0.3s;
}

.custom-input:focus{
  border-color:#d08c60;
  box-shadow:none;
}

.password-box{
  position:relative;
}

.toggle-password{
  position:absolute;
  right:20px;
  top:53px;
  cursor:pointer;
  color:#777;
}

.submit-btn{
  background:#797d62;
  color:white;
  padding:14px;
  border-radius:15px;
}

.submit-btn:hover{
  background:#d08c60;
  color:white;
}


.toast-btn{
  background:#d08c60;
  color:white;
  padding:14px 30px;
  border-radius:15px;
}

.toast-box{
  position:fixed;
  top:30px;
  right:-400px;
  background:#797d62;
  color:white;
  padding:18px 30px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  transition:0.5s;
  z-index:999;
}

.toast-box.show{
  right:30px;
}

.toast-box i{
  margin-right:10px;
}


.doc-box{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.doc-item{
  background:white;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
  transition:0.4s;
}

.doc-item:hover{
  transform:translateY(-5px);
}

.doc-item h5{
  color:#797d62;
  margin-bottom:15px;
}


@media(max-width:768px){

  .hero-title{
    font-size:2.5rem;
  }

  .hero-section{
    text-align:center;
    padding:80px 0;
  }

  .hero-img{
    margin-top:40px;
  }

}