@import url(./style.css);

.newheader {
    background: var(--fourth-color);
    z-index: 999;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 3px 3px rgba(20, 20, 20, 0.1);

    .newhead {
        width: 90%;
        margin: auto;
        border: 0;
        padding: 10px 20px;
        border-radius: 100px;
    }

    .left {
        margin: auto 0;
        max-width: fit-content;

        img {
            width: 175px;
        }
    }

    .right {
        margin: auto 0;
    }

    .headcol {
        margin: auto 0;
    }
}

.navigate {
    margin: auto 0;

    ul {
        display: flex;
        list-style-type: none;
        gap: 10px;
        margin-bottom: 0;
        background-color: transparent;
        justify-content: center;
    }

    nav ul li a.active {
        background-color: var(--primary-color) !important;
        color: var(--fourth-color) !important;
    }

    a {
        color: var(--fifth-color) !important;
        transition: border-color 0.5s ease-in-out;
        padding: 5px 15px;
        border-radius: 25px;
    }

    li {
        background-color: transparent;
        margin: 0;
        padding: 0 5px;
        cursor: pointer;
    }

    li:hover {
        a {
            color: var(--fourth-color) !important;
            background-color: var(--primary-color);
        }
    }
}

form {
    .pass {
        margin: auto 0 auto auto;
        gap: 10px;
    }

    .radio {
        display: flex;
        gap: 20px;

        #rdoRoundtrip,
        #rdoOneway {
            width: 15px;
            margin-left: 0 !important;
        }

        label {
            margin-top: 0;
        }
    }

    ::placeholder {
        color: #676767;
        font-size: 15px;
    }

    input,
    select,
    textarea {
        line-height: 1em !important;
        background-color: var(--fourth-color);
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        border: 1px solid #cacaca;
        border-radius: 5px;
    }

    label {
        flex: 1;
        font-family: var(--secondary-font);
        font-size: 16px;
        text-align: left;
        font-weight: 400;
    }

    button {
        width: 100%;
    }

    div {
        gap: 5px;
    }

    .dropdown-container {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .dropdown-input {
        padding: 10px;
        font-size: 15px;
        border: 1px solid #ddd;
        cursor: pointer;
    }

    .dropdown-content {
        padding: 10px;
        border-radius: 10px;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border: 1px solid #ddd;
    }

    .dropdown-content .dropdown-group {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .dropdown-content .dropdown-group:last-child {
        border-bottom: none;
    }

    .dropdown-content label {
        margin-right: 10px;
    }

    .qty {
        cursor: pointer;
        width: 30px;
        text-align: center;
    }

    .qtyminus,
    .qtyplus {
        background-color: #f1f1f1;
        border: 1px solid #ccc;
        font-size: 18px;
    }

    .dropdown-content input[type="text"] {
        width: 50px;
        text-align: center;
    }

    .form-control {
        border: 1px solid #cacaca;
        padding: 10px 12px !important;
    }
}

.herobg {
    background-image: url(../images/bannermain.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact {
    form {
        margin-top: 10px;

        button {
            width: 100px;
        }

        input {
            padding: 15px;
            border: 1px solid #cacaca;
            border-radius: 5px;
        }
    }

    .right {
        h2 {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: var(--fourth-color) !important;
            padding: 5px 15px;
            border-radius: 10px;
            text-align: center;
        }

        .grid {
            gap: 10px;
            margin-block: 10px;
        }

        .colum {
            border: 1px solid #cacaca;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }
    }

    h3,
    p {
        margin: auto 0 !important;
    }
}

.cta {
    background-color: var(--primary-color);
    padding: 5px 15px 5px 5px;
    position: fixed;
    left: 10px;
    border: 1px solid var(--fourth-color);
    bottom: 10px;
    z-index: 999;
    display: none;
    border-radius: 50px;
    width: fit-content;

    i {
        background-color: var(--fifth-color);
        color: var(--third-color);
        padding: 10px;
        border-radius: 100%;
    }

    .flex {
        gap: 10px;
    }

    div,
    h3 {
        margin: auto 0 !important;
    }

    h4 {
        color: var(--fourth-color) !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.5;
    }
}

.BannerBg {
    background-image: url(../images/bannermain.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;

    p {
        color: var(--fourth-color);
    }

    form {
        width: 70%;
        padding: 20px;
        background-color: var(--fourth-color);
        border-radius: 20px;
        margin-top: 20px;
        box-shadow: 0 0 4px 4px rgba(20, 20, 20, 0.2);
        z-index: 9;
        position: relative;
        margin: auto;
    }

    .radio {
        margin-bottom: 10px;
    }

    .col3 {
        gap: 5px;
        z-index: 9;
        position: relative;

        .column,
        div {
            flex: 1;
        }

        input,
        select {
            background-color: var(--fourth-color);
            border: 1px solid #cacaca;
            padding-left: 25px !important;
            margin-bottom: 0 !important;
            background-position-x: 5px;
            background-position-y: center;
            background-repeat: no-repeat;
            background-size: 15px;
            margin-top: 0;
        }

        #international_from_location {
            background-image: url();
        }

        #international_to_location {
            background-image: url();
        }

        #flight_from_date,
        #flight_to_date {
            background-image: url(../images/cdate.png);
        }

        #pass_info {
            background-image: url(../images/passengers.png);
        }
    }

    .search_flights {
        margin-top: 10px;
        text-align: center;
    }

    #flight_submit {
        text-align: center;
        font-size: 18px !important;
        text-transform: none;
        padding: 0 !important;
    }
}

.destinations {
    background-color: rgb(1, 122, 214, 0.1);

    h2 {
        text-align: center;
    }

    .flex {
        box-shadow: 0 0 4px 4px rgba(20, 20, 20, 0.05);
        padding: 15px;
        border-radius: 10px;
        gap: 15px;
        background-color: var(--fourth-color);

        div {
            margin: auto 0;
        }
    }

    p,
    a {
        line-height: 1.3;
        font-size: 14px;
    }

    b {
        font-size: 18px;
    }

    img {
        border-radius: 10px;
        width: 100px;
        margin: auto 0;
    }
}

.allheadpara {
    background-color: rgb(1, 122, 214, 0.1);
    margin: 0 auto 10px;
    width: fit-content;
    border-radius: 25px;
    padding: 5px 25px;
    line-height: 1.5;
    color: var(--primary-color);
    font-size: 14px;
}

.usps {
    .colum {
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 20px;
    }

    i {
        background-color: rgb(1, 122, 214, 0.1);
        color: var(--primary-color);
        padding: 15px;
        border-radius: 10px;
        font-size: 18px;
    }
}

.steps {
    background-color: rgb(1, 122, 214, 0.1);

    .imgcol {
        height: 300px;
        border-radius: 10px 10px 0 0;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .innercol {
        background-color: var(--fourth-color);
        border-radius: 0 0 10px 10px;
        padding: 20px;
    }

    p {
        line-height: 1.5;
    }

    b {
        font-size: 18px;
    }

    a {
        border: 1px solid #cacaca;
        padding: 5px 15px;
        border-radius: 25px;
    }
}

.Popular {
    background-color: var(--secondary-color);

    span {
        font-size: 13px;
    }

    h2 {
        color: var(--fourth-color) !important;
    }
    
    .col {
        padding: 10px 15px;
        text-align: center;
        border-radius: 5px;
    }
    
    .col:hover {
        background-color: rgb(1, 122, 214, 0.1);
        cursor: pointer;
        
        p {
            color: var(--primary-color) !important;
        }
    }
    
    p {
        line-height: 1.5;
        color: var(--fourth-color) !important;
    }

    .grid9 {
        grid-template-columns: repeat(6, 1fr);
    }

    .grid6 {
        grid-template-columns: repeat(7, 1fr);
    }
}

.cstsup {
    text-align: center;
    background-color: var(--primary-color);

    h2, p, h3 {
        color: var(--fourth-color) !important;
    }

    .col {
        background-color: rgba(255, 255, 255, 0.2);
        border: 1px solid #cacaca;
        border-radius: 10px;
        padding: 30px;
    }

    i {
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 100%;
        background-color: var(--fourth-color);
        color: var(--primary-color);
    }
}










  .container12 {
    background-color: #1f2c3c;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }

  .container13 {
    text-align: center;
    color: white;
    max-width: 400px;
    width: 100%;
  }

  .container13 h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .container13 p {
    font-size: 16px;
    margin-bottom: 20px;
	color: white !important;
  }

  .contact-btn11 {
    background-color: #017ad6;
    color: white !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }

  .booking-card11 {
    background-color: white;
    color: #1f2c3c;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .booking-card11 h2 {
    margin-bottom: 5px;
  }

  .booking-card11 small {
    display: block;
    margin-bottom: 15px;
    color: #555;
  }

  .queue-box11 {
    background-color: #003366;
    color: white;
    padding: 15px;
    border-radius: 8px;
  }

  .queue-box11 a {
    color: #00ffcc !important;
    text-decoration: none;
    font-weight: bold;
  }

  /* Responsive adjustments */
  @media (max-width: 480px) {
    .container13 h1 {
      font-size: 20px;
    }
    .container13 p {
      font-size: 14px;
    }
    .booking-type11 {
      flex-direction: column;
    }
    .booking-type11 button {
      width: 100%;
    }
  }