@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding-top: 80px;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    flex: 0 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links .inquiry-btn {
    display: none;
}

.nav-links a:hover {
    color: #ff3700;
}

.inquiry-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.inquiry-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.active-link a{
    color: #ff3700;
}


.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
/* Mobile Styles */
@media screen and (max-width: 768px) {
  .nav-container {
      justify-content: space-between;
      position: relative;
  }

  .hamburger {
      display: flex;
      order: 1;
  }

  .logo {
      order: 2;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-size: 20px;
  }

  .nav-right {
      display: none;
      /* Hide desktop inquiry button on mobile */
  }

  .nav-links {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: #fff;
      flex-direction: column;
      justify-content: flex-start;
      align-items: left;
      padding-top: 20px;
      gap: 10px;
      transition: left 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      position: fixed;
      transform: none;
  }

  .nav-links.active {
      left: 0;
  }

  .nav-links li {
      width: 100%;
      text-align: center;
  }

  .nav-links li a {
      font-size: 18px;
      display: block;
      text-align: left;
      width: 100%;
      padding: 15px 25px;
  }

  .nav-links li a:hover {
      color: #0056b3;
      background-color: rgb(233, 233, 233);
  }

  .nav-links .inquiry-btn {
      display: inline-block;
      /* Show inquiry button in mobile menu */
      padding: 15px 30px;
      /* Reduced padding for smaller width */
      font-size: 18px;
      /* Slightly smaller font */
      color: #fff;
      margin: 0 20px;
      text-align: center;
  }

  .nav-links li:last-child {
      display: flex;
      justify-content: center;
      width: 100%;
  }
}



.contact-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-form-side {
  padding: 50px 40px;
}

.location-side {
  padding: 50px 40px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #6c757d;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.required {
  color: #e74c3c;
}

.btn-submit {
  background-color: #2c5aa0;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #1e3f73;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.location-info {
  margin-bottom: 30px;
}

.info-text {
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.3;
}

.contact-details {
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
  min-width: 30px;
}

.detail-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.detail-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}
.detail-content p,a{
  text-decoration: none;
  cursor: pointer;
}
.detail-content a,p:hover{
  color: #2c5aa0;
}
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  position: relative;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-side,
  .location-side {
    padding: 40px 30px;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  display: none;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
  display: none;
}



  

/*Footer*/


/*Footer*/

.footer {
    background: #3E8F88;
    color: white;
    padding: 40px 80px;
    position: relative;
    margin:0 auto;
    min-height: 75vh;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 220px;
    margin: 20px;
  }
  .about{
    line-height: 1.3;
    font-size: 1rem;
    color: rgb(225, 225, 225);
  }
  .footer-section h4 {
    margin-bottom: 15px;
    font-style: bold;
    font-size: 1.3rem;
    color: #ffffff;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: rgb(225, 225, 225);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  
 
  .footer-section .logo {
    height: 40px;
    margin-bottom: 10px;
  }
  

  .footer-section ul li a:hover {
    color: #f3ff10;
  }
  
  .footer-contact{
    font-size: 14px;
  }
  .footer-contact a{
    text-decoration:none;
    color: rgb(225, 225, 225);
  }
  .footer-contact a:hover{
    color: #f3ff10;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom p{
    margin-top: 20px;
  }
  .scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    transition: all 0.3s ease;
  }
  
  .scroll-top:hover {
    background-color: #0056b3;
  }
  @media screen and (max-width: 768px) {
    .footer {
      padding: 30px 40px;
      min-height: auto;
    }
  
    .footer-container {
      align-items: flex-start;
      padding: 10px;
    }
  
    .footer-section {
      margin: 20px 0;
      width: 100%;
    }
  
    .footer-bottom {
      font-size: 0.9rem;
      padding-top: 10px;
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer {
      padding: 20px;
    }
    .about{
      margin-top: 50px;
    }
    .footer-section .logo {
      display: block;
    }
    
  }
  