body {
  font-family: 'Open Sans', sans-serif;
  color: #000080;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Headings and Logo */
h1, h2, h3, .logo, .company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Navbar styling */
.navbar {
    width: 100%;
    background-color: #000080; /* your theme color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap; /* allows wrapping on small screens */
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* smaller size */
    width: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #1d2d44;
    border-radius: 4px;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1d2d44;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-content {
        position: static;
    }
}







#contact-section {
  background-color: #f4f9fd;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  color: #083358;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-details li {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

.app-links {
  display: flex;
  gap: 15px;
}

.app-download {
  background-color: #00c194;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.app-download:hover {
  background-color: #029e7c;
}

.contact-form-box {
  flex: 1 1 400px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  animation: slideIn 1s ease;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #083358;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.send-button {
  background-color: #00c194;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.send-button:hover {
  background-color: #029e7c;
}

.map-image-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.map-container,
.image-container {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-container,
  .map-image-section {
    flex-direction: column;
    text-align: center;
  }

  .app-links {
    justify-content: center;
  }
}
