* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
}


body {
  
  background: #ecf5ff;
  color: #222;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #573204;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0 25px;
}


/* Logo */
.logo {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Nav links CENTER */
.navbar {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 20px;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}


.nav-links a {
  margin: 0 16px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.nav-links a:hover {
  color: #cbd5e1;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-box {
  background: #ffffff;
  padding: 45px;
  max-width: 720px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
}

.hero-box h1 {
  font-size: 30px;
  margin-bottom: 15px;
}

.hero-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* ================= FOOTER ================= */
.footer {
  background:#573204;
  color: white;
  text-align: center;
  padding: 16px;
  font-size: 13px;
}


/* ================= SLIDER ================= */
.slider {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}


.contact-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-section .sub {
  color: #666;
  margin-bottom: 40px;
}

form {
  text-align: left;
}

.row {
  display: flex;
  gap: 20px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

textarea {
  height: 140px;
  resize: none;
}

button {
  background: #2c2c2c;
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
   text-align: center !important;

}

button:hover {
  background: #000;
}

.direct {
  margin-top: 40px;
  color: #555;
}


.footer {
  margin-top: 0 !important;
}




/* Mobile */
@media(max-width:600px){
  .row{
    flex-direction: column;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .navbar {
    min-height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 42px;
  }

  .nav-links a {
    margin: 0 10px;
    font-size: 13px;
  }

  .hero-box {
    padding: 30px;
  }

  .hero-box h1 {
    font-size: 22px;
  }
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

