@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #00B89F;
    --secondary-color: #003152;
    --text-color: #2A2A2A;
    --background-color: #F9FAFB;
    --txet-white-color: #FAFAFA;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --mist-gray: #EDF2F6;
    --btn-color: #007BCE;
    --gradiyant-box: linear-gradient(135deg,
            rgba(179, 234, 227, 1) 0%,
            rgba(179, 216, 241, 1) 100%);
    --whatshapp-color: #25D366;
    --primary-dark-color: #003730;
    --p-100: #E6F8F6;
    --p-200: #B3EAE3;
    --p-300: #99E3D9;
    --p-400: #33C6B2;
    --p-500: #004A40;
    --p-600: #003730;
    --p-800: #000C15;
    --s-100: #E6F2FB;
    --s-200: #B3D8F1;
    --s-300: #99CAEB;
    --s-400: #3395D8;
    --s-500: #007BCE;
    --s-600: #007BCE;
    --s-800: #00253E;
}



.packages-section {
    background-color: var(--secondary-color);
    color: var(--txet-white-color);
    text-align: center;
    border-radius: 0 0 0 70px;
}

.packages-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto;
    color: var(--txet-white-color);
}

.package-card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 20px 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    background: var(--gradiyant-box);
    cursor: pointer;
}

.package-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.package-title {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 16px;
}

#overview img {
    border-radius: 0 0 0 50px;
}

.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-body i {
    font-size: 1.8rem;
    vertical-align: middle;
}

/* Process Steps */
.process-step {
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Ensures consistent height */
}

.process-step .step-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    /* Center icon */
}

/* Why Choose Medi Flights List */
.list-group-item {
    background: rgba(255, 255, 255, 0.247) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid var(--p-100);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 1rem;

    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;

    /* 🔥 Add transition for hover animation */
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animate each list item with delay */
.list-group-item:nth-child(1) {
    animation-delay: 0.1s;
}

.list-group-item:nth-child(2) {
    animation-delay: 0.2s;
}

.list-group-item:nth-child(3) {
    animation-delay: 0.3s;
}

.list-group-item:nth-child(4) {
    animation-delay: 0.4s;
}

.list-group-item:nth-child(5) {
    animation-delay: 0.5s;
}

.list-group-item:nth-child(6) {
    animation-delay: 0.6s;
}

.list-group-item:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 💫 Enhanced Hover Effect */
.list-group-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px) scale(2.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item i {
    font-size: 2rem;
    color: var(--primary-color);
}




/* Testimonials Carousel */
.bg-gradient-primary-light {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--p-400) 100%);
    color: var(--white-color);
}

.testimonial-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    /* Makes them white for visibility on dark background */
}

.bg-dark {
    background-color: var(--secondary-color) !important;
}

#benefits {
    border-radius: 0 0 0 70px;
}