@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900 !important;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 800;
  color: #20212c;
}

.conpad {
  padding: 0 100px;
}

.img-style {
  width: 100%;
  height: auto;
}

::placeholder {
  color: #6c757d !important;
  opacity: 1;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #18ad38;
  box-shadow: 0 0 8px rgba(24, 173, 56, 0.4);
  outline: none;
}

section {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.ser {
  margin: 0 100px;
}

.color {
  background: #2e7d32;
}

.white {
  color: white;
}

.text-justify {
  text-align: justify;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 14px 22px;
  transition: all 0.3s ease;
}

.btn-main {
  background: #2e7d32;
  border-radius: 100px;
  border: none;
  font-weight: 600;
  color: #fff;
}
.btn-main:focus,
.btn-main:active {
  outline: none;
  box-shadow: none !important;
}
.btn:hover {
  transform: translateY(-5px);
  background: #2e7d32;
}

/* ======= Navbar ======= */
.navbar {
  background-color: #3a6f43 !important;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
  color: white !important;
  font-weight: 600;
}

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

/* ======= Section Titles ======= */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  color: var(--primary, #2e7d32);
}
/* ======= projects ====== */
.projects {
  background-color: #b6ceb4;
}
/* ======= Footer ======= */
footer {
  background-color: #3a6f43;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 992px) {
  .conpad,
  .ser {
    padding: 0 40px;
    margin: 0 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  .conpad,
  .ser {
    padding: 0 20px;
    margin: 0 20px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .hero-section {
    min-height: 70vh;
  }

  .form-control {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }

  footer {
    font-size: 0.9rem;
  }
}
