* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .btn-primary {
    --bs-btn-bg:  #006d77 !important;
    --bs-btn-border-color:  #006d77 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg:  #006d77 !important;
  }
  .hero-section {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  .room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
  }
  .room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  .room-card-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  .room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .room-card:hover .room-card-img {
    transform: scale(1.1);
  }
  .room-price-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: #006d77;
    color: white;
    padding: 5px 40px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }
  .room-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #006d77;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    z-index: 3;
  }
  .room-card-body {
    padding: 20px;
  }
  .room-card-title {
    color: #006d77;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .room-card-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  .room-features {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
    color: #666;
  }
  .feature-icon-container {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }
  .feature-icon {
    color: #006d77;
    font-size: 14px;
  }
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .filter-btn {
    background-color: transparent;
    color: #006d77;
    border: 2px solid #006d77;
    border-radius: 25px;
    padding: 8px 20px;
    margin: 0 10px 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .filter-btn:hover, .filter-btn.active {
    background-color: #006d77;
    color: white;
  }
  .common-amenities {
    background-color: #f1f5f9;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .common-amenities h3 {
    color: #006d77;
    text-align: center;
    margin-bottom: 30px;
  }
  .amenity-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
  .amenity-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  .amenity-icon-item:hover .amenity-icon-circle {
    background-color: #006d77;
  }
  .amenity-icon-item:hover .amenity-icon {
    color: white;
  }
  .amenity-icon {
    color: #006d77;
    font-size: 24px;
    transition: all 0.3s ease;
  }
  .amenity-name {
    font-size: 14px;
    color: #666;
  }
  .room-gallery {
    margin-bottom: 30px;
  }
  .room-details-section {
    padding: 30px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }
  .room-details-section h2 {
    color: #006d77;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
  }
  .room-detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  .room-detail-icon i {
    color: #006d77;
    font-size: 18px;
  }
  .policy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .booking-form-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .booking-form-card h3 {
    color: #006d77;
    margin-bottom: 20px;
  }
  .sticky-card {
    position: sticky;
    top: 30px;
  }
  .similar-room {
    margin-top: 30px;
  }
  .similar-rooms h3 {
    color: #006d77;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
  }
  .availability-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
  }
  .availability-message.available {
    background-color: #d1fae5;
    color: #065f46;
  }
  .availability-message.not-available {
    background-color: #fee2e2;
    color: #991b1b;
  }
  .availability-message i {
    margin-right: 10px;
    font-size: 18px;
  }
  footer {
    background: #006d77;
    color: #fff;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
  }
  .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 5px;
  }
  .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .home-video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .home-video-container video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin: 0;
    padding: 0;
  }
  .home-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .animated-text-container {
    max-width: 800px;
    padding: 20px;
  }
  .animated-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1.2s ease forwards;
  }
  .animated-heading .highlight {
    color: #e9c46a;
    position: relative;
    display: inline-block;
  }
  .animated-heading .highlight:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 3px;
    background-color: #e9c46a;
    animation: lineExpand 1.5s ease forwards 1.2s;
  }
  .animated-taglines {
    position: relative;
    height: 40px;
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
  }
  .tagline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    transform: translateY(20px);
    display: none;
  }
  .tagline:nth-child(1) {
    animation: fadeInOut 16s ease infinite 0s;
  }
  .tagline:nth-child(2) {
    animation: fadeInOut 16s ease infinite 4s;
  }
  .tagline:nth-child(3) {
    animation: fadeInOut 16s ease infinite 8s;
  }
  .tagline:nth-child(4) {
    animation: fadeInOut 16s ease infinite 12s;
  }
  .animated-cta {
    background: #006d77;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 2s;
    box-shadow: 0 5px 15px rgba(0, 109, 119, 0.3);
  }
  .animated-cta:hover {
    background: #005059;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 109, 119, 0.4);
  }
  .booking-search-section {
    background-color: #f9f9f9;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    margin-top: 0;
    z-index: 100;
    padding-top: 40px;
  }
  .booking-decorative-circle-1 {
    top: 20px;
    left: 5%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 109, 119, 0.1);
  }
  .booking-decorative-circle-2 {
    bottom: 30px;
    right: 10%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 109, 119, 0.07);
  }
  .search-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 4px solid #006d77;
  }
  .search-card-subtitle {
    color: #006d77;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .search-card-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-size: 32px;
  }
  .search-card-separator {
    width: 80px;
    height: 3px;
    background-color: #006d77;
    margin: 15px auto;
  }
  .search-card-text {
    max-width: 600px;
    margin: 0 auto;
  }
  .date-picker-container {
    position: relative;
  }
  .form-label.fw-500 {
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
  }
  .form-label-icon {
    color: #006d77;
  }
  .custom-date-input {
    height: 54px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding-left: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    font-size: 16px;
  }
  .date-picker-icon {
    position: absolute;
    right: 15px;
    top: 45px;
    color: #006d77;
  }
  .guest-selector {
    position: relative;
  }
  .guest-input-container {
    position: relative;
  }
  .category-select-container {
    position: relative;
  }
  .custom-form-select {
    height: 54px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding-left: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
  }
  .select-icon {
    position: absolute;
    right: 15px;
    top: 17px;
    color: #006d77;
  }
  .search-submit-btn {
    height: 54px;
    border-radius: 12px;
    background-color: #006d77;
    color: white;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,109,119,0.2);
    transition: all 0.3s ease;
  }
  .search-submit-btn:hover {
    background-color: #00565e;
    transform: translateY(-2px);
  }
  .search-submit-btn:not(:hover) {
    background-color: #006d77;
    transform: translateY(0);
  }
  .quick-detail {
    display: flex;
    align-items: center;
  }
  .quick-detail-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .quick-detail-icon i {
    color: #006d77;
  }
  .quick-detail-text {
    color: #666;
    font-size: 14px;
  }
  .ui-datepicker {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 300px;
    border: none;
    font-family: inherit;
  }
  .ui-datepicker .ui-datepicker-header {
    background: none;
    border: none;
    color: #333;
    font-weight: bold;
    padding: 5px 0;
  }
  .ui-datepicker .ui-datepicker-title {
    color: #006d77;
    font-weight: bold;
  }
  .ui-datepicker .ui-datepicker-prev, 
  .ui-datepicker .ui-datepicker-next {
    background: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    cursor: pointer;
    height: 30px;
    width: 30px;
    top: 5px;
  }
  .ui-datepicker th {
    color: #006d77;
    font-weight: normal;
    font-size: 12px;
    padding: 5px 0;
  }
  .ui-datepicker td {
    padding: 3px;
  }
  .ui-datepicker td span, 
  .ui-datepicker td a {
    text-align: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
  }
  .ui-datepicker td a.ui-state-default {
    background: none;
    border: none;
    color: #555;
  }
  .ui-datepicker td a.ui-state-default:hover {
    background-color: rgba(0, 109, 119, 0.1);
  }
  .ui-datepicker td a.ui-state-active {
    background-color: #006d77;
    color: white;
  }
  .ui-datepicker td a.ui-state-highlight {
    background-color: rgba(0, 109, 119, 0.2);
  }
  .reels-video-container {
    height: 500px;
    overflow: hidden;
  }
  .reels-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .activities-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  }
  .activities-decorative-container {
    position: relative;
  }
  .activities-circle-large {
    position: absolute;
    top: -50px;
    right: 50px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    z-index: 0;
  }
  .activities-circle-small {
    position: absolute;
    top: -30px;
    right: 70px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 109, 119, 0.15);
    border-radius: 50%;
    z-index: 0;
  }
  .activities-subtitle {
    color: #006d77;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .activities-title {
    color: #006d77;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 38px;
    margin-bottom: 20px;
  }
  .activities-separator {
    width: 70px;
    height: 2px;
    background-color: #006d77;
    margin: 20px auto;
    position: relative;
  }
  .activities-separator-top {
    width: 30px;
    height: 2px;
    background-color: #006d77;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    top: -6px;
  }
  .activities-separator-bottom {
    width: 30px;
    height: 2px;
    background-color: #006d77;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    bottom: -6px;
  }
  .activities-description {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
  }
  .activity-card-large {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 480px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .activity-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  .activity-card-small {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .activity-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  .activity-image-container {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .activity-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
  }
  .activity-image:hover {
    transform: scale(1.05);
  }
  .activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  }
  .activity-content {
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    position: absolute;
    padding: 20px;
    z-index: 2;
    opacity: 1;
  }
  .activity-badge {
    position: absolute;
    top: -30px;
    left: 20px;
    background-color: #006d77;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  .activity-tag {
    display: inline-block;
    margin-bottom: 10px;
    background-color: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .activity-title {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 0.5rem;
  }
  .activity-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 1rem;
  }
  .activity-details {
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
  }
  .activity-detail-item {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }
  .activity-icon {
    color: #83c5be;
    margin-right: 0.5rem;
  }
  .activity-book-btn {
    background-color: #006d77;
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
  }
  .activity-book-btn:hover {
    background-color: #005059;
    transform: translateY(-2px);
  }
  .activity-more-link {
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    color: white;
    margin-left: 1rem;
  }
  .activity-small-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }
  .activity-small-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 13px;
  }
  .activity-content-small {
    position: static;
    padding: 20px;
    background-color: white;
    color: #333;
    flex-grow: 1;
  }
  .activity-small-category {
    font-size: 12px;
    color: #006d77;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .activity-rating {
    color: #ffd700;
  }
  .activity-small-title {
    font-weight: 600;
    font-size: 18px;
    color: #333;
  }
  .activity-content-small .activity-description {
    color: #666;
  }
  .activity-small-detail {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: #666;
    font-size: 14px;
  }
  .activity-small-icon {
    margin-right: 5px;
    color: #006d77;
    font-size: 14px;
  }
  .activity-small-btn {
    color: #006d77;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .activity-small-btn:hover {
    color: #005059;
  }
  .activity-view-btn {
    background-color: #006d77;
    color: white;
    border-radius: 50px;
    padding: 10px;
    transition: all 0.3s ease;
  }
  .activity-view-btn:hover {
    background-color: #005059;
  }
  .decorative-circle {
    position: absolute;
    border: 2px solid rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    z-index: 0;
  }
  .decorative-circle-top-right {
    top: -50px;
    right: 50px;
    width: 120px;
    height: 120px;
  }
  .decorative-circle-bottom-left {
    bottom: -30px;
    left: 50px;
    width: 100px;
    height: 100px;
  }
  .explore-activities-btn {
    border-radius: 50px;
    padding: 15px 40px;
    border-color: #006d77;
    color: #006d77;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .explore-activities-btn:hover {
    background-color: #006d77;
    color: white;
  }
  .amenities-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  }
  .amenity-title {
    color: #006d77;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 34px;
  }
  .amenity-separator {
    width: 50px;
    height: 2px;
    background-color: #006d77;
    margin: 20px auto;
  }
  .amenity-card {
    height: 300px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem;
  }
  .amenity-bg-image {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .amenity-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .amenity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
  }
  .amenity-icon-container {
    background-color: #006d77;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  .amenity-heading {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  .amenity-description {
    color: white;
    margin-bottom: 0;
  }
  .small-amenity-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 1.5rem;
    height: 100%;
  }
  .small-amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 109, 119, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .amenity-small-title {
    font-weight: 600;
    color: #333;
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
  .amenity-small-icon {
    color: #006d77;
    font-size: 1.5rem;
  }
  .explore-amenities-btn {
    border-radius: 50px;
    padding: 12px 35px;
    border-color: #006d77;
    color: #006d77;
    transition: all 0.3s ease;
  }
  .explore-amenities-btn:hover {
    background-color: #006d77;
    color: white;
  }

  @media (max-width: 991px) {
  .home-video-container,
      .home-video-container video {
    height: 100vh;
  }
  .hero-section {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  .room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
  }
  .room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  .room-card-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  .room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .room-card:hover .room-card-img {
    transform: scale(1.1);
  }
  .room-price-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: #006d77;
    color: white;
    padding: 5px 40px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }
  .room-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #006d77;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    z-index: 3;
  }
  .room-card-body {
    padding: 20px;
  }
  .room-card-title {
    color: #006d77;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .room-card-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  .room-features {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
    color: #666;
  }
  .feature-icon-container {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }
  .feature-icon {
    color: #006d77;
    font-size: 14px;
  }
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .filter-btn {
    background-color: transparent;
    color: #006d77;
    border: 2px solid #006d77;
    border-radius: 25px;
    padding: 8px 20px;
    margin: 0 10px 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .filter-btn:hover, .filter-btn.active {
    background-color: #006d77;
    color: white;
  }
  .common-amenities {
    background-color: #f1f5f9;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .common-amenities h3 {
    color: #006d77;
    text-align: center;
    margin-bottom: 30px;
  }
  .amenity-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
  .amenity-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  .amenity-icon-item:hover .amenity-icon-circle {
    background-color: #006d77;
  }
  .amenity-icon-item:hover .amenity-icon {
    color: white;
  }
  .amenity-icon {
    color: #006d77;
    font-size: 24px;
    transition: all 0.3s ease;
  }
  .amenity-name {
    font-size: 14px;
    color: #666;
  }
  .room-gallery {
    margin-bottom: 30px;
  }
  .room-details-section {
    padding: 30px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }
  .room-details-section h2 {
    color: #006d77;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
  }
  .room-detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  .room-detail-icon i {
    color: #006d77;
    font-size: 18px;
  }
  .policy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .booking-form-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .booking-form-card h3 {
    color: #006d77;
    margin-bottom: 20px;
  }
  .sticky-card {
    position: sticky;
    top: 30px;
  }
  .similar-room {
    margin-top: 30px;
  }
  .similar-rooms h3 {
    color: #006d77;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
  }
  .availability-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
  }
  .availability-message.available {
    background-color: #d1fae5;
    color: #065f46;
  }
  .availability-message.not-available {
    background-color: #fee2e2;
    color: #991b1b;
  }
  .availability-message i {
    margin-right: 10px;
    font-size: 18px;
  }
  .animated-heading {
    font-size: 2.5rem;
  }
  .animated-taglines {
    height: 60px;
  }
  .tagline {
    font-size: 1rem;
    padding: 0 10px;
  }
}
  @media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .hero-section {
    height: 40vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
  }
  .room-card-img-container {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .filter-buttons {
    flex-direction: row;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .filter-btn {
    margin-bottom: 10px;
    background-color: transparent;
    color: #006d77;
    border: 2px solid #006d77;
    border-radius: 25px;
    padding: 8px 20px;
    margin: 0 10px 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .sticky-card {
    position: static;
    top: 30px;
  }
  header {
    height: 200px;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  .room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
  }
  .room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  .room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .room-card:hover .room-card-img {
    transform: scale(1.1);
  }
  .room-price-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: #006d77;
    color: white;
    padding: 5px 40px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }
  .room-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #006d77;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    z-index: 3;
  }
  .room-card-body {
    padding: 20px;
  }
  .room-card-title {
    color: #006d77;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .room-card-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  .room-features {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
    color: #666;
  }
  .feature-icon-container {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }
  .feature-icon {
    color: #006d77;
    font-size: 14px;
  }
  .filter-btn:hover, .filter-btn.active {
    background-color: #006d77;
    color: white;
  }
  .common-amenities {
    background-color: #f1f5f9;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .common-amenities h3 {
    color: #006d77;
    text-align: center;
    margin-bottom: 30px;
  }
  .amenity-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
  .amenity-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  .amenity-icon-item:hover .amenity-icon-circle {
    background-color: #006d77;
  }
  .amenity-icon-item:hover .amenity-icon {
    color: white;
  }
  .amenity-icon {
    color: #006d77;
    font-size: 24px;
    transition: all 0.3s ease;
  }
  .amenity-name {
    font-size: 14px;
    color: #666;
  }
  .room-gallery {
    margin-bottom: 30px;
  }
  .room-details-section {
    padding: 30px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }
  .room-details-section h2 {
    color: #006d77;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
  }
  .room-detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  .room-detail-icon i {
    color: #006d77;
    font-size: 18px;
  }
  .policy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .booking-form-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .booking-form-card h3 {
    color: #006d77;
    margin-bottom: 20px;
  }
  .similar-room {
    margin-top: 30px;
  }
  .similar-rooms h3 {
    color: #006d77;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
  }
  .availability-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
  }
  .availability-message.available {
    background-color: #d1fae5;
    color: #065f46;
  }
  .availability-message.not-available {
    background-color: #fee2e2;
    color: #991b1b;
  }
  .availability-message i {
    margin-right: 10px;
    font-size: 18px;
  }
  header h1 {
    font-size: 2rem;
  }
  .carousel-item img {
    height: 300px;
  }
  .booking-section, .room-highlights {
    padding: 1rem;
  }
  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    --bs-btn-bg:  #006d77 !important;
    --bs-btn-border-color:  #006d77 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg:  #006d77 !important;
  }
}
 @media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .room-price-ribbon {
    font-size: 14px;
    padding: 4px 30px;
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: #006d77;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }
  .room-category-badge {
    font-size: 12px;
    padding: 4px 12px;
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #006d77;
    color: white;
    border-radius: 20px;
    font-weight: 500;
    z-index: 3;
  }
  .animated-heading {
    font-size: 2rem;
  }
  .hero-section {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  .room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
  }
  .room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  .room-card-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  .room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .room-card:hover .room-card-img {
    transform: scale(1.1);
  }
  .room-card-body {
    padding: 20px;
  }
  .room-card-title {
    color: #006d77;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .room-card-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  .room-features {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
    color: #666;
  }
  .feature-icon-container {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }
  .feature-icon {
    color: #006d77;
    font-size: 14px;
  }
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    flex-direction: row;
  }
  .filter-btn {
    background-color: transparent;
    color: #006d77;
    border: 2px solid #006d77;
    border-radius: 25px;
    padding: 8px 20px;
    margin: 0 10px 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .filter-btn:hover, .filter-btn.active {
    background-color: #006d77;
    color: white;
  }
  .common-amenities {
    background-color: #f1f5f9;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .common-amenities h3 {
    color: #006d77;
    text-align: center;
    margin-bottom: 30px;
  }
  .amenity-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
  .amenity-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  .amenity-icon-item:hover .amenity-icon-circle {
    background-color: #006d77;
  }
  .amenity-icon-item:hover .amenity-icon {
    color: white;
  }
  .amenity-icon {
    color: #006d77;
    font-size: 24px;
    transition: all 0.3s ease;
  }
  .amenity-name {
    font-size: 14px;
    color: #666;
  }
  .room-gallery {
    margin-bottom: 30px;
  }
  .room-details-section {
    padding: 30px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }
  .room-details-section h2 {
    color: #006d77;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
  }
  .room-detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  .room-detail-icon i {
    color: #006d77;
    font-size: 18px;
  }
  .policy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .booking-form-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .booking-form-card h3 {
    color: #006d77;
    margin-bottom: 20px;
  }
  .sticky-card {
    position: sticky;
    top: 30px;
  }
  .similar-room {
    margin-top: 30px;
  }
  .similar-rooms h3 {
    color: #006d77;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
  }
  .availability-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
  }
  .availability-message.available {
    background-color: #d1fae5;
    color: #065f46;
  }
  .availability-message.not-available {
    background-color: #fee2e2;
    color: #991b1b;
  }
  .availability-message i {
    margin-right: 10px;
    font-size: 18px;
  }
}
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes lineExpand {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  @keyframes fadeInOut {
    0%, 20% {
      opacity: 0;
      transform: translateY(20px);
    }
    25%, 45% {
      opacity: 1;
      transform: translateY(0);
    }
    50%, 100% {
      opacity: 0;
      transform: translateY(-20px);
    }
  }