:root {
  --blue: #0b3c8a;
  --gold: #d6b04c;
  --dark: #1f2933;
  --light: #f4f7fc;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fff;
}



.custom-navbar {
  padding: 14px 0;
}


.nav-logo {
  max-height: 65px;
  width: auto;
}


@media (max-width: 768px) {
  .nav-logo {
    max-height: 45px;
  }
}



.navbar-nav .nav-link {
  font-size: 25px;
  font-weight: 600;
  color: #0b2c63;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #d6b04c;
}


.navbar-nav .nav-link.active {
  color: #d6b04c;
}


.btn-book-visit {
  background: #d6b04c;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-book-visit:hover {
  background: #c9a24d;
  color: #fff;
  transform: translateY(-2px);
}


@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    padding-top: 15px;
  }

  .btn-book-visit {
    margin-top: 10px;
    display: inline-block;
  }
}


.project-hero {
  position: relative;
  height: 65vh;
  background: url(../images/projecthome.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 44, 99, 0.55);
}

.project-hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 900px;
  padding: 0 15px;
}

.project-hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-hero-content p {
  font-size: 17px;
  opacity: 0.95;
}


.project-overview {
  padding: 90px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.project-overview h2 {
  font-size: 34px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 20px;
}

.overview-text {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.overview-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.ov-box {
  background: #e6e9ef;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.ov-box:hover {
  transform: translateY(-6px);
}

.ov-box h3 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
}

.ov-box p {
  font-size: 15px;
  color: #555;
}


.highlights-section {
  background: #f9fbff;
  padding: 90px 20px;
}

.highlights-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.highlights-left h2 {
  font-size: 32px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 25px;
}

.highlight-list {
  list-style: none;
}

.highlight-list li {
  font-size: 15.5px;
  color: #444;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
}

.highlight-list i {
  color: var(--gold);
}

.highlights-right img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}


.project-map {
  padding: 90px 20px;
  text-align: center;
}

.project-map h2 {
  font-size: 32px;
  color: var(--blue);
  font-weight: 700;
}

.map-desc {
  color: #555;
  margin-bottom: 30px;
}

.map-box {
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.open-map-btn {
  display: inline-block;
  margin: 20px auto 0;
  background: var(--gold);
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.open-map-btn:hover {
  background: #c9a24d;
}


.distance-section {
  padding: 90px 20px;
  background: #f9fbff;
  text-align: center;
}

.distance-section h2 {
  font-size: 32px;
  color: var(--blue);
  font-weight: 700;
}

.distance-desc {
  max-width: 850px;
  margin: auto auto 30px;
  color: #555;
}

.distance-table-wrapper {
  max-width: 800px;
  margin: auto;
  overflow-x: auto;
}

.distance-table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.distance-table th {
  background: var(--blue);
  color: #fff;
  padding: 14px;
}

.distance-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
}


.project-cta {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--blue), #061e3c);
  color: #fff;
  text-align: center;
}

.project-cta h2 {
  font-size: 34px;
  font-weight: 700;
}

.project-cta p {
  margin-bottom: 25px;
}

.cta-btn {
  background: var(--gold);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn:hover {
  background: #c9a24d;
}


.new-footer {
  position: relative;
  background: url("https://images.unsplash.com/photo-1568605114967-8130f3a36994") center/cover no-repeat;
  color: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
}


.new-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(92, 52, 127, 0.92);
  z-index: 0;
}


.footer-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}


.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #ffffff;
}


.footer-col a {
  display: block;
  color: #f1f1f1;
  font-size: 15px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #d6b04c;
  padding-left: 6px;
}


.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #f1f1f1;
  margin-bottom: 12px;
}


.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #d6b04c;
  transform: translateY(-4px);
}


.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 10px;
  font-size: 14px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #d6b04c;
}

.footer-divider {
  margin: 0 8px;
  opacity: 0.7;
}


@media (max-width: 768px) {
  .footer-wrapper {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col a:hover {
    padding-left: 0;
  }
}


@media (max-width: 768px) {

  .nav-logo {
    max-height: 45px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .project-hero {
    height: 55vh;
  }

  .project-hero-content h1 {
    font-size: 26px;
  }

  .highlights-container {
    grid-template-columns: 1fr;
  }
}
