* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
/* Navbar Container */
.navbar {
    background-color: #333;
    color: white;
    padding: 10px 20px;
}

/* Top Row: logo & menu icon */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e65c00;
}

/* Menu icon */
.menu-icon {
    font-size: 26px;
    cursor: pointer;
    color: white;
    display: none;
}

/* Search Input */
.search-input {
    width: 250px;
    padding: 6px 12px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-top: 10px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links li a:hover {
    color: #e65c00;
}


/* ----------------- Responsive ----------------- */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navbar {
        width: 100%;
    }

    .top-row {
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #222;
        margin-top: 10px;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .search-input {
        width: 100%;
        margin-top: 10px;
    }

    .navbar {
        flex-direction: column;
    }
}

.nav-links a:hover,
.nav-links .active {
  color: #f9b234;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  text-align: center;
}

.contact-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-section p {
  margin-bottom: 40px;
  color: #555;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-form {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  padding: 12px;
  background-color: #f9b234;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #e09e1a;
}

.contact-info {
  flex: 1 1 35%;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #f9b234;
}


.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #f9b234;
  outline: none;
}


/* Footer */
.footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

.social-icons img {
  width: 24px;
  margin: 0 10px;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    text-align: center;
  }
}
