@charset "utf-8";
/* CSS Document */
    /* Top bar */
    .topbar {
      background-color: #004c97; /* Best Western blue */
      color: white;
      padding: 6px 0;
      font-size: 15px;
    }
    .topbar a {
      color: white;
      text-decoration: none;
      margin-right: 12px;
      transition: 0.3s;
    }
    .topbar a:hover {
      color: #ffd700; /* Gold hover */
    }

    /* Navbar */
    .navbar {
      background-color: #ffffff;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      padding: 10px 0;
    }

    .navbar-nav .nav-link {
      font-weight: 600;
      font-size: 16px;
      color: #000 !important;
      padding: 8px 18px;
      transition: 0.3s;
    }

    .navbar-nav .nav-link:hover {
      color: #004c97 !important;
    }

    .navbar-nav .nav-link.active {
      background-color: #004c97;
      color: #fff !important;
      border-radius: 30px;
      padding: 8px 22px;
    }

    .navbar-brand img {
      height: 75px;
    }

    .sticky-top {
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    .navbar-toggler {
      border: none;
      color: #004c97;
      font-size: 22px;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    @media (max-width: 991px) {
      .navbar-brand {
        order: -1;
      }
    }
   
    .carousel-item img {
      width: 100%;
      height:600px;
      object-fit: cover;
      transition: transform 2s ease;
    }

    .carousel-item.active img {
      transform: scale(1.1);
    }

    .carousel-caption {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      padding: 15px 25px;
      color: #fff;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      padding: 10px;
    }
	@media only screen and (min-width:320px) and (max-width:768px)
{ .carousel-item img {
      width: 100%;
      height:250px;
      object-fit: cover;
      transition: transform 2s ease;
    }

    .carousel-item.active img {
      transform: scale(1.1);
    }

    .carousel-caption {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      padding: 15px 25px;
      color: #fff;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      padding: 10px;
    }}
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
      color: #333;
    }

    .content-section {
      padding: 80px 0;
    }

    .content-text h1 {
      font-weight: 700;
      color: #2d5e97;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .content-text p a{
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555 !important;
	  text-decoration:none;
    }
	 .content-text p a:hover{
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555 !important;
	  text-decoration:none;
    }
	    .content-text a{
      font-size:40px;
      line-height: 1.8;
      color:#003366 !important;
	  text-decoration:none;
    }
	 .content-text a:hover{
      font-size:40px;
      line-height: 1.8;
      color: #555 !important;
	  text-decoration:none;
    }

    .content-image {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      transition: transform 0.5s ease;
    }

    .content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .content-image:hover img {
      transform: scale(1.1);
    }

    .btn-style {
      background-color: #ffdd00;
      color: #2d5e97;
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 30px;
      border: none;
      margin-top: 20px;
      transition: all 0.3s ease;
    }

    .btn-style:hover {
      background-color: #2d5e97;
      color: #fff;
    }

    @media (max-width: 767px) {
      .content-section {
        text-align: center;
      }
      .content-image {
        margin-bottom: 30px;
      }
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }

    .services-section {
      padding: 80px 0;
      background-color: #fff;
      position: relative;
      overflow: hidden;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-weight: 700;
      font-size: 2.5rem;
      color: #2d5e97;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #ffdd00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .service-box {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      width: 80px;
      height: 80px;
      background-color: #2d5e97;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffdd00;
      font-size: 2rem;
      margin: 0 auto 25px;
      transition: all 0.4s ease;
    }

    .service-box:hover .service-icon {
      background-color: #ffdd00;
      color: #2d5e97;
      transform: rotate(10deg) scale(1.1);
    }

    .service-box h4 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #2d5e97;
    }

    .service-box p {
      font-size: 1rem;
      color: #666;
    }

    .service-box::before {
      content: "";
      position: absolute;
      width: 120%;
      height: 120%;
      background: radial-gradient(circle at top right, rgba(45,94,151,0.08), transparent 70%);
      top: -10%;
      right: -10%;
      z-index: 0;
      transition: all 0.4s ease;
    }

    .service-box:hover::before {
      background: radial-gradient(circle at top right, rgba(45,94,151,0.15), transparent 70%);
    }

    @media (max-width: 767px) {
      .service-box {
        margin-bottom: 30px;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
    }

    .room-section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      font-size: 2.5rem;
      color: #2d5e97;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #ffdd00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .room-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      background: #fff;
    }

    .room-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .room-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .room-card:hover img {
      transform: scale(1.05);
    }

    .room-card-body {
      padding: 25px;
      text-align: center;
    }

    .room-card-body h5 {
      font-weight: 600;
      color: #2d5e97;
      margin-bottom: 10px;
    }

    .room-card-body p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 20px;
    }

    .btn-book {
      background-color: #ffdd00;
      color: #2d5e97;
      border: none;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-book:hover {
      background-color: #2d5e97;
      color: #fff;
    }

    @media (max-width: 767px) {
      .room-card img {
        height: 200px;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
    }

    .attraction-section {
      padding: 80px 0;
      background-color: #fff;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      font-size: 2.5rem;
      color: #2d5e97;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #ffdd00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* --- Flip Card Styles --- */
    .flip-card {
      background-color: transparent;
      width: 100%;
      height: 340px;
      perspective: 1000px;
      border: none;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      backface-visibility: hidden;
      overflow: hidden;
    }

    .flip-card-front {
      background-color: #fff;
    }

    .flip-card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    .flip-card-back {
      background-color: #2d5e97;
      color: white;
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 25px;
    }

    .flip-card-back h5 {
      font-weight: 600;
      color: #ffdd00;
      margin-bottom: 15px;
    }

    .flip-card-back p {
      font-size: 0.95rem;
      margin-bottom: 20px;
      color: #fff;
    }

    .btn-visit {
      background-color: #ffdd00;
      color: #2d5e97;
      border: none;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-visit:hover {
      background-color: #fff;
      color: #2d5e97;
    }

    @media (max-width: 767px) {
      .flip-card {
        height: 300px;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f8f9fa;
    }

    /* Footer Styles */
    footer {
      background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
      color: #fff;
      padding: 60px 0 30px;
      position: relative;
	  border-top:5px #004c97 solid;
    }

    footer h5 {
      font-weight: 700;
      margin-bottom: 20px;
      color: #ffdd00;
      text-transform: uppercase;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul li a {
      color: #ddd;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    footer ul li a:hover {
      color: #ffdd00;
      padding-left: 5px;
    }

    .social-icons a {
      display: inline-block;
      color: #fff;
      font-size: 18px;
      margin-right: 15px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #2d5e97;
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 30px;
      font-size: 14px;
      color: #ccc;
    }

    /* Back to Top Button */
    #backToTop {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #ffdd00;
      color: #000;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      font-size: 20px;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      z-index: 1000;
    }

    #backToTop:hover {
      background-color: #2d5e97;
      color: #fff;
      transform: translateY(-3px);
    }

    @media (max-width: 767px) {
      footer {
        text-align: center;
      }
      .social-icons a {
        margin: 10px;
      }
    }
 .reservation-box {
    background-color: #003366; /* Best Western dark blue */
    color: white;
    padding: 20px;
	border-bottom-left-radius:10px;
   border-bottom-right-radius:10px;
	width:70%;
	margin:auto;
  }

  .reservation-box label {
    color: #ffffff;
    font-weight: 500;
  }

  .reservation-box .form-control,
  .reservation-box .form-select {
    border-radius: 6px;
  }

  .reservation-box .btn-book {
    background-color: #005baa; /* Lighter blue from logo */
    color: white;
    font-weight: bold;
    border-radius: 6px;
    padding: 10px 20px;
  }

  .reservation-box .btn-book:hover {
    background-color: #003f7f;
  }
    .cont {color:#000; text-decoration:none;}
  .cont a{color:#005baa; text-decoration:none;}
  .cont a:hover{color:#0066FF; text-decoration:none;}
  #more {display: none;}