@charset "utf-8";
/* CSS Document */
    .navbar {
      background: linear-gradient(90deg, #003366, #005baa);
      padding: 0.8rem 1rem;
    }
    .navbar-brand img {
      height:55px;
	 
    }
    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
      margin: 0 10px;
      transition: all 0.3s ease;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #ffd700 !important;
    }
    .phone-btn {
      background: #ffd700;
      color: #003366;
      font-weight: 600;
      border-radius: 50px;
      padding: 8px 18px;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .phone-btn:hover {
      background: #fff;
      color: #005baa;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }
    .sticky-top {
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      z-index: 999;
    }
    /* ====== Slider Styling ====== */
    .carousel-item {
      height: 90vh;
      min-height: 500px;
      background-position: center;
      background-size: cover;
      position: relative;
      overflow: hidden;
      transition: transform 0.8s ease-in-out;
    }

    /* ====== Zoom Effect ====== */
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 5s ease;
    }

    .carousel-item.active img {
      transform: scale(1.15);
    }

    /* ====== Overlay Text ====== */
    .carousel-caption {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
      background: rgba(0, 0, 0, 0.4);
      padding: 30px;
      border-radius: 10px;
    }

    .carousel-caption h2 {
      color: #fff;
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    }

    .carousel-caption p {
      color: #f1f1f1;
      font-size: 1.25rem;
      margin-top: 10px;
    }

    /* ====== Buttons ====== */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 45px;
      height: 45px;
      background-size: 60%;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
      background-color: #ffd700;
    }

    /* ====== Dots Indicators ====== */
    .carousel-indicators [data-bs-target] {
      background-color: #fff;
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }
    .carousel-indicators .active {
      background-color: #ffd700;
    }
	@media only screen and (min-width:320px) and (max-width:480px)
{    .carousel-item {
      height:270px !important;
      min-height:270px;
      background-position: center;
      background-size: cover;
      position: relative;
      overflow: hidden;
      transition: transform 0.8s ease-in-out;
    }}
    body {
      font-family: 'Open Sans', sans-serif;
      color: #333;
      background-color: #ffffff;
    }

    .content-section {
      padding:10px 0;
      background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
    }

    /* ====== Image Box ====== */
    .image-box {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transition: all 0.5s ease;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s ease;
    }

    .image-box:hover img {
      transform: scale(1.1);
    }

    /* ====== Stylish Heading ====== */
    h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: #003366;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    }

    /* ====== Decorative Shape Under Title ====== */
    h2::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -12px;
      transform: translateX(-50%);
      width: 120px;
      height: 6px;
      background: linear-gradient(90deg, #ffcc33, #ffdd66);
      border-radius: 20px;
    }

    h2::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -22px;
      transform: translateX(-50%);
      width: 60px;
      height: 12px;
      background: rgba(255, 204, 51, 0.25);
      border-radius: 50%;
      filter: blur(4px);
    }

    p {
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1rem;
      color: #555;
      text-align: justify;
    }

    .highlight {
      color: #005baa;
      font-weight: 600;
    }

    @media (max-width: 992px) {
      .content-section {
        text-align: center;
      }
      .image-box {
        margin-bottom: 30px;
      }
      h2 {
        font-size: 2rem;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #ffffff;
      color: #333;
    }

    /* ===== Accessibility Section ===== */
    .accessibility-section {
      background: linear-gradient(180deg, #f4f7fa 0%, #ffffff 100%);
      padding:10px 0;
      text-align: center;
      border-top: 4px solid #005baa;
    }


    .accessibility-section p {
      font-size: 1.1rem;
      color: #555;
      max-width:100%;
      margin: 0 auto 20px auto;
      line-height: 1.8;
    }

    .accessibility-section a {
      font-weight: 600;
      color: #005baa;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .accessibility-section a:hover {
      color: #ffcc33;
      text-shadow: 0 0 6px rgba(255, 204, 51, 0.6);
    }

    .accessibility-section .phone-icon {
      color: #005baa;
      margin-right: 6px;
      transition: color 0.3s ease;
    }

    .accessibility-section a:hover .phone-icon {
      color: #ffcc33;
    }

    @media (max-width: 768px) {
      .accessibility-section h3 {
        font-size: 1.7rem;
      }
      .accessibility-section p {
        font-size: 1rem;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f2f3f5;
      color: #333;
    }

    /* ====== Guest Rooms Section ====== */
    .rooms-section {
      background-color: #f2f3f5;
      padding:20px 0;
      text-align: center;
    }

    .rooms-section h2 {
      color: #003366;
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 2.2rem;
    }

    .rooms-section p.subtitle {
      color: #555;
      font-size: 1.1rem;
      margin-bottom: 40px;
      text-align: center; /* Ensures it's centered */
    }

    .room-card {
      background: #fff;
      border: none;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .room-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .room-img {
      overflow: hidden;
      position: relative;
    }

    .room-img img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
    }

    .room-card:hover .room-img img {
      transform: scale(1.08);
    }

    .room-title {
      font-weight: 600;
      color: #003366;
      font-size: 1.2rem;
      margin-top: 20px;
    }

    .btn-view {
      background: transparent;
      color: #003366;
      border: 2px solid #003366;
      font-weight: 600;
      padding: 6px 18px;
      border-radius: 5px;
      transition: all 0.3s ease;
      margin-bottom: 25px;
    }

    .btn-view:hover {
      background-color: #ffcc33;
      border-color: #ffcc33;
      color: #003366;
    }

    .btn-all {
      background-color: #ffcc33;
      color: #003366;
      font-weight: 700;
      padding: 10px 28px;
      border: none;
      border-radius: 6px;
      transition: all 0.3s ease;
      margin-top: 30px;
    }

    .btn-all:hover {
      background-color: #e6b800;
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .rooms-section h2 {
        font-size: 1.8rem;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #111;
      color: #fff;
    }

    /* ====== Attractions Section ====== */
    .attraction-section {
      position: relative;
      background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9)), 
                  url('lobby.jpg') center/cover no-repeat;
      padding:20px 0;
      text-align: center;
    }

    .attraction-section h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #ffcc00;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .attraction-section h2::after {
      content: "";
      display: block;
      width: 80%;
      height: 4px;
      background: #ffcc00;
      margin: 10px auto 0;
      border-radius: 50px;
    }

    .attraction-section p.subtext {
      font-size: 1.1rem;
      color: #ddd;
      margin-bottom: 60px;
    }

    /* ====== Flip Card ====== */
    .flip-card {
      background: transparent;
      width: 100%;
      height: 280px;
      perspective: 1000px;
      border-radius: 15px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      backface-visibility: hidden;
      overflow: hidden;
    }

    .flip-card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }

    .flip-card-front h5 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      color: #fff;
      background: rgba(0, 0, 0, 0.6);
      padding: 10px;
      font-weight: 600;
      font-size: 1.1rem;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
    }

    .flip-card-back {
      background: linear-gradient(160deg, #ffcc00, #ffdd33);
      color: #333;
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .flip-card-back h5 {
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .flip-card-back p {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    /* ====== Button ====== */
    .btn-attraction {
      background-color: #ffcc00;
      color: #000;
      font-weight: 700;
      border-radius: 50px;
      padding: 12px 32px;
      border: none;
      transition: all 0.3s ease;
      margin-top: 40px;
      text-transform: uppercase;
    }

    .btn-attraction:hover {
      background-color: #ffdb4d;
      transform: scale(1.05);
      box-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
    }

    @media (max-width: 768px) {
      .flip-card {
        height: 260px;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #111;
      color: #fff;
    }

    /* ===== FOOTER STYLING ===== */
    footer {
      background: linear-gradient(180deg, #005baa, #000000);
      color: #fff;
      padding:20px 0 20px;
      position: relative;
    }

    footer h5 {
      font-weight: 600;
      color: #ffcc00;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul li a {
      text-decoration: none;
      color: #bbb;
      transition: color 0.3s ease;
    }

    footer ul li a:hover {
      color: #ffcc00;
    }

    /* Contact Links */
    .contact-info a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-info a:hover {
      color: #ffcc00;
    }

    /* Social Icons */
    .social-icons a {
      color: #bbb;
      font-size: 1.4rem;
      margin-right: 15px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffcc00;
      transform: scale(1.2);
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
    }

    /* Divider Line */
    .footer-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin: 30px 0;
    }

    /* Copyright */
    .footer-bottom {
      text-align: center;
      color: #aaa;
      font-size: 0.9rem;
    }

    /* Back To Top Button */
    #backToTop {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #ffcc00;
      color: #000;
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.4s ease;
      z-index: 999;
    }

    #backToTop:hover {
      background-color: #ffdb4d;
      transform: scale(1.1);
      box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f5f5f5;
    }
  .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:#005baa; text-decoration:none;}
  .cont a{color:#005baa; text-decoration:none;}
  .cont a:hover{color:#0066FF; text-decoration:none;}
  .txt {color:#000; text-decoration:none;}
    .about-section img {
        border-radius: 10px;
        width: 100%;
        object-fit: cover;
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }