/* ///////////why choose section ///////////*/

.why-choose-section {
    padding: 100px 20px;
    background-color: #fcfcfc;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.wc-row {
    display: flex;
    align-items: center;
    gap: 80px;
}


.wc-image-wrapper {
    flex: 1;
    position: relative;
}

.wc-image-container {
    width: 100%;
    height: 600px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    background: #eef2ff;
}

.wc-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.wc-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.wc-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3C0145;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}


.wc-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 600;
    color: #3C0145;
    margin-bottom: 24px;
}


.wc-description {
    font-size: 16px;
    line-height: 1.6;
    color: #3C0145;
    margin-bottom: 32px;
}


.wc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.wc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #3C0145;
}

.check-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 18px;
}


.wc-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0f172a;
    color: #fff;
    padding: 8px 8px 8px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    gap: 20px;
}

.wc-button:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-arrow-circle {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.wc-button:hover .btn-arrow-circle {
    transform: rotate(45deg);
}


@media (max-width: 991px) {
    .wc-row {
        flex-direction: column;
        gap: 50px;
    }

    .wc-image-container {
        height: 400px;
    }

    .wc-title {
        font-size: 36px;
    }
}


.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.wc-image-wrapper.is-visible {
    transition-delay: 0s;
}

.wc-tag.is-visible {
    transition-delay: 0.1s;
}

.wc-title.is-visible {
    transition-delay: 0.2s;
}

.wc-description.is-visible {
    transition-delay: 0.3s;
}

.wc-list.is-visible {
    transition-delay: 0.4s;
}

.wc-button.is-visible {
    transition-delay: 0.5s;
}



/* --- Services Section Styling --- */
.services-section {
    padding: 100px 20px;
    background-color: #fff;
}


.center-text {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.8%;
}

.services-header {
    margin-bottom: 60px;
}


.services-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}


.service-card {
    background-color: #eef2ff;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* .service-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(30, 30, 75, 0.1);
} */

.card-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* .service-card:hover .card-image img {
    transform: scale(1.05);
} */

.card-content {
    padding: 24px;
    flex: 1;
}

.card-content h3 {
    color: #3C0145;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content p {
    color: #3C0145;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}


.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.active-anim {
    opacity: 1;
    transform: translateY(0);
}

.safety-section {
    padding: 10px 20px;
    background: linear-gradient(to bottom, #fff 0%, #f8fafc 100%);
    position: relative;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px auto;
}


.safety-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;

    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
}


.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(30, 30, 75, 0.12);
    border-color: #c7d2fe;
}

.card-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #3C0145;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.safety-card:hover .card-icon-wrap {
    transform: scale(1.1) rotate(365deg);
    background: linear-gradient(135deg, #3C0145 0%, #3C0145 100%);
    color: #fff;
}


.safety-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.safety-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}


.safety-badge {
    max-width: 600px;
    margin: 0 auto;
    background: #1e1e4b;
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(30, 30, 75, 0.15);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safety-badge p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.safety-badge strong {
    color: #a5b4fc;
}


@media (max-width: 768px) {
    .safety-card {
        text-align: center;
    }

    .card-icon-wrap {
        margin: 0 auto 20px auto;
    }

    .safety-badge {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        border-radius: 20px;
        padding: 24px;
    }
}



.process-section {
    padding: 100px 20px;
    background-color: #fff;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}


.process-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 0px;
    padding: 40px 30px 30px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e0e7ff;
}


.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: #3C0145;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    width: 50px;
    height: 50px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    z-index: 2;
}


.process-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 55px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #e0e7ff 0%, transparent 100%);
    z-index: 0;
    opacity: 0.5;
}


.process-content {
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e1e4b;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}


.process-card p strong {
    color: #4f46e5;
}

.center-text-one-o {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
    margin-top: 0%;
}

.center-text-one {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8%;
    margin-top: 0%;
}






.wellness-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

}

.text-content {
    flex: 0.8;
    max-width: 550px;
}

.text-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #3C0145;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-content p {
    font-size: 1.125rem;
    color: #3C0145;
    line-height: 1.6;
}


.image-group {
    flex: 1;
    display: flex;
    gap: 20px;
    height: 500px;
}


.image-card {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;


    transition: transform 0.4s ease, box-shadow 0.4s ease;


    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;


    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}




.image-card.visible:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);
}


.image-card:hover img {
    transform: scale(1.1);
}


.card-1 {
    flex: 1.3;
}

.card-2 {
    flex: 1;
}




.animate-text-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-100px) scale(0.95);

    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-from-right {
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}


.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}


.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}


@media (max-width: 968px) {
    .wellness-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .text-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .text-content h2 {
        font-size: 2.5rem;
    }

    .image-group {
        width: 100%;
        height: 350px;
    }


    .image-card.visible:hover {
        transform: none;
    }
}

