*{
    margin: 0;
    padding: 0;
}
/* body{
    font-family: "Montserrat", Sans-serif;
} */
h1, h2, h3{
    font-family: "Montaga", Sans-serif;
    font-size: 39px;
    font-weight: 600;
    color: #F9F9F9;
}
.ban{
    width: 100%;
}
.site{
    background-color: #1778AC;
    padding: 30px;
}
.site p{
    text-align: center;
    color: #fff;
}
.site h1, h2, h3{
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Montaga", Sans-serif;
}
.site li{
    color: #fff;
}
.treat{
    background-color: #000;
    padding: 30px;
}
.treat h3{
    color: #fff;
    text-align: center;
}
.treat li{
    color: #fff;
}
.treat p{
    color: #fff;
}
.logo{
    width: 100px;
}
.stay p{
color: #fff;
}
.login{
    background-color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    color: #6200ff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

/* header */

.auto-slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.slider-track img {
    width: calc(50vw - 10px); /* 2 images per row */
    max-width: 600px;
    border-radius: 10px;
    flex-shrink: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.btn-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.custom-btn{
    padding: 12px 25px;
    background-color: #000;
    font-family: "Montserrat", Sans-serif;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    min-width: 140px;
}
.new{
    font-size: 21px;
    color: #fff;
    font-weight: bold;
    font-family: "Montserrat", Sans-serif;
    margin-top: 20px;
}
.image-scroll{
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
}
.image-scroll::-webkit-scrollbar{
    display: none;
}
.image-scroll img{
    width: calc((100% - 50px) / 6); /* 6 images in one row */
    flex-shrink: 0;
    display: block;
    margin: 2px;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px){
    .image-scroll img{
        width: calc((100% - 10px) / 2); /* 2 images visible */
    }
}
.like{
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}
.like h2{
    color: #000;
}
.like h3{
    color: #000;
}
.like li{
    color: #000;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.like p{
    color: #000;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.choose{
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    width: 380px;
    margin-left: 15px;
    margin-bottom: 10px;
}
.choose img{
    width: 100px;
}
.choose .new{
    font-weight: bold;
}
.choose p{
    color: #000;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
}
.choose2{
    text-align: center;
    padding: 20px;
    border-radius: 100px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.94);
    background-color: #fff;
    width: 380px;
    margin-left: 15px;
    margin-bottom: 10px;
}
.choose2 img{
    width: 100px;
}
.choose2 .new{
    font-weight: bold;
}
.choose2 p{
    color: #000;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
}
.register{
    background-color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
}

/* faq */
.faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background-color: #1778AC;
  }

  .faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #fff;
  }

  .faq-item {
    margin: 0px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    color: #fff;
    background-color: #000;
    border-bottom: 1px solid #fff;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }
   .whatsapp{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: pulse 1.5s infinite;
}

.whatsapp img{
    width: 28px;
    height: 28px;
}

@keyframes pulse{
    0%{
        transform: translateX(-50%) scale(1);
    }
    50%{
        transform: translateX(-50%) scale(1.05);
    }
    100%{
        transform: translateX(-50%) scale(1);
    }
}

@media(max-width:576px){
    .whatsapp{
        width: 90%;
        justify-content: center;
        bottom: 15px;
        font-size: 15px;
        padding: 12px 15px;
    }
}
 /* footer */
 .take{
    background-color: #000;
    padding: 30px;
    border-top: 2px solid #fff;
 }
 .take p{
    color: #fff;
 }
 .stick{
    border-top: 1px solid #fff;
 }
  .stick a{
     color: #fff;
     text-decoration: none;
 }
 .stick p{
    text-align: center;
    margin-top: 20px;
    color: #fff;
 }
 /* footer */

@media only screen and (max-width: 476px){
    p{
        text-align: justify;
    }
    .faq-section{
        padding: 10px;
    }
    .stay{
        display: none;
    }
    .slider-track img{
    width: calc(60% - 5px);
    height: auto;
    object-fit: cover;
    }
    .choose {
        width: 100%;
        margin-left: 0px;
    }
    .choose2 {
        width: 100%;
        margin-left: 0px;
    }
    .treat{
        padding: 15px;
    }
    .site{
        padding: 15px;
    }
}