body {
    height: 100%;
    margin: 0;
}

body::-webkit-scrollbar {
    display: flex;
    width: 0.1px;
}

body::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.main-header {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    position: sticky;
    justify-content: space-between;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.logo {
    font-size: 1.5em;
    margin-left: 2%;
}

.navbar {
    display: flex;
    user-select: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin-right: 20px;
}

.navbar a {
    text-decoration: none;
    color: #293877;
    font-family: 'Arial Rounded MT Bold', sans-serif;
}

.navbar a:hover {
    color: #56BBF1;
}

.close-btn {
    cursor: pointer;
    display: none;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info img {
    margin-right: 3%;
}

.contact-info p {
    margin-left: 2%;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.contact-info p1 {
    margin-left: -2%;
    font-size: 18px;
    font-weight: bold;
    color: #293877;
}

.contact-info p2 {
    margin-left: 2%;
    font-size: 16px;
    font-weight: bold;
    color: #56BBF1;
}

.vertical-line {
    border-bottom: 2px solid #56BBF1;
    margin-top: 5px;
    margin-bottom: 5px;
}

.search {
    width: 100%;
    height: 550px;
    background-image: url('/images/umrah.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.search img {
    width: 100%;
    height: auto;
}

.form-p {
    color: #ffffff;
    margin-left: 10px;
    white-space: nowrap;
    font-weight: bold;
}

label:hover {
    cursor: pointer;
    user-select: none;
}

.form{
    background-color: rgba(86, 187, 241, 0.8);
    width: 92%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.wrap {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    position: relative;
}

.wrap label {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 5px;
    color: white;
}

.wrap input[type="text"],
.wrap input[type="date"],
.wrap select,
.travellers,
.transfer {
    padding: 8px;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    width: 175px;
    margin-bottom: 5px;
    border-radius: 10px;
}

.travellers,
.transfer {
    background-color: white;
    height: 34px;
    display: flex;
    align-items: center;
    color: black;
}

.wrap input[type="text"]:focus,
.wrap input[type="date"]:focus,
.wrap select:focus {
    border-color: white;
    outline: none;
}

.model-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mdl-btn {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #fcbe09;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mdl-btn:hover {
    background-color: #d6a923;
}

#cabinClass {
    width: 200px;
    height: 40px;
}


.btns{
    display: flex;
    align-items: center;
    margin-top: -20px;
    margin-left: -15px;
}

.btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: white;
    color: rgba(86, 187, 241);
    border: 1px solid grey;
    font-size: 25px;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
    transition: box-shadow 0.3s;
    margin-left: 15px;
    margin-right: 15px;
}

.mgm-up{
    margin-top: -3px;
}

.btn:hover {
    background-color: rgba(86, 187, 241);
    color: white;
}

.counter{
    font-weight: bolder;
    font-size: 40px;
}

.search-btn{
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #fcbe09;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 25px;
    margin-left: 10px;
    width: 50%;
    margin-bottom: 10px;
}

.transferSite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

#flyingFromSuggestions,
#flyingToSuggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 300px;
    background-color: white;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    color: #293877;
    word-wrap: none;
}

#flyingFromSuggestions::-webkit-scrollbar,
#flyingToSuggestions::-webkit-scrollbar {
    width: 0;
}

.suggestion {
    padding: 10px;
    cursor: pointer;
}

.suggestion:hover {
    background-color: #ddd;
}


.modal-container {
    display: none;
    position: absolute;
    z-index: 1000;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    transition: top 0.3s ease;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.transfer-modal {
    display: none;
    position: absolute;
    z-index: 1000;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    transition: top 0.3s ease;
}

.transfer-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.experience {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exp {
    background-color: #fafafa;
    width: 98%;
    border-radius: 10px;
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3);
    padding: 2px;
    margin-top: -5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.expl{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exph{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.numeric-animation {
    color: #c8aa00;
    font-weight: bold;
    margin-bottom: 3px;
}

.exp-p {
    color: #454545;
    margin-top: 0;
    text-wrap: nowrap;
}

.h-line {
    height: 80px;
    width: 2px;
    background-color: #dcdcde;
    margin-left: 40px;
    margin-right: 40px;
}

.h-line-n {
    height: 80px;
    width: 2px;
    background-color: #dcdcde;
    margin-left: 40px;
    margin-right: 40px;
}

/* Base styles */
.feature-section {
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 16px;
    color: #666;
}

.vls a{
    color: #666;
    text-decoration: none;
}


@media only screen and (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 8.75vh;
        left: 70%;
        width: 30vw;
        max-width: 300px; 
        background-color: #ffffff;
    }
    
    .navbar.show {
        display: flex;
    }
    
    .navbar ul {
        flex-direction: column;
    }
    
    .navbar li {
        margin: 1vh 0;
    }
    
    .close-btn {
        cursor: pointer;
        display: block;
    }
    
    .navbar-toggle {
        display: block;
        cursor: pointer;
    }
    
    .contact-info,
    .vertical-line {
        display: none;
    }

    .search {
        width: 100%;
        height: 550px;
        max-width: 700px;
        background-image: url('/images/umrah.gif');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: background-image 0.5s ease;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
    }

    .form{
        background-color: rgba(86, 187, 241, 0.8);
        width: 92%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    
    .details {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-left: -10px;
    }
    
    .wrap {
        margin-bottom: 5px;
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    }
    
    .wrap label {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 5px;
        color: white;
    }
    
    .wrap input[type="text"],
    .wrap input[type="date"],
    .wrap select,
    .travellers,
    .transfer {
        padding: 8px;
        border: 1px solid #ffffff;
        box-sizing: border-box;
        width: 175px;
        min-width: 80px;
        width: 150px;
        max-width: 175px;
        margin-bottom: 5px;
        border-radius: 10px;
    }
    
    .travellers,
    .transfer {
        background-color: white;
        height: 34px;
    }

    .expl{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100px;
    }

    .exp {
        background-color: #fafafa;
        width: 98%;
        border-radius: 10px;
        box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3);
        padding: 2px;
        margin-top: -5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .h-line-n {
        display: none;
    }

    .feature-section {
        margin: 0 auto;
        padding: 50px 20px;
        background-color: #f9f9f9;
        border-radius: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .feature {
        display: flex;
        justify-content: left;
        align-items: row;
        width: 100%;
        margin-bottom: 30px;
    }
}

.container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}

.package {
    border: 1px solid #ccc;
    box-sizing: border-box;
    position: relative;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.one {
    display: flex;
    align-items: center;
    margin: 10px;
}

.one p {
    font-size: small;
    color: #8f8f8f;
}

.one img {
    width: 15px;
}

.package-image {
    position: relative;
    height: 200px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.package-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.review-image {
    height: 20px;
    margin-right: 10px;
}

.package-duration {
    margin: 0;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-weight: bold;
    color: #333;
}

.mgn10 {
    margin: 10px;
}

h2 {
    font-size: 18px;
    color: #2f2f2f;
}

.dashed {
    border-top: 2px dashed #dcdcde;
    margin-left: 10px;
    margin-right: 10px;
}

hr.solid {
    border-top: 1px solid #dcdcde;
    margin-left: 10px;
    margin-right: 10px;
}

.bookNow {
    background-color: #c8aa00;
    border: none;
    color: white;
    text-align: center;
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 30px;
    letter-spacing: 0.2em;
}

.bookNow:hover {
    background-color: #1b7d75;
}

.call {
    border-color: #c8aa00;
    color: #c8aa00;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    padding: 6px 10px;
}

.call:hover {
    background-color: #1b7d75;
    border-color: #1b7d75;
    color: white;
}

@media screen and (max-width: 768px) {
    .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }


}