/* ----- Main Card ----- */
.welcome-kit-card {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    padding: 25px;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-top: 35px;
}
.welcome-kit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* ----- Left Content ----- */
.welcome-kit-left {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ----- Section Titles ----- */
.welcome-kit-left h2 {
    font-size: 1.8rem;
    color: #0d9488;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.welcome-kit-left p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* ----- Item Boxes ----- */
.welcome-kit-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.welcome-kit-item {
    flex: 1 1 140px;
    background: linear-gradient(135deg, #f0fdf4, #fefce8);
    border-radius: 15px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.welcome-kit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.welcome-kit-item i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-bottom: 6px;
}
.welcome-kit-item strong {
    font-size: 0.95rem;
    color: #0d9488;
}
.welcome-kit-item p {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
}

/* ----- Price Box ----- */
.welcome-kit-price {
    background: #0d9488;
    color: #fff;
    padding: 12px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 140px;
}
.welcome-kit-price del { opacity: 0.6; font-size: 0.95rem;  }
.welcome-kit-price .price { font-size: 1.3rem; margin: 5px 0; font-weight: 700; }
.welcome-kit-price a {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    background: #f59e0b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}
.welcome-kit-price a:hover { background: #d97706; }

/* ----- Right Image ----- */
.welcome-kit-right {
    flex: 1 1 35%;
    text-align: center;
}
.welcome-kit-right img {
    max-width: 100%;
   /* border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);*/
    transition: transform 0.3s ease;
}
.welcome-kit-right img:hover { transform: scale(1.03); }

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .welcome-kit-card { flex-direction: column; }
    .welcome-kit-left, .welcome-kit-right { flex: 1 1 100%; text-align: center; }
 .welcome-kit-right { order: -1; }
}


