*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}
body{
  background-color: #fff;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.Tour-banner{
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.Tour-banner img{
    width: 100%;
    display: block;
}
.Tour-banner .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}
.banner-content{
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -45%); 
    text-align: center;
    color: white; 
    z-index: 2; 
    font-family: "Rosarivo", serif;
}
.banner-title{
    font-family: "Rosarivo", serif;
    font-weight: 300;
    font-size: 60px;
}
.bg-text-section{
    background-color: #EDF6F4;
    padding: 30px 0px 30px;
}
.Title-text-section{
    text-align: center;
    max-width: 70%;
    position: relative;
    margin: 80px auto;
}
.Title-text-section h1{
    font-family: "Rosarivo", serif;
    font-size: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.Title-text-section p{
    font-size: 22px;
    margin-bottom: 20px;
    color: #484847;
}
.tour-section{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;    
}
.container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff !important;
}
.card {
    width: 350px;
    background: white;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}
.image{
    margin-top: 0px !important;
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
.card-content {
    padding: 15px;
}
.card h3 {
    font-size: 18px;
    color: #D5A021;
    font-weight: 500;
    margin-bottom: 10px;
}
.card ul li::marker {
    font-size: 9px; 
}
.card ul {
    text-align: left;
    padding-left: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #706A6A;
}
.card ul li {
    margin-bottom: 5px;
}



.card-2 {
    width: 350px;
    background: white;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}
.card-2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.card-2 h3 {
    font-size: 18px;
    color: #D5A021;
    font-weight: 500;
    margin-bottom: 10px;
}
.card-2 ul li::marker {
    font-size: 9px; 
}
.card-2 ul {
    text-align: left;
    padding-left: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #706A6A;
}
.card-2 ul li {
    margin-bottom: 5px;
}




.tour-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #706A6A; 
    font-size: 15px; 
    letter-spacing: 0.8px;
}
.tour-duration::before,
.tour-duration::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ccc; 
    margin: 0 10px;
}
.card-bottom{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.price {
    font-size: 16px;
    font-weight: 400;
    color: #D5A021;
    margin: 10px 0;
}
.book-btn {
    display: inline-block;
    background: #20856B;
    color: white;
    padding: 8px 25px;
    border: 1px solid #20856B;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}
.book-btn:hover {
    background: white;
    color: black;
    border: 1px solid #20856B;
}

.day-tour-section{
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    margin: 100px 0px;
}
.card-container{
    display: flex;
    gap: 30px;
}
.left-img, .right-img{
    width: 24%;
    height: 500px;
    object-fit: cover;
}
.form-group label{
    font-size: 21px;
    font-weight: 500;
}
.form-group ::placeholder,
.form-group select,
.form-group input{
    font-size: 18px;
    font-weight: 400;
    color: #8F8989;
}
input[type="email"],
select {
    width: 100%;
    font-size: 18px;
    padding: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
}
.form-container {
    width: 60%;
    margin: 40px auto;
    padding: 20px;
}
.form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.two-fields {
    display: flex;
    gap: 10px;
}
.two-fields input,
.two-fields select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
}
textarea {
    width: 100%;
    height: 150px;
    resize: none;
    padding: 15px;
    border: 1px solid #ccc;
}
.contact-text {
    grid-column: span 2;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    color: #484847;
}
.contact-text a {
    color: #007b5e;
    text-decoration: underline;
}
.submit-btn {
    background-color: #007b5e;
    color: white;
    font-size: 19px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 500px;
    margin-top: 10px;
    transition: background-color 0.3s;
    border: solid 1px;
}
.submit-btn:hover {
    background-color: #ffffff;
    border: solid 1px;
    border-color: #007b5e;
    color: black;
}
.button-container{
    text-align: center;
}
    @media(max-width: 1650px){
        .left-img, .right-img{
            width: 20%;
            height: 500px;
        }
    }

    @media(max-width: 1440px){
        .banner-title{
        font-size: 55px;
        }
        .Title-text-section{
            max-width: 80%;
            margin: 80px auto;
        }
        .Title-text-section h1{
            font-size: 36px;
            margin-bottom: 25px;
        }
        .Title-text-section p{
            font-size: 20px;
            margin-bottom: 20px;
        }
        .left-img, .right-img{
            width: 16%;
            height: 500px;
        }
        .form-container {
            width: 70%;
            padding: 20px;
        }
        .form-group label{
            font-size: 18px;
        }
        .form-group ::placeholder,
        .form-group select,
        .form-group input{
            font-size: 16px;
        }
        .two-fields input,
        .two-fields select {
            padding: 13px;
        }
        
        input[type="email"],
        select {
            font-size: 16px;
            padding: 13px;
        }
        textarea {
            height: 80px;
            padding: 15px;
        }
        .contact-text {
            font-size: 13px;
        }
        .submit-btn {
            font-size: 18px;
            padding: 11px 20px;
            width: 500px;
            margin-top: 15px;
        }
    }

    @media(max-width: 1250px){
        .banner-title{
          font-size: 45px;
        }
        .Title-text-section{
            max-width: 80%;
            margin: 70px auto;
        }
        .Title-text-section h1{
            font-size: 33px;
            margin-bottom: 25px;
        }
        .Title-text-section p{
            font-size: 17px;
            margin-bottom: 20px;
        }
        .card-container{
            display: flex;
            gap: 20px;
        }
        .left-img, .right-img{
            width: 12%;
            height: 500px;
        }
        .form-container {
            padding: 20px;
        }
        .form-group label{
            font-size: 16px;
        }
        .form-group ::placeholder,
        .form-group select,
        .form-group input{
            font-size: 14px;
        }
        .two-fields input,
        .two-fields select {
            padding: 10px;
        }
        
        input[type="email"],
        select {
            font-size: 14px;
            padding: 10px;
        }
        .contact-text {
            font-size: 12px;
            margin-top: -13px;
        }
        .submit-btn {
            font-size: 15px;
            padding: 10px 20px;
            width: 450px;
        }
    }

    @media(max-width: 1024px){
        .banner-title{
          font-size: 38px;
        }
        .Title-text-section{
            max-width: 85%;
            margin: 60px auto;
        }
        .Title-text-section h1{
            font-size: 28px;
            margin-bottom: 25px;
        }
        .Title-text-section p{
            font-size: 14px;
            margin-bottom: 20px;
        }
        .day-tour-section{
            display: flex;
            align-items: center;
            gap: 20px;
            width: 100%;
            justify-content: center;
            margin: 100px 0px;
        }
        .left-img, .right-img{
            display: none;
        }
        .form-container {
            width: 80%;
            margin: 40px auto;
            padding: 20px;
        }
        .form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .form-group label{
            font-size: 14px;
        }
        .form-group ::placeholder,
        .form-group select,
        .form-group input{
            font-size: 12px;
        }
        .two-fields input,
        .two-fields select {
            padding: 9px;
        }
        
        input[type="email"],
        select {
            width: 100%;
            font-size: 12px;
            padding: 9px;
        }
        textarea {
            height: 80px;
            padding: 15px;
        }
        .contact-text {
            font-size: 11px;
            margin-top: -13px;
            margin-bottom: 10px;
        }
        .submit-btn {
            font-size: 14px;
            padding: 8px 20px;
            width: 380px;
            margin-top: 15px;
        }
    }

    @media(max-width: 768px){
        .banner-title{
          font-size: 30px;
        }
        .bg-text-section{
            background-color: #EDF6F4;
            padding: 20px 0px 20px;
        }
        .Title-text-section{
            max-width: 85%;
            margin: 35px auto;
        }
        .Title-text-section h1{
            font-size: 20px;
            margin-bottom: 20px;
        }
        .Title-text-section p{
            font-size: 11px;
            margin-bottom: 15px;
        }
        .day-tour-section{
            display: flex;
            align-items: center;
            gap: 20px;
            width: 100%;
            justify-content: center;
            margin: 50px 0px;
        }
        .card-2{
            margin-bottom: 30px;
        }
        .card-container{
            display: block;
        }
        .form-container {
            width: 90%;
            margin: 40px auto;
            padding: 10px;
        }
        .form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .form-group label{
            font-size: 12px;
        }
        .form-group ::placeholder,
        .form-group select,
        .form-group input{
            font-size: 9px;
        }
        .two-fields input,
        .two-fields select {
            padding: 6px;
        }
        
        input[type="email"],
        select {
            width: 100%;
            font-size: 9px;
            padding: 6px;
        }
        textarea {
            height: 80px;
            padding: 15px;
        }
        .contact-text {
            font-size: 8px;
            margin-top: -5px;
            margin-bottom: 10px;
        }
        .submit-btn {
            font-size: 11px;
            padding: 5px 20px;
            width: 280px;
            margin-top: 15px;
        }
    }

    @media(max-width: 500px){
        .banner-title{
            font-size: 30px;
        }
        .Tour-banner img{
            width: 150%;
        }
        .Title-text-section{
            max-width: 85%;
            margin: 25px auto;
          }
        .Title-text-section h1{
            font-size: 16px;
            margin-bottom: 15px;
        } 
        .Title-text-section p{
            font-size: 9px;
            margin-bottom: 10px;
        }
        .form-container {
            width: 85%;
            padding: 15px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .form {
            display: flex;
            flex-direction: column; 
            gap: 10px;
        }
        .form-group label{
            margin-bottom: 4px;
        }
        .two-fields {
            flex-direction: column; 
        }
        input, select, textarea {
            width: 100%;
            padding: 12px;
            font-size: 16px;
        }
        .submit-btn {
            width: 100%;
            padding: 7px;
            font-size: 13px;
            text-align: center;
            font-weight: 400;
        }
        input, select, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 12px;
        }
        
        .form-group select{
            appearance: none; /* Removes default styling */
            -webkit-appearance: none;
            -moz-appearance: none;
            background-color: white;
            cursor: pointer;
        }

        input[type="date"],
        input[type="time"] {
            background-color: white;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            width: 50%;
        }      
        .placeholder-style::before {
            content: attr(placeholder);
            color: #aaa;
        }
        

    }

