*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}

body{
  background:#f3f1ec;
  color:#1f2a2e;
  line-height:1.6;
  overflow-x:hidden;
}


/* ================= HEADER ================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:#000408;
  border-bottom:1px solid rgba(224,185,110,0.2);
}

.container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 6%;
}


/* LOGO */

.logo{
  display:flex;
  align-items:center;
}

.logo-img{
  height:60px;
  width:auto;
  display:block;
}


/* NAV */

.nav{
  display:flex;
  gap:14px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#e8e3dc;
  font-weight:600;
  padding:6px 12px;
  border-radius:4px;
  transition:0.3s;
}

.nav a:hover{
  background:rgba(224,185,110,0.2);
  transform:translateY(-2px);
}

.nav-cta{
  background:linear-gradient(135deg,#e0b96e,#c89b3c);
  color:#1b1b1b !important;
  font-weight:700;
}


/* ================= HERO ================= */

.hero{
  height:92vh;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:0 10%;
  background:url("image.png") center/cover no-repeat;
}

.overlay{
  max-width:650px;
}

.overlay h1{
  font-size:55px;
  line-height:1.2;
  margin-bottom:20px;
}

.overlay p{
  font-size:20px;
}


/* BUTTON */

.btn{
  display:inline-block;
  padding:14px 36px;
  background:linear-gradient(135deg,#e0b96e,#c89b3c);
  color:#1b1b1b;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
  margin-top:15px;
}


/* ================= SECTIONS ================= */

.section{
  padding:60px 10%;
}

.section h2{
  text-align:center;
  margin-bottom:40px;
  font-size:36px;
}

.grey{
  background:#e9e6df;
}


/* ================= CARDS ================= */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#fff;
  padding:25px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.08);
  transition:0.25s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


/* ================= STATS ================= */

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  text-align:center;
  gap:20px;
}

.stats h3{
  font-size:40px;
  color:#c89b3c;
}


/* ================= DIRECTOR ================= */

.director{
  display:flex;
  gap:40px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}

.director img{
  width:220px;
  border-radius:50%;
}


/* ================= FORM ================= */

form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

input,
textarea{
  padding:14px;
  border-radius:8px;
  border:1px solid #ddd;
  width:100%;
}

textarea{
  height:140px;
}

button{
  padding:14px;
  border:none;
  background:linear-gradient(135deg,#e0b96e,#c89b3c);
  font-weight:700;
  cursor:pointer;
}


/* ================= FOOTER ================= */

.footer{
  background:#000408;
  color:#ccc;
  padding:60px 10% 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.footer h3,
.footer h4{
  color:#e0b96e;
}

.footer a{
  display:block;
  color:#ccc;
  text-decoration:none;
  margin:6px 0;
}

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

.footer-bottom{
  text-align:center;
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
}


/* ================= MOBILE RESPONSIVE FIXES ONLY ================= */

@media(max-width:768px){

  .container{
    flex-direction:column;
    gap:12px;
    padding:8px 5%;
  }


  .logo-img{
    height:50px;
  }


  .nav{
    width:100%;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
  }


  .nav a{
    font-size:14px;
    padding:6px 10px;
  }


  .hero{
    height:80vh;
    padding:0 7%;
    background-position:center center;
  }


  .overlay h1{
    font-size:36px;
  }


  .overlay p{
    font-size:17px;
  }


  .section{
    padding:50px 7%;
  }


  .section h2{
    font-size:28px;
  }


  .cards{
    grid-template-columns:1fr;
  }


  .card{
    width:100%;
  }


  .stats{
    grid-template-columns:1fr;
  }


  .director{
    flex-direction:column;
    text-align:center;
  }


  .director img{
    width:180px;
  }


  form{
    width:100%;
  }


  .footer{
    padding:40px 7% 20px;
  }


  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

}


/* ================= SMALL PHONES ================= */

@media(max-width:420px){

  .overlay h1{
    font-size:30px;
  }


  .overlay p{
    font-size:15px;
  }


  .nav a{
    font-size:13px;
  }


  .section h2{
    font-size:24px;
  }

}

.hero {
  position: relative;
  height: 100vh; /* adjust as needed */
}

.overlay {
  position: absolute;
  bottom: 30px; /* distance from bottom */
  left: 50%;
  transform: translateX(-50%);
}

.btn{
  display:inline-block;
  padding:14px 36px;
  background:linear-gradient(135deg,#e0b96e,#c89b3c);
  color:#1b1b1b;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
  margin-top:15px;
}
