body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}
.logo {
    height: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================================ */
/* ================= Login page styling start ==================== */
.login-container {
    background-color: white;
    border-radius: 0.75rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    padding: 2rem;
    max-width: 450px; 
    width: 95%; 
}
.logo {
    height: 50px; 
    margin-bottom: 1.5rem; 
}
.title {
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #2d3748; 
    margin-bottom: 0.75rem; 
}
.subtitle {
    font-size: 0.875rem; 
    color: #718096;
    margin-bottom: 2rem;
}
.input-group {
    margin-bottom: 1.5rem; 
}
.input-group label {
    display: block;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500; 
}
.input-field {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem; 
    border: 1px solid #e2e8f0; 
    font-size: 1rem;
    color: #2d3748;
    outline: none;
    transition: border-color 0.2s ease; 
}
.input-field:focus {
    border-color: #805ad5; 
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15); 
}
.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem; 
}
.forgot-password a {
    font-size: 0.875rem;
    color: #805ad5;
    text-decoration: none;
    transition: color 0.2s ease;
}
.forgot-password a:hover {
    color: #6b46c1; 
}
.login-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem; 
    background-color: #805ad5; 
    color: white;
    font-size: 1rem;
    font-weight: 600; 
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}
.login-button:hover {
    background-color: #6b46c1; 
}
.register-link {
    text-align: center;
    margin-top: 1.5rem; 
    font-size: 1.2rem;
    color: #4a5568;
}
.register-link a {
    color: #805ad5; 
    text-decoration: none;
    font-weight: 600; 
    transition: color 0.2s ease;
}
.register-link a:hover {
    color: #6b46c1; 
}
.social-login {
    text-align: center;
    margin-top: 2rem;
}
.social-login p {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1rem;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.375rem; 
    border: 1px solid #e2e8f0; 
    width: 44px; 
    height: 44px;
    transition: border-color 0.2s ease;
}
.social-button:hover {
    border-color: #805ad5; 
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15); 
}
.social-icon {
    width: 24px; 
    height: 24px;
}
.google-icon {
     /* Use the Google logo */
    background: url(https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg) no-repeat center center;
    background-size: contain;
    width: 24px;
    height: 24px;

}
.apple-icon {
    /* Use the Apple logo */
    background: url(https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg) no-repeat center center;
    background-size: contain;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .login-container {
        padding: 1.5rem; 
        width: 95%;
        max-width: 400px; 
    }
}


/* ================================================================================================== */
/* ========================= Sign Up page ======================== */

.sign-up-container {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            max-width: 450px;
            width: 95%;
            text-align: center;
        }

        .logo {
            height: 50px;
            margin-bottom: 1.5rem;
            margin-left: auto;
            margin-right: auto;
        }

        .title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.75rem;
            text-align: center;
        }

        .subtitle {
            font-size: 0.875rem;
            color: #718096;
            margin-bottom: 2rem;
            text-align: center;
        }

        .input-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .input-group label {
            display: block;
            font-size: 0.875rem;
            color: #4a5568;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .input-field {
            width: 100%;
            padding: 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .input-field:focus {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .contact-number-input-group {
            display: flex;
            align-items: center;
        }

        .country-code-select {
            padding: 0.75rem;
            border-radius: 0.375rem 0 0 0.375rem;
            border: 1px solid #e2e8f0;
            border-right: none;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            width: auto;
            max-width: 100px;
        }

        .contact-number-input {
            flex: 1;
            padding: 0.75rem;
            border-radius: 0 0.375rem 0.375rem 0;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .contact-number-input:focus {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .password-input-group {
            position: relative;
            display: flex;
            align-items: center;
        }

        .password-input {
            width: 100%;
            padding: 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .password-input:focus {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .password-toggle-icon {
            position: absolute;
            right: 0.75rem;
            cursor: pointer;
            color: #718096;
        }


        .continue-button {
            width: 100%;
            padding: 0.75rem;
            border-radius: 0.375rem;
            background-color: #805ad5;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
        }

        .continue-button:hover {
            background-color: #6b46c1;
        }

        .login-link {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: #4a5568;
        }

        .login-link a {
            color: #805ad5;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .login-link a:hover {
            color: #6b46c1;
        }

        .social-login {
            text-align: center;
            margin-top: 2rem;
        }

        .social-login p {
            font-size: 0.875rem;
            color: #718096;
            margin-bottom: 1rem;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            width: 44px;
            height: 44px;
            transition: border-color 0.2s ease;
        }

        .social-button:hover {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .social-icon {
            width: 24px;
            height: 24px;
        }

        .google-icon {
            background: url(https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg) no-repeat center center;
            background-size: contain;
            width: 24px;
            height: 24px;
        }

        .apple-icon {
            background: url(https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg) no-repeat center center;
            background-size: contain;
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            .sign-up-container {
                padding: 1.5rem;
                width: 95%;
                max-width: 400px;
            }
        }
/* ========================================================================================== */
/* =============== OTP page styling start =================== */
.otp-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 450px;
    width: 95%;
    text-align: center;
}

.logo {
    height: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 2rem;
}

.otp-input-group {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.otp-input {
    width: 4rem;
    height: 4rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-size: 1.5rem;
    color: #2d3748;
    text-align: center;
    outline: none;
    transition: border-color 0.2s ease;
}

.otp-input:focus {
    border-color: #805ad5;
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
}

.verify-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    background-color: #805ad5;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.verify-button:hover {
    background-color: #6b46c1;
}

.timer {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.resend-code {
    font-size: 0.875rem;
    color: #805ad5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.resend-code:hover {
    color: #6b46c1;
}

@media (max-width: 768px) {
    .otp-container {
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
    }

    .otp-input {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
}
/* ===================================================================================== */
/* ====================== Reset page styling start ======================== */
.reset-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 450px;
    width: 95%;
    text-align: center; /* Center the content */
}
.logo {
    height: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}
.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}
.subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 2rem;
}
.input-group {
    margin-bottom: 1.5rem;
    text-align: left; /* Re-align label to the left */
}
.input-group label {
    display: block;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.input-field {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #2d3748;
    outline: none;
    transition: border-color 0.2s ease;
}
.input-field:focus {
    border-color: #805ad5;
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
}
.send-link-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    background-color: #805ad5;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}
.send-link-button:hover {
    background-color: #6b46c1;
}

@media (max-width: 768px) {
    .reset-container {
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
    }
}
/* =============================================================================== */
/* =================== STAY listing page styling start ====================== */
.search-section {
    background-color:#fffefe;
    padding: 20px;
    border-radius: 8px;
    max-width: 100%;
  }

  .search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
  }

  .form-group {
    flex: 1 1 200px;
    position: relative;
  }

  .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .input-with-icon {
    width: 100%;
    padding: 8px 8px 8px 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .form-icon {
    position: absolute;
    left: 8px;
    top: 33px;
    font-size: 18px;
    color: #888;
  }

  .search-btn {
    display: flex;
    align-items: center;
  }

  .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background-color: #5a00c2;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .btn i {
    margin-right: 5px;
  }

  @media (max-width: 768px) {
    .search-form {
      flex-direction: column;
      align-items: stretch;
    }

    .search-btn {
      justify-content: flex-start;
    }
  }
/* ====================================================================================================== */
/* ======================= Gallary section page styling start =========================== */
.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-img:hover {
    transform: scale(1.02);
  }

  .gallery-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
/* ======================================================================================== */
/* ================= Guest inbox page styling start ================== */
.chat-message-area {
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eee;
  }
  .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
  }
  .chat-bubble {
    border-radius: 15px;
    padding: 12px 16px;
    margin-bottom: 12px;
    max-width: 70%;
  }
  .chat-left {
    background-color: #f1f1f1;
    align-self: flex-start;
  }
  .chat-right {
    background-color: #4318FF;
    color: white;
    align-self: flex-end;
  }
  .chat-input {
    border-top: 1px solid #eee;
    padding: 1rem;
  }
  .chat-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .chat-header img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }
  .text-end small {
    font-size: 12px;
  }
  .input-group .form-control {
    border-radius: 25px 0 0 25px;
  }
  .btn-send {
    border-radius: 0 25px 25px 0;
  }

/* =================================================================================================== */
/* ========================== Upcomig page styling start ============================= */
.tab-link{
    color: #0c3057;
    margin-right: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tab-link:hover, .tab-link.active{
    color: #663399;
    border-bottom-color: #663399;
}
.card {
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}
.card-img-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    object-fit: cover;
    height: 200px;
    width: 100%;
}
.card-body {
    padding: 1rem;
}
.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0c3057;
    margin-bottom: 0.75rem;
}
.card-text {
    color: #4a5568;
    font-size: 1rem;
}
.wishlist-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}
.wishlist-icon:hover {
    color: #ff6b6b;
}
.location-text {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}
.price-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34495e;
}
.night-text {
    font-size: 0.875rem;
    color: #7f8c8d;
}
@media (max-width: 992px) {
    .card-title {
        font-size: 1.1rem;
    }
    .card-text {
        font-size: 0.9rem;
    }
     .location-text{
        font-size: 0.75rem;
    }
    .price-text{
        font-size: 1rem;
    }
    .night-text{
        font-size: 0.75rem;
    }
}
@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
    .card-body {
        padding: 1rem;
    }
}
@media (max-width: 576px) {
    .card-title {
        font-size: 1rem;
    }
    .card-text {
        font-size: 0.8rem;
    }
    .location-text{
        font-size: 0.7rem;
    }
    .price-text{
        font-size: 0.9rem;
    }
    .night-text{
        font-size: 0.7rem;
    }
}
/* ================================================================================= */
/* ==================== stay details page styling start ====================== */
  .photo-grid {
      display: flex;
      
      flex-wrap: wrap;
      gap: 10px;
    }

    .left-image-container {
      flex: 1 1 60%;
      min-width: 300px;
     
    }

    .left-image-container img {
        width: 713.85px;
        height: 446.15px;
      object-fit: cover;
      border-radius: 10px;
      Top:201px;
      Left:31px;

    }

    .right-grid {
      flex: 1 1 38%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .right-grid img {
      width: 100%;
      height: 218px;
      object-fit: cover;
      border-radius: 10px;
    }

    .photo-box {
      position: relative;
    }

    .show-btn {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: white;
      border-radius: 20px;
      padding: 5px 12px;
      font-size: 14px;
      display: flex;
      align-items: center;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
      font-weight: 500;
    }

    .show-btn .material-icons {
      font-size: 18px;
      margin-right: 5px;
    }

    @media (max-width: 768px) {
      .photo-grid {
        flex-direction: column;
      }

      .left-image-container img,
      .right-grid img {
        height: auto;
      }
    }

     /* Wrapper */
     .stay-details {
      margin-top: 40px;
      margin-bottom: 60px;
    }

    /* Title section */
    .stay-details .stay-title {
      font-size: 20px;
      font-weight: 600;
    }

    .stay-details .rating {
      font-size: 14px;
    }

    /* Host section */
    .stay-details .stay-host {
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .stay-details .stay-host img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .stay-details .message-btn {
      background-color: #6c2bd9;
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
    }

    /* About section */
    .stay-details .stay-about h6 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .stay-details .stay-about p {
      font-size: 14px;
      color: #333;
      line-height: 1.6;
    }

    /* Offers section */
    .stay-details .stay-offers h6 {
      font-weight: 600;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .stay-details .stay-features .col {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #444;
    }

    .stay-details .stay-features i {
      font-size: 22px;
      color: #444;
    }

    /* Booking card */
    .stay-details .booking-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      padding: 24px;
    }

    .stay-details .price {
      font-size: 18px;
      font-weight: 600;
    }

    .stay-details .book-btn {
      background-color: #6c2bd9;
      color: #fff;
      font-weight: 500;
      border: none;
      border-radius: 6px;
      padding: 10px;
      font-size: 15px;
    }

    .stay-details .book-note {
      font-size: 12px;
      text-align: center;
      color: #888;
      margin-top: 8px;
    }

    @media (max-width: 768px) {
      .stay-details .booking-card {
        margin-top: 30px;
      }
    }
    /* =================================================================================================== */
    /* ========================= Entry facilities page styling start ======================= */
    