/* ===================================
   Global Reset & Base Styles
====================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

/* ===================================
   Navbar
====================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  color: #001f3f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 70px;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  color: #001f3f;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}


.nav-links li a {
  color: #001f3f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff7f00;
  border-bottom: 2px solid #ff7f00;
}

.nav-links li a.btn-link {
  background-color: #ff7f00;
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;  
  transition: background-color 0.3s ease;
}

.nav-links li a.btn-link:hover {
  background-color: #e86e00;
}

/* Responsive Navbar */
  @media (min-width: 769px) and (max-width : 1010px){
    .nav-links{
      gap: 0px;
      text-align: center;
    }
  }
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li a {
    width: 100%;
    color: #001f3f;
  }
  .nav-links li a.btn-link {
    width: auto;
    margin: auto;
  }
}
/* Contact Section */
.contact-section {
    background-color: #f7f9fa;
    padding: 60px 20px;
  }
  
  .contact-container {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .contact-info {
    flex: 1 1 40%;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-info ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-info ul li {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #001f3f;
  }
  
  .contact-form {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
  }
  .contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    width: 100%;
  }
  
  .contact-form textarea:focus {
    border-color: #ff7f00;
    box-shadow: 0 0 5px rgba(255, 127, 0, 0.3);
  }
  
  
  .contact-form button {
    background-color: #ff7f00;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #e86e00;
  }
  
  .map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-form,
    .contact-info {
      width: 100%;
    }
  }
  /* Footer Section */
  .site-footer {
    background-color: #001f3f;
    color: white;
    padding: 40px 20px 20px;
    font-size: 1.25rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 50px;
  }
  
  .footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff7f00;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #ff7f00;
  }
  
  .footer-column p {
    margin: 8px 0;
  }
  
  .social-icons a {
    margin-right: 10px;
    display: inline-block;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
  }
  
  .social-icons a:hover img {
    filter: brightness(0.8) invert(0.8) sepia(1) saturate(5) hue-rotate(20deg);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #ccc;
    border-top: 1px solid #444;
    padding-top: 15px;
  }
  .footer-bottom-dev {
    margin-top: 20px;
    text-align: right;
    font-size: 1rem;
    color: #ccc;
    /* font-weight: bold; */
  }
  .footer-bottom-dev b{
    text-decoration: underline;
  }
  
  /* Footer Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-column {
      margin-bottom: 30px;
    }
  
    .social-icons a {
      margin: 0 8px;
    }
}
/* Section spacing improvement */
@media (max-width: 480px) {
    section {
      padding-bottom: 40px;
    }
  }
  
  /* Adjust nav link layout on small screens */
  @media (max-width: 768px) {
    .nav-links li {
      width: 100%;
      padding: 12px 0;
    }
  }
  .whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #001f3f;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 250px;
    animation: slideIn 0.4s ease-in-out;
  }
  
  .whatsapp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .whatsapp-header span {
    font-size: 14px;
    font-weight: 500;
  }
  
  .whatsapp-header button {
    background: none;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
  }
  
  .whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    gap: 10px;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-button img {
    width: 20px;
    height: 20px;
  }
  
  .whatsapp-button:hover {
    background-color: #1ebd5a;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  