    body {
      font-family: "Ubuntu", sans-serif;
      margin: 0;
      padding: 0;
    }
    
    
    /* TRANSPARENT HEADER */
    .main-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 0;
      text-align: center;
      z-index: 10;
      background: transparent;
    }

    .main-header img {
       width: 100px;   
       height: auto;
    }

    @media (max-width: 768px) {
      html,
      body {
        overflow-x: hidden;
      }
    }

    /* HEADER */
    .main-header {
      /* background: #ffffff; */
      padding: 20px 0;
      text-align: center;
      /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    }

    /* .main-header img {
      height: 60px;
    } */

    /* HERO SECTION */
    .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-section video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      z-index: -1;
    }

    .hero-content {
      color: #fff;
    }

    .hero-content h1 {
      font-size: 64px;
      font-weight: 700;
    }

    .location-text {
      font-size: 18px;
      margin-top: 15px;
    }

    /* FLOATING BUTTON */
    .floating-book {
      position: fixed;
      right: 40px;
      bottom: 40px;
      background: #6b7c3f;
      color: #fff;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s ease;
      z-index: 999;
    }

    .floating-book:hover {
      background: #55642e;
      color: #fff;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 38px;
      }
    }

    /* SECTION BACKGROUND */
    .overview-section {
      background: #e9e6e2;
    }

    /* Titles */
    .section-title {
      font-weight: 600;
      font-size: 24px;
      margin-bottom: 15px;
    }

    .overview-text {
      color: #444;
      line-height: 1.7;
      font-size: 15px;
    }

    /* Facilities */
    .facilities-title {
      font-weight: 600;
      font-size: 20px;
    }

    .title-line {
      height: 1px;
      background: #cfcfcf;
    }

    .facility-card {
      background: #f2f2f2;
      padding: 14px 18px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .facility-card:hover {
      background: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .facility-icon {
      width: 20px;
      height: 20px;
    }

    .video-section {
      background: #e9e6e2;
    }

    .video-wrapper {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
    }

    .video-wrapper img {
      height: 450px;
      object-fit: cover;
      border-radius: 16px;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.35);
    }

    .video-wrapper video {
  border-radius: 10px;
}

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .play-btn i {
      font-size: 28px;
      color: #6b7c3f;
      margin-left: 5px;
    }

    @media (max-width: 768px) {
      .play-btn {
        display: none;
      }

      .play-btn i {
      display: none;
    }


    }

    .play-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .main-footer {
      background: #3f3f3f;
      color: #fff;
    }

    .footer-logo {
      height: auto;
      width: 100px;
    }

    .footer-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .footer-text {
      font-size: 14px;
      color: #cfcfcf;
    }

    .footer-follow {
      margin-top: 20px;
      font-size: 14px;
    }

    .social-icons a {
      color: #fff;
      margin-right: 12px;
      font-size: 14px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #6b7c3f;
    }

    .footer-heading {
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 14px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
      font-size: 14px;
      color: #dcdcdc;
    }

    .footer-links a {
      text-decoration: none;
      color: #dcdcdc;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #6b7c3f;
    }

    .footer-divider {
      border-color: #5a5a5a;
      margin: 40px 0 20px;
    }

    .copyright-text {
      color: #cfcfcf;
      font-size: 13px;
    }

    .attractions-section {
      background: #e9e6e2;
    }

    .attractions-title {
      font-weight: 600;
      font-size: 20px;
    }

    .attraction-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: 0.3s;
    }

    .attraction-card:hover {
      transform: translateY(-5px);
    }

    .attraction-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .attraction-content {
      padding: 18px;
    }

    .attraction-content h6 {
      font-weight: 600;
      margin-bottom: 8px;
    }

    .attraction-content p {
      font-size: 14px;
      color: #666;
      margin: 0;
    }

    /* LOCATION SECTION */
    .location-section {
      background: #e9e6e2;
    }

    /* Cards */
    .location-card {
      background: #ffffff;
      padding: 22px;
      border-radius: 5px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    }

    .location-card h6 {
      font-weight: 600;
      margin-bottom: 6px;
    }

    .location-card p {
      font-size: 14px;
      color: #666;
      margin-bottom: 4px;
    }

    .location-card span {
      font-size: 13px;
      color: #888;
    }

    /* Map */
    .map-box {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
    }

    .map-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .map-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #ffffff;
      border: none;
      padding: 10px 18px;
      border-radius: 6px;
      font-weight: 500;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }

    /* Helpful Facts */
    .helpful-title {
      font-weight: 600;
    }

    .fact-box {
      background: #f4f4f4;
      padding: 22px;
      border-radius: 10px;
    }

    .fact-box h6 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .fact-box p {
      font-size: 14px;
      margin-bottom: 8px;
      color: #555;
    }

    .fact-box span {
      float: right;
      font-weight: 500;
      color: #333;
    }

    .view-link {
      color: #6b7c3f;
      font-weight: 500;
      cursor: pointer;
    }

    /* LOCATION SECTION */
    .location-section {
      background: #e9e6e2;
    }

    /* Card */
    .location-card {
      background: #ffffff;
      padding: 22px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    }

    /* Icon + Heading Row */
    .location-head {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .location-head i {
      color: #6b7c3f;
      font-size: 16px;
    }

    .location-head h6 {
      margin: 0;
      font-weight: 600;
    }

    /* Divider line */
    .location-divider {
      height: 1px;
      background: #e5e5e5;
      margin: 12px 0;
    }

    /* Text */
    .location-card p {
      font-size: 14px;
      color: #555;
      margin-bottom: 6px;
    }

    .location-card span {
      font-size: 13px;
      color: #888;
    }

    /* Map */
    .map-box {
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      min-height: 260px;
    }

    .map-box iframe {
      width: 100%;
      height: 100%;
      border-radius: 12px;
    }

    /* Helpful Facts Section */
    .helpful-facts-section {
      background: #e9e6e2;
    }

    /* Main Title */
    .helpful-main-title {
      font-weight: 600;
    }

    /* Card */
    .fact-card {
      background: #fff;
      padding: 22px;
      border-radius: 5px;
      display: flex;
  flex-direction: column;
  height: 100%;
    }

    /* Heading row */
    .fact-head {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .fact-head i {
      color: #6b7c3f;
      font-size: 16px;
    }

    .fact-head h6 {
      margin: 0;
      font-weight: 600;
    }

    /* Divider */
    .fact-divider {
      height: 1px;
      background: #dddddd;
      margin: 12px 0 15px;
    }

    /* Row */
    .fact-row {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-bottom: 8px;
      color: #555;
    }

    .fact-row strong {
      color: #333;
      font-weight: 500;
    }

    /* View Direction */
    .view-direction {
      color: #6b7c3f;
      font-weight: 500;
      margin-top: 8px;
      cursor: pointer;
    }

    /* Gallery Section */
    .gallery-section {
      background: #e9e6e2;
    }

    .gallery-title {
      font-weight: 600;
    }

    .view-all-btn {
      background: #ffffff;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 13px;
      text-decoration: none;
      color: #333;
      white-space: nowrap;
      border: 1px solid #ddd;
    }

    .view-all-btn:hover {
      background: #f5f5f5;
    }

    /* Image Box */
    .gallery-box {
      border-radius: 5px;
      overflow: hidden;
    }

    .gallery-box img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 10px;
      transition: 0.3s ease;
    }

    .gallery-box img:hover {
      transform: scale(1.05);
    }
