/* General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #001f3f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  width: 140px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: #00bcd4;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #001f3f;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-radius: 8px 0 0 8px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 10%;
  gap: 50px;
  background: #ffffff;
}

.contact-image {
  flex: 1 1 400px;
}

.contact-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-description {
  margin-top: 20px;
  font-size: 15px;
  color: #555;
}

/* Contact Form */
.contact-form {
  flex: 1 1 400px;
  background: #f9fbfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #001f3f;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

input,
textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #00bcd4;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #00bcd4;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #0097a7;
}

/* Footer */
.dark-footer {
  background: #001f3f;
  color: #fff;
  padding: 50px 10% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-email {
  margin-bottom: 15px;
  color: #ccc;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #00bcd4;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00bcd4;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00bcd4;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
}

.newsletter button {
  background: #00bcd4;
  border: none;
  padding: 10px 15px;
  color: #fff;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #0097a7;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-image,
  .contact-form {
    width: 100%;
  }
}
