: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;
  }
}




.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
}



.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 42, 102, 0.55);
  z-index: 2;
}


.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}


.hero-content h1 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}


.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}


.btn-explore {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, #D4AF37, #b8923d);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}


.btn-explore:hover {
  background: linear-gradient(135deg, #b8923d, #D4AF37);
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.5);
  color: #ffffff;
}


.btn-explore::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-explore:hover::before {
  left: 130%;
}


@media (max-width: 768px) {
  .btn-explore {
    padding: 12px 28px;
    font-size: 14px;
  }
}



@media (max-width: 768px) {

  .hero-video {
    height: 85vh;
    padding-top: 60px;
  }

  .hero-content h1 {
    font-size: 22px;

    font-weight: 600;
  }

  .hero-content p {
    font-size: 14px;
  }
}




.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  transition: .3s;
  border: none;
}

.btn-gold:hover {
  background: #caa23f;
  transform: translateY(-3px);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--blue);
  padding: 12px 34px;
  border-radius: 40px;
  font-weight: 600;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}


section {
  padding: 90px 0;
}

.section-title,
.section-heading {
  color: var(--blue);
  font-weight: 700;
  text-align: center;
}

.section-subtitle,
.section-text {
  color: #666;
  max-width: 700px;
  margin: 10px auto 40px;
  text-align: center;
}


.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
  transition: .4s;
}

.about-image img:hover {
  transform: scale(1.04);
}


.why-section {
  background: var(--light);
}

.why-main-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.why-main-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.why-content {
  padding: 35px;
}

.why-content span {
  color: var(--gold);
  font-weight: 600;
}

.why-content h3 {
  color: var(--blue);
  margin: 10px 0;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.stats h4 {
  color: var(--blue);
  font-weight: 700;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-left: 4px solid var(--gold);
}

.why-card h5 {
  color: var(--blue);
  font-weight: 600;
}


.highlights-section {
  background: #f9fbff;
  padding: 90px 0;
}

.highlight-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--gold);
  bottom: 0;
  left: 0;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: rgba(214, 176, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.highlight-icon i {
  font-size: 28px;
  color: var(--gold);
}

.highlight-card h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue);
}

.highlight-card p {
  margin: 0;
  font-weight: 500;
  color: #555;
}


.amenities-section {
  background: #ffffff;
  padding: 90px 0;
}

.amenity-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  height: 100%;
}

.amenity-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 15px;
}

.amenity-card h5 {
  font-weight: 600;
  color: var(--blue);
  margin: 0;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}


@media (max-width: 768px) {
  .highlight-card h3 {
    font-size: 34px;
  }
}



.project-card {
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .1);
  text-align: center;
}

.project-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
}

.project-card h4 {
  color: var(--blue);
}

.project-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}


@media (max-width: 768px) {
  .project-video {
    height: 200px;
  }
}



.appointment-section {
  background: #eef3fb;
}

.appointment-form {
  max-width: 720px;
  margin: 40px auto 0;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 2px solid var(--gold);
}

.appointment-form button {
  background: var(--gold);
  color: #fff;
  border-radius: 35px;
  padding: 14px 40px;
  border: none;
}



.video-section {
  padding: 90px 0;
  background: #f9fbff;
}


.video-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.video-section .section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
}


.project-credit {
  margin-top: 12px;
  font-size: 14.5px;
  color: #666;
}

.project-credit strong {
  color: var(--blue);
  font-weight: 600;
}

.project-note {
  display: block;
  margin-top: 10px;
  font-size: 17.4px;
  font-weight: 650;
  color: #D4AF37;
  letter-spacing: 0.5px;
}



.video-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-6px);
}


.video-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}


.video-card h5 {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}


@media (max-width: 992px) {
  .video-card video {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 15px;
  }

  .video-section .section-title {
    font-size: 28px;
  }

  .video-card video {
    height: 220px;
  }
}


.gallery-scroll {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-scroll .section-title {
  text-align: center;
  font-size: 34px;
  color: var(--blue);
  margin-bottom: 30px;
}


.scroll-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
}


.scroll-wrapper img {
  min-width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  scroll-snap-align: start;
  transition: transform 0.4s ease;
}

.scroll-wrapper img:hover {
  transform: scale(1.04);
}


.scroll-wrapper::-webkit-scrollbar {
  display: none;
}


@media (max-width: 768px) {
  .gallery-scroll {
    padding: 60px 15px;
  }

  .gallery-scroll .section-title {
    font-size: 26px;
  }

  .scroll-wrapper img {
    min-width: 260px;
    height: 180px;
  }
}



.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;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
}



@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) {
  .hero h1 {
    font-size: 30px;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
  }
}