
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;

         font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;

      }
      .head {
        width: 100%;
        background-color: #0a0a1c;
      }
      .container {
        width: 100%;
        background-color: black;
        padding: 16px;
      }
      .navigation {
        max-width: 1542px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        width: 100%;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
      }
      .navigation-title {
        color: white;
        font-weight: 700;
        font-size: 20px;
      }

      .terms {
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        position: relative; /* Add this */
        display: inline-block;
        text-decoration: none;
      }
      .terms::after {
        content: "";
        display: block;
        width: 25%;
        height: 4px;
        background-color: #7f3ffc;
        position: absolute;
        left: 0;
        bottom: -5px;
        transition: none;
      }

      .terms:hover::after {
        animation: expandWidth 0.2s forwards;
      }

      .see-more {
        text-decoration: none;
        color: #7f3ffc;
        font-size: 16px;
      }

      @keyframes expandWidth {
        from {
          width: 25%;
        }
        to {
          width: 100%;
        }
      }
      .headerTerms {
        display: flex;
        align-items: center;
        gap: 48px;
      }

      .toggle {
        display: none;
      }


.text-container {
    color: #fff;
    margin-top: 40px;
    line-height: 2;
    font-size: 13px;
}


      .mainContainer {
        max-width: 1542px;
        margin: auto;
        overflow: hidden;
        background: linear-gradient(
          180deg,
          rgba(127, 63, 252, 0) 0%,
          rgba(127, 63, 252, 0.08) 100%
        );
      }
      .htext {
        font-size: 40px;
        font-weight: 600;
        color: white;
      }
      .sptext {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        color: white;
      }

.sptext.footer {
    text-align: center;
    color: gray;
}




      .footer-text {
        max-width: 1542px;
        margin: auto;
        padding: 40px 0;
      }

      .recomended {
        display: flex;
        align-items: center;
      }
      .recomended-text {
        display: flex;
        flex-direction: column;
      }

      .best-hotels {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 60px;
        white-space: nowrap;
      }
      .best {
        font-weight: 300;
        font-size: 40px;
        color: #f2f2f2;
      }
      .hotel-line {
        width: 100%;
        height: 4px;
        border-radius: 4px;
        background-color: #7f3ffc;
      }
      .hotels {
        margin-top: 120px;
        display: flex;
        flex-direction: column;
        gap: 120px;
      }
      .hotel-card {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 97px;
      }

      .footerContainer {
        width: 100%;
        margin-top: 120px;
        background-color: black;
      }
      .sptext .footer {
        max-width: 1500px;
        margin: auto;
      }

      .Description {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .mobile-image {
        object-fit: cover;
        display: none;
      }

      .hide-img {
        display: block;
        object-fit: cover;
        width: 619px;
        height: 400px;
      }
      .casionoImg {
        object-fit: cover;
      }

      @media (max-width: 1200px) {
        .headerTerms-toggle {
          display: none;
          margin-top: 24px;
          flex-direction: column;
          gap: 24px;
          justify-content: center;
          align-items: center;
        }
        .terms::after {
          content: "";
          display: block;
          width: 20%;
          height: 4px;
          background-color: #7f3ffc;
          position: absolute;
          left: 50%;
          bottom: -5px;
          transform: translateX(-50%);
          transition: all 0.3s ease;
        }

        .terms:hover::after {
          width: 100%;
          transform: translateX(-50%);
        }
        .best {
          font-size: 28px;
        }
        .hide-img {
          display: none;
        }
        .mobile-image {
          display: block;
        }
        .htext {
          font-size: 28px;
          text-align: center;
        }
        .sptext {
          font-size: 14px;
          text-align: center;
        }
        .Description {
          display: flex;
          flex-direction: column;
          gap: 16px;
        }
        .hotel-card.reverse {
          flex-direction: column-reverse;
        }
        .hotel-card {
          display: flex;
          flex-direction: column;
          gap: 20px;
          align-items: center;
        }
        .hotels {
          margin-top: 32px;
          display: flex;
          flex-direction: column;
          gap: 32px;
        }

        .toggle {
          display: block; /* Ensure toggle icon is displayed */
          cursor: pointer; /* Add cursor style */
        }
        .headerTerms {
          display: none;
        }
        .recomended {
          flex-direction: column;
          margin-top: 24px;
        }
        .best-hotels {
          gap: 15px;
        }
        .footerContainer {
          width: 100%;
          margin-top: 60px;
        }
        .container {
          padding: 16px; /* Adjust padding as needed */
        }
        .footer-text {
          padding: 16px 40px;
        }
      }
    