
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    }
body {  
    margin: 0;
    padding: 0;
}

/*----------------------------header---------------------------*/

.nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between; /* Arrange logo and button at opposite ends */
    width: 100%;
    height: 100px;
    line-height: 100px;
    background-color: #fff; /* Add background color for the header */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add shadow effect */
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    max-width: 175px;
    height: 60px;
    margin-left: 30%; 
    margin-top: 8%;
}


.menu ul{
    position: relative;
    display: flex;
    align-items: end;
    left: 65%;
}
.menu ul li{
    list-style-type: none;
}
.menu ul li .link{
    text-decoration: none;
    font-weight: 500;
    color: #333;
    padding-bottom: 10px;
    margin: 0 15px;
}
.link:hover, .active{
    border-bottom: 2px solid #10588C;
}
.signup-button .btn{
    width: 130px;
    height: 40px;
    font-weight: 500;
    font-size: 15px;
    background:#10588C;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s ease;
    color: white;
}
#signupBtn{
    margin-right: 25px;
}
.btn{
    background: #10588C;
}

.nav-menu-btn{
    display: none;
}

/* Remove padding from the header */
header {
    padding: 0;
}

/*------------------------------------images-----------------------------------*/

.trip-section{
    margin: 5%;
    margin-top: 10%;
}

.trip-title-info h3{
    font-size: 35px;
    font-weight: bold;
    margin-left: 5px;
}

.trip-title-info p{
    font-weight: lighter;
    font-size: 18px;
    margin-left: 9px;
}

/******/

.images {
    display: flex;
    height: 340px; /* Total height of the images section */
    width: 100%; /* Make the images section take full width of the screen */
}

.images img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cut the images to cover the entire container */
    
}

.left {
    width: 50%; /* Make the left container take half of the screen's width */
    height: 100%;
}

.right {
    display: flex;
    flex-direction: column;
    width: 50%; /* Make the right container take half of the screen's width */
    height: 100%;
}

.above {
    flex: 1; /* Make the above image take the available space in the right container */
    height: 50%; /* Set the height of "image 2" to half of the available space in the right container */
}

.down{
    display: flex;
    flex-direction: row;
    height: 50%;
    width: 100%;
}

.downLeft {

    height: 100%;
    width: 50%;
    object-fit: cover;
}

.downRight {
    height: 100%;
    width: 50%;
}


.left, .above, .downLeft, .downRight img {
    padding: 5px;
}

/* -------------------------boxes---------------------------- */

.box1, .box2, .box3, .box4{
    margin: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.044);
    align-items: center;
    width: 315px;
    height: 290px;
}

.boxLeft {
    margin: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.044);
    align-items: center;
    width: 650px;
    height: 300px;
    position: absolute;
    top: 80%;
    right: 50.5%;
}

.boxDown {
    margin: 15px;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.044);
    align-items: center;
    width: 650px;
    height: 100px;
    position: absolute;
    bottom: -44%;
    right: 50.5%;
}

.boxRight{
    display: flex;
    flex-direction: column;
}

.fRow{
    display: flex;
    flex-direction: row;
}

.sRow{
    display: flex;
    flex-direction: row;
}

.box1{
    position: absolute;
    top: 80%;
    right: 27.5%;
}

.box2{
    position: absolute;
    top: 80%;
    right: 4.5%;
}

.box3{
    position: absolute;
    bottom: -70%;
    right: 27.5%;
}

.box4{
    position: absolute;
    bottom: -70%;
    right: 4.5%;
}

/*----boxLeft------------------------*/

.boxLeft w{
    font-family: 'montserrat',sans-serif;
    font-weight: lighter;
    line-height: 1.8;
}

/*----boxDown---------------------*/

.boxDown a{
    font-family: 'montserrat',sans-serif;
    padding: 10%;
    font-size: 20px;
    font-weight: bold;
}

.counter {
    display: flex;
    align-items: center;
    width: 125px;
    height: 45px;
    border-radius: 25px;
    overflow: hidden;
    position: absolute;
    top: 30%;
    left: 60%;
    background-color: #f0f0f0;
  }
  
  button {
    font-family: 'montserrat',sans-serif;
    width: 35px;
    height: 35px;
    background-color: #10588c9c;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #fff;
    margin: 5px;
  }
  
  .counter-value {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }
  
  /* Style the buttons */
  .minus-btn {
    border-radius: 30px;
  }
  
  .plus-btn {
    border-radius: 30px;
  }
  

/*------------box1-----------------------------*/
.box1 b{
    font-family: 'montserrat',sans-serif;
    font-weight: bold;
}

.box1 c{
    font-family: 'montserrat',sans-serif;
    position: absolute;
    top: 20%;
    left: 20%;
}
.box1 d{
    position: absolute;
    top: 18%;
    left: 45%;
    font-size: 23px;
    font-family: 'montserrat',sans-serif;
    font-weight: bold;
}
.box1 e{
    font-family: 'montserrat',sans-serif;
    position: absolute;
    top: 37%;
    left: 24%;
}
.box1 f{
    font-family: 'montserrat',sans-serif;
    position: absolute;
    top: 36%;
    left: 44%;
    font-size: 23px;
    font-weight: bold;
}
.box1 g{
    font-family: 'montserrat',sans-serif;
    font-weight: bold;
    position: absolute;
    top: 60%;
    right: 60%;
}

.box1 j{
    font-family: 'montserrat',sans-serif;
    font-size: 22px;
    position: absolute;
    top: 71%;
    right: 35%;
}
/*------------box2-----------------------------*/
.box2 b{
    font-family: 'montserrat',sans-serif;
    font-weight: bold;
}

.map_btn{
    margin-top: 20px;
    width: 265px;
    height: 100px;
    cursor: pointer;
    overflow: hidden;
    border:none;
    border-radius: 20px;
}
.map_btn img{
    height: 100px;
    width: 280px;
    object-fit: cover;
}

.map-icon m{
    font-family: 'montserrat',sans-serif;
}
/*------------box3-----------------------------*/
.box3 b{
    font-family: 'montserrat',sans-serif;
    font-weight: bold;
}

.box3 ul{
    position: absolute;
    top: 20%;
    left: 14%;
}
.include-icon {
    padding: 5px;
}
.include-icon m{
    font-family: 'montserrat',sans-serif;
}


/*----------------box4------------------------*/

.box4 b{
    font-family: 'montserrat',sans-serif;
    font-weight: bold;
}
.checkbox-label {
    font-family: 'montserrat',sans-serif;
    font-weight: lighter;
    position: absolute;
    padding: 12px;
    flex-direction: column;
    font-size: 16px;
}

.checkbox-label input[type="checkbox"] {
    margin: 10px;
   
 
}

/* Optional: Add styles for the checkbox label text */
.checkbox-label input[type="checkbox"] + span {
    font-size: 16px;
    color: #333;
    content: icon;
    
    
}

/* Style for checked checkbox */
.checkbox-label input[type="checkbox"]:checked + span {
    font-weight: bold;
    color: #10588C; /* Change color when checked */

}


/*------------------------book button--------------------------*/


.book-button .k_btn{
    width: 130px;
    height: 40px;
    font-weight: 500;
    font-size: 15px;
    background:#99C0E3;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: .3s ease;
    color: rgb(0, 0, 0);
    position: absolute;
    right: 5%;
    bottom: -80%;
}

.k_btn{
    background: #99C0E3;
}


/*------------------------------------footer-----------------------------------*/

footer{
    text-align: center;
    margin-top: 50%;
    
}

.contact {
    position: absolute;
    display: flex;
    padding-left: 18%;
    width: 100%;
}

.img1 {
    justify-content: space-between;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30%;
    width: 30%;
    padding-bottom: 3%;
}

.info {
    text-align: left;
    padding-top: 3%;
    padding-left: 18%;
}

.info h1 {
    font-size: 24px;
    color: #5E646B;
    padding-bottom: 10%;
}

.info h2 {
    font-weight: lighter;
    padding-bottom: 4%;
    font-size: 15px;
    color: #000;
}

.info1{
    text-align: left;
    margin-top: 85px;
}

.info1 h1 {
    font-weight: lighter;
    padding-bottom: 4%;
    font-size: 15px;
    color: #000;
    margin-left: 35px;
}



.social-sign-in {
    display: flex;
    gap: 15px;
    position: absolute;
    top: 60%;
    left: 57.5%;
}

.input-Facebook {
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.input-Facebook img {
    width: 24px;
    margin-right: 5%;
    margin-top: 7%;
}

.input-telegram {
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.input-telegram img {
    width: 24px;
    margin-top: 7%;
}

.input-Instagram {
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.input-Instagram img {
    width: 24px;
    margin-top: 7%;
}

.input-Twitter {
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.input-Twitter img {
    width: 24px;
    margin-top: 7%;
}

.input-Facebook:hover,
.input-telegram:hover,
.input-Instagram:hover,
.input-Twitter:hover,
.input-submit:hover {
    opacity: 0.9;
}

.end {
    position: absolute;
    height: 20%;
    top: 100%;
    width: 100%;
    margin: 0;
    background-color: #f0f0f0;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}

.end h1 {

    font-weight: lighter;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 1%;
    font-size: 13px;
    color: #888888;
}