body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right,darkblue 0%, #282560 50%);
    /*background-image: url("/assets/images/background.png");*/
    background-size: cover;
}
.header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background-color: white;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 8%;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%; /* Ensure it takes up the full height of the parent */
}
.logo img {
    height: 40px;
    vertical-align: middle;
    width: 100%;
}
.header nav {
    display: flex;
    align-items: center;
}
.header nav a {
    color: #1a1a4b;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
.partner-signin {
    background-color: #ffd700;
    color: #1a1a4b;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
.banner {
    /*background: url('/assets/images/banner.png') no-repeat center center;*/
    background-size: cover;
    height: 500px;
    margin-top: 80px;
}
.search-bar-agent {
    background-color: white;
    padding: 10px 20px;
    text-align: center;
    margin: 0 auto 30px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
}

.search-bar-agent form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.search-bar-agent input, .search-bar-agent button {
    padding: 10px;
    margin: 5px;
    border: none;
    font-size: 14px;
}
.search-bar-agent input[type="text"] {
    flex-grow: 1;
    background-color: #f0f0f0;
    border-radius: 25px;
    padding-left: 15px;
}
.search-bar-agent input[type="date"] {
    background-color: #f0f0f0;
    border-radius: 25px;
    padding-left: 15px;
    width: 150px;
}
.search-bar-agent button {
    background-color: #1a1a4b;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}

.search-bar {
    background-color: white;
    padding: 10px 20px;
    text-align: center;
    margin: 3% 10% 20px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-bar form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.search-bar input, .search-bar button {
    padding: 10px;
    margin: 5px;
    border: none;
    font-size: 14px;
}
.search-bar input[type="text"] {
    flex-grow: 1;
    background-color: #f0f0f0;
    border-radius: 25px;
    padding-left: 15px;
}
.search-bar input[type="date"] {
    background-color: #f0f0f0;
    border-radius: 25px;
    padding-left: 15px;
    width: 150px;
}
.search-bar button {
    background-color: #1a1a4b;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}
.content-section {
    padding: 50px 10%;
}
.section-title {
    width: 30%;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 30px;
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    padding: 10px;
}
.section-content {
    width: 80%;
    margin: 0 auto;
    color: white;
}

.more-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}
.news-items {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}
.news-item {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
    background-color: white;
    color: #1a1a4b;
    border-radius: 10px;
    margin-right: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.news-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.news-item h3 {
    font-size: 18px;
    margin: 10px 0;
}
.news-item p {
    font-size: 14px;
    color: #666;
}
.center-button {
    text-align: center;
}
.section-divider {
    width: 80%;
    margin: 40px auto;
    border-bottom: 1px solid white;
}
.news-items::-webkit-scrollbar {
    display: none;
}
.news-items {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a4b;
}


.subscribe-section {
    background-color: white;
    padding: 10px 0;
    text-align: center;
    margin: 0 auto 30px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
}
.subscribe-section form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.subscribe-section input, .subscribe-section button {
    padding: 10px;
    margin: 5px;
    border: none;
    font-size: 14px;
}
.subscribe-section input[type="text"] {
    flex-grow: 1;
    background-color: #f0f0f0;
    border-radius: 25px;
    padding-left: 15px;
}
.subscribe-section input[type="date"] {
    background-color: #f0f0f0;
    border-radius: 25px;
    padding-left: 15px;
    width: 150px;
}
.subscribe-section button {
    background-color: #1a1a4b;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.social-icons a {
    background-color: #1a1a2e;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.social-icons a:hover {
    background-color: #2a2a4e;
}

.follow-us{
    align-items: center;
    display: flex;
    padding: 10px;
    font-size: larger;
    font-weight: bolder;
}

@media (max-width: 768px) {
    .header {
        width: 90%;
        padding: 10px 15px;
    }
    .header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 25px 25px 25px 25px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .header nav.active {
        display: flex;
    }
    .header nav a {
        margin: 10px 0;
    }
    .hamburger {
        display: block;
    }
    .partner-signin {
        display: none;
    }
    .search-bar {
        flex-direction: column;
        padding: 15px;
    }
    .search-bar input, .search-bar button {
        width: 100%;
        margin: 5px 0;
    }
    .news-item {
        width: 80%;
    }
    .banner {
        /*background: url('https://placehold.co/768x300/orange/white?text=GoTravel+EXPO+Banner+Mobile') no-repeat center center;*/
        background-size: cover;
        height: 300px;
    }

    .section-title{
        width: 100% !important;
    }

    .search-bar-agent{
        width: 100% !important;
    }

    .carousels{
        --carousel-item-height: 150px;
    }

    .section-content{
        width: 100%;
    }

    .subscribe-section{
        width: 100%;
    }

    .box-car-list{
        height: auto;
    }
}


/*.modal{*/
/*    max-width: 60% !important;*/
/*    color: black;*/
/*}*/

/*.modal-section-title{*/
/*    width: 20%;*/
/*    margin: 0 auto 30px;*/
/*    text-align: center;*/
/*    font-size: 30px;*/
/*    color: black;*/
/*    border: 1px solid white;*/
/*    border-radius: 50px;*/
/*    padding: 10px;*/
/*}*/

.ground-country{
    padding: 0px 10%;
}

.gc-content{
    text-align: center;
    color: white;
}


.card{
    background-color: transparent;
    border: none;
}

.series{
    font-weight: 200;
    position: absolute;
    top: 55px;
    right: 50px;
    color: white;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    z-index: 4;
    font-size: 1em;
    transform: translateZ(0px);
}

.containers{
    padding: 50px 10%;
}



.card {
    background-color: transparent;
    border: none;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)*/
}

.image-container {
    position: relative
}

.thumbnail-image {
    border-radius: 10px !important
}

.discount {
    background-color: red;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 10px;
    border-radius: 6px;
    color: #fff
}

.wishlist {
    height: 25px;
    width: 25px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

.first {
    position: absolute;
    width: 100%;
    padding: 9px
}

.dress-name {
    font-size: 13px;
    font-weight: bold;
    width: 75%
}

.new-price {
    font-size: 13px;
    font-weight: bold;
    color: red
}

.old-price {
    font-size: 8px;
    font-weight: bold;
    color: grey
}

.btn {
    /*width: 14px;*/
    /*height: 14px;*/
    /*border-radius: 50%;*/
    /*padding: 3px*/
}

.creme {
    background-color: #fff;
    border: 2px solid grey
}

.creme:hover {
    border: 3px solid grey
}

.creme:focus {
    background-color: grey
}

.red {
    background-color: #fff;
    border: 2px solid red
}

.red:hover {
    border: 3px solid red
}

.red:focus {
    background-color: red
}

.blue {
    background-color: #fff;
    border: 2px solid #40C4FF
}

.blue:hover {
    border: 3px solid #40C4FF
}

.blue:focus {
    background-color: #40C4FF
}

.darkblue {
    background-color: #fff;
    border: 2px solid #01579B
}

.darkblue:hover {
    border: 3px solid #01579B
}

.darkblue:focus {
    background-color: #01579B
}

.yellow {
    background-color: #fff;
    border: 2px solid #FFCA28
}

.yellow:hover {
    border-radius: 3px solid #FFCA28
}

.yellow:focus {
    background-color: #FFCA28
}

.item-size {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid grey;
    color: grey;
    font-size: 10px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center
}

.rating-star {
    font-size: 10px !important
}

.rating-number {
    font-size: 10px;
    color: grey
}

.buy {
    font-size: 12px;
    color: purple;
    font-weight: 500
}

.voutchers {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    height: 50px;
}

.voutcher-divider {
    display: flex
}

.voutcher-left {
    width: 60%;
    height: 50px;
}

.voutcher-name {
    color: grey;
    font-size: 9px;
    font-weight: 500
}

.voutcher-code {
    color: red;
    font-size: 11px;
    font-weight: bold
}

.voutcher-right {
    width: 45%;
    background-color: purple;
    color: #fff
}

.discount-percent {
    font-size: 12px;
    font-weight: bold;
    position: relative;
    top: 5px
}

.off {
    font-size: 14px;
    position: relative;
    bottom: 5px
}
