.flightLabel {
    width: 100%;
}

.indexfirstContent {
    background: linear-gradient(135deg, #f9fafb, #f0f4ff);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.indexfirstContent .mainHeadif {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.indexfirstContent .mainHeadif span {
    color: #2563eb;
    text-transform: capitalize;
}

.indexfirstContent .formElementWeb1 {
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.indexfirstContent .borderEND1 {
    flex: 1;
    min-width: 260px;
}

.indexfirstContent select {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: #fff;
    appearance: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.indexfirstContent select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 100, 235, 0.121);
}

.indexfirstContent .submitBTN {
    background: var(--dynamic-color);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .indexfirstContent {
        padding: 60px 0 40px;
    }

    .indexfirstContent .mainHeadif {
        font-size: 2rem;
    }

    .indexfirstContent .formElementWeb1 {
        flex-direction: column;
    }

    .indexfirstContent .submitBTN {
        width: 100%;
    }
}


.packagemainbox {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.package-card {
    width: calc((100% / 3) - (22px));
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card .imgDiv {
    height: 240px;
    overflow: hidden;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-gradient {
    background: linear-gradient(45deg, #7b2ff7, #f107a3);
    color: #fff;
    font-weight: 600;
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.packagedetails p {
    margin-bottom: 1rem;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400
}

.packagedetails .custom-p {
    margin: 0;
    font-size: 12px;
    line-height: 14px;
}

.helloWorld {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: var(--dynamic-color);
    display: block;
    text-align: center;
}

.btn-dangerCs,
.bg-dangerCs {
    background: var(--dynamic-color);
    color: white;
}

.itinerary-img>div {
    background: #f8f8f8;
    border: 0.5px solid #e9e3e3;
    padding: 10px 20px;
    width: 80px;
    border-radius: 8px;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.pacakgeITI.accordion-button {
    color: #1f1f1f;
    font-weight: 600;

    &:focus {
        box-shadow: none
    }
}

.pacakgeITI.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--dynamic-color);
}

.packagedetails form li {
    cursor: pointer;
    color: #594b4b;
    font-size: 12px;
}

.packagedetails form hr {
    margin: 0px;
}

.packagedetails form ul {
    display: flex;
    list-style: none;
    flex-direction: column;
    padding: 10px 16px;
    margin-bottom: 0px;
    border: 0.5px solid #7d7d7d;
    border-radius: 5px;
    gap: 8px;
}