* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Montserrat-Regular.woff') format('woff');
}
body {
  font-family: 'Montserrat', sans-serif;
}
.navbar-brand img {
    margin-right: 10px;
    width: 30%;
  }

/* @media screen and (min-width: 480px) {
  .navbar-brand img {
    width: 50%;
  }
} */

@media (max-width: 480px) {
    .navbar-brand img {
      width: 100% !important;
  }
}



.nav-link.active {
    color: #008080 !important; /* Teal color for active */
    font-weight: bold;
}
.nav-link {
      transition: background-color 0.3s, color 0.3s;
      padding: 8px 15px;
      border-radius: 5px;
    }
.nav-item:hover {
      background-color: #3798b9;
      color: #ffffff !important;
      padding: 10px;
    }
    
h2, h3 {
   color: #2098f5 !important;
   text-align: center;
}

.intro-image {
      max-width: 100%;
      height: auto;
    }

    .intro-text {
      font-size: 1.1rem;
      color: #333;
      font-style: italic;
    }

    .intro-quote {
      font-style: italic;
      color: #999;
      text-align: center;
      margin-top: 20px;
      font-size: 1rem;
    }

    .red-underline {
      height: 3px;
      background-color: #e30613;
      width: 100%;
      margin-top: 40px;
    }


.layout-section {
      background-color: #f8f9fa;
      padding: 50px 0;
    }

    .layout-section h3 {
      font-weight: bold;
      margin-bottom: 20px;
    }

    .layout-section ul {
      padding-left: 20px;
    }

    .layout-section ul li {
      margin-bottom: 10px;
    }

    .spec-title {
      font-weight: bold;
      color: #333;
    }

    .layout-img {
      max-width: 100%;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .route-location {
      background-color: #fff;
      padding: 60px 0;
      text-align: center;
    }

    .route-location h3 {
      color: #3798b9;
      font-weight: bold;
      
    }

    .location-list {
      list-style: none;
      padding: 0;
      font-size: 1.1rem;
    }

    .location-list li {
      margin-bottom: 15px;
    }

    .location-btn {
      background-color: #3798b9;
      color: #fff !important;
      font-weight: bold;
      border: none;
      padding: 10px 30px;
      border-radius: 6px;
      margin-top: 20px;
    }

    .location-btn:hover {
      background-color: #287692;
    }

    .map-img {
      max-width: 100%;
      border-radius: 8px;
    }

    .about-section {
      background-color: #3498b9;
      color: white;
      padding: 80px 20px;
      clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    }

    .about-section h2 {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin: 0;
    }

    .about-section h3 {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      margin: 10px 0;
    }

    .about-section em {
      display: block;
      text-align: center;
      font-size: 16px;
      margin-bottom: 40px;
    }

    .about-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .text-column {
      flex: 1 1 60%;
      font-size: 16px;
      line-height: 1.8;
    }

    .logo-column {
      flex: 1 1 30%;
      text-align: center;
    }

    .logo-column img {
      margin-bottom: 20px;
    }

    .logo-column .quote {
      font-style: italic;
      font-size: 14px;
      color: #e6f2f7;
    }

    @media (max-width: 768px) {
      .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .text-column, .logo-column {
        flex: 1 1 100%;
      }
    }

    .projects-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }

    .project-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      text-align: center;
      padding-bottom: 20px;
      overflow: hidden;
    }

    .project-title {
      background-color: #0097f0;
      color: #fff;
      font-weight: 600;
      padding: 10px;
      font-size: 14px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .project-card img {
      width: 100%;
    }

    .project-description {
      font-size: 14px;
      padding: 15px;
      color: #333;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .project-title {
        font-size: 13px;
      }

      .project-description {
        font-size: 13px;
      }
    }

    .reasons-section {
      padding: 60px 20px;
      max-width: 1300px;
      margin: auto;
      text-align: center;
    }

    .reasons-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }

    .reason {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .reason img {
      width: 50px;
      height: auto;
      margin-bottom: 15px;
    }

    .reason h3 {
      font-size: 16px;
      color: #0078a8;
      margin: 10px 0 8px;
      text-transform: uppercase;
    }

    .reason p {
      font-size: 14px;
      line-height: 1.6;
      max-width: 250px;
    }

    .download-btn {
      background-color: #1aaad0;
      color: white;
      padding: 14px 26px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      border-radius: 4px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .download-btn:hover {
      background-color: #108cab;
    }


    .amenities-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }

    .amenities-section h2 {
      color: #1aaad0;
      margin-bottom: 30px;
    }

   .carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* 3 images */
}

.carousel-slide {
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}


.project {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  font-family: 'Montserrat', sans-serif;
  max-width: 1200px;
  margin: auto;
}

.project-info {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.project-info .signature {
  font-style: italic;
  text-align: center;
  margin-top: 20px;
}

.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 6px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  resize: none;
}

.contact-form textarea {
  height: 80px;
}

.char-count {
  text-align: right;
  font-size: 12px;
  color: #888;
  margin-top: -10px;
  margin-bottom: 20px;
}

.contact-form button {
  width: 100%;
  background: #599df5;
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.footer {
    color: white;
}

.rmt {
    color: #fff;
    text-decoration: none;
}