/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding-top: 80px; /* Adds space below the fixed header */
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #003366;
}

.scrollable-nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ffffff;
  background-color: #66b2ff;
  border-radius: 5px;
  padding: 5px 10px;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.dropdown-content a {
  color: #003366;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #66b2ff;
  color: #ffffff;
}

.dropdown-content a.active {
  background-color: #66b2ff;
  color: #ffffff;
}

.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show the hamburger menu */
  }

  .scrollable-nav {
    display: none; /* Hide the nav by default */
    flex-direction: column;
    position: absolute;
    top: 80px; /* Adjust based on header height */
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .scrollable-nav.open {
    display: flex; /* Show the nav when toggled */
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .dropdown-content {
    position: static; /* Make dropdown content flow naturally */
    box-shadow: none;
    background-color: #f4f4f4;
    margin-top: 10px;
  }

  .dropdown-content a {
    padding: 10px;
    color: #003366;
  }

  .dropdown-content a:hover {
    background-color: #82b9ec;
  }
}
/* Active Link Styling */
.nav-links a.active {
  color: #ffffff;
  background-color: #66b2ff;
  border-radius: 5px;
  padding: 5px 10px;
}
/* Contact Section */
.contact-section {
  padding: 20px;
  background-color: #ffffff;
}

.contact-title {
  font-size: 2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form .submit-btn {
  background-color: #003366;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form .submit-btn:hover {
  background-color: #66b2ff;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
      display: block;
  }

  .scrollable-nav {
      display: none;
      flex-direction: column;
      background-color: #ffffff;
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .scrollable-nav.open {
      display: flex;
  }

  .nav-links {
      flex-direction: column;
      gap: 10px;
      padding: 10px 0;
  }

  .nav-links a {
      text-align: center;
      padding: 10px;
      font-size: 1rem;
  }

  .contact-title {
      font-size: 1.5rem;
  }
}


/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.contact-box {
  flex: 1 1 calc(33% - 20px);
  background-color: #003366;
  color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-10px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffcc00;
}

.contact-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Map Section */
.map-container {
  margin-top: 40px;
}

.map-link {
  display: inline-block;
  font-size: 1.2rem;
  color: #003366;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #ffcc00;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.map-link:hover {
  background-color: #66b2ff;
  color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-box {
    width: 90%;
    margin-bottom: 20px;
  }

  .contact-box:last-child {
    margin-bottom: 0;
  }

  .contact-icon {
    font-size: 2.5rem;
  }

  .contact-box h2 {
    font-size: 1.3rem;
  }

  .contact-box p {
    font-size: 1rem;
  }

  .map-link {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
.enquiry-form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center; /* Centers all text within the container */
}

.enquiry-form-container h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  text-align: center; /* Ensures the text itself is centered */
}

/* Enquiry Form */
.enquiry-form-container {
  margin-top: 40px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.enquiry-form-container h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #003366;
  text-align: center;
}

.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  text-align: left;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: none;
}

.btn-submit {
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #66b2ff;
}

/* Custom dropdown arrow */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23003366" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
  
/* Footer */
footer {
  background-color: #003366;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-info p {
  margin: 10px 0;
}

.follow-us {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  background-color: #0033ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  color: #fff;
}

.social-icon.instagram {
  background-color: #ffffff; /* Dark blue background for Instagram */
}

.social-icon.instagram i {
  color: hsl(349, 75%, 57%); /* Instagram's actual icon color */
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #66b2ff;
}

.social-icon.instagram:hover {
  background-color: #005b8e; /* Dark blue hover effect for Instagram */
}

/* Floating WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50px;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.05);
}

.whatsapp-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.whatsapp-link i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.whatsapp-link span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}