: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;
  }
}
.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;
  }
}




:root {
  --blue: #0b3c8a;
  --gold: #d6b04c;
  --dark: #1f2933;
  --light: #f4f7fc;
  --white: #ffffff;
}


.contact-header {
  height: 50vh;
  background: url('../images/contactimg.jpg') center/cover no-repeat;
}



.contact-section {
  padding: 90px 20px;
  background: var(--light);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


.contact-info-box {
  background: var(--white);
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.left-title {
  font-size: 32px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-block {
  margin-bottom: 30px;
}

.contact-block h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-block p {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

.contact-block i {
  color: var(--gold);
  margin-right: 8px;
}


.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-4px);
}


.contact-form-box {
  background: var(--white);
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
  font-size: 28px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  margin-bottom: 18px;
  transition: 0.3s;
}

.contact-form textarea {
  resize: none;
  height: 130px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(214, 176, 76, 0.25);
}


.contact-submit-btn {
  background: var(--gold);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background: #c9a24d;
  transform: translateY(-2px);
}


.popup-box {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  animation: scaleUp 0.4s ease;
}

.popup-content h3 {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 15px;
  color: #555;
}

.popup-btn {
  margin-top: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.map-section {
  padding: 90px 20px;
  background: var(--white);
  text-align: center;
}

.map-title {
  font-size: 34px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 30px;
}

.map-container {
  max-width: 1100px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}


@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-header {
    height: 35vh;
  }
}

@media (max-width: 768px) {
  .left-title,
  .contact-form-box h2 {
    font-size: 24px;
  }

  .map-title {
    font-size: 26px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 30px 22px;
  }
}
