/* =========================================================
   ANUBHUTI - COMMITMENT SECTION
========================================================= */
*{
    font-family: 'Poppins', sans-serif;
    
}
.commitment-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    
    font-family: 'Poppins', sans-serif !important;
    font-weight:600px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(224, 147, 44, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(122, 31, 43, 0.08),
            transparent 30%
        ),
        #fffaf3;
}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.commitment-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.orb-one {
    width: 260px;
    height: 260px;
    top: -100px;
    left: -100px;
    background: rgba(224, 147, 44, 0.08);
}

.orb-two {
    width: 320px;
    height: 320px;
    bottom: -150px;
    right: -120px;
    background: rgba(122, 31, 43, 0.07);
}


/* =========================================================
   FLOATING PARTICLES
========================================================= */

.commitment-particle {
    position: absolute;
    color: #d4932d;
    font-size: 20px;
    opacity: 0.35;
    pointer-events: none;
    animation: commitmentFloat 6s ease-in-out infinite;
}

.particle-one {
    top: 15%;
    left: 8%;
}

.particle-two {
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

.particle-three {
    bottom: 20%;
    left: 13%;
    animation-delay: 2.5s;
}

.particle-four {
    bottom: 12%;
    right: 15%;
    animation-delay: 3.5s;
}

@keyframes commitmentFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-22px) rotate(20deg);
    }
}


/* =========================================================
   INTRO
========================================================= */

.commitment-intro-area {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.commitment-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.commitment-label span:not(.label-line) {
    color: #a96d12;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}

.label-line {
    width: 45px;
    height: 1px;
    background: #d8a04b;
}

.commitment-intro-area h2 {
    margin: 0 0 20px;
    color: #4a210d;
   font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.4;
}

.commitment-intro-area h2 span {
    display: inline-block;
    color: #b87513;
}

.commitment-intro-area p {
    max-width: 700px;
    margin: auto;
    color: #73594d;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   STATEMENT
========================================================= */

.commitment-statement {
    position: relative;
    max-width: 1100px;
    min-height: 270px;
    margin: 0 auto 100px;
    padding: 45px 50px;

    display: flex;
    align-items: center;
    gap: 40px;

    border-radius: 28px;
    background: #571e12;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(65, 25, 12, 0.16);

    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.commitment-statement::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -100px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
}

.commitment-statement::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -150px;
    top: -230px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}


/* Number */

.statement-number {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    color: rgba(255,255,255,.14);
    line-height: 1;
}


/* Content */

.statement-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.statement-content > span {
    color: #e5aa49;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.statement-content h3 {
    margin: 10px 0 14px;
    color: #fff5e8;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    line-height: 1.25;
}

.statement-content h3 strong {
    color: #e8a83d;
}

.statement-content p {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.8;
}


/* Seal */

.statement-seal {
    position: relative;
    z-index: 2;

    width: 145px;
    height: 145px;

    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(235,177,77,.6);
    border-radius: 50%;

    transform: rotate(-8deg);
}

.statement-seal::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(235,177,77,.5);
    border-radius: 50%;
}

.seal-inner {
    text-align: center;
}

.seal-inner span,
.seal-inner strong,
.seal-inner small {
    display: block;
}

.seal-inner span {
    color: #e5aa49;
    font-size: 10px;
    letter-spacing: 2px;
}

.seal-inner strong {
    margin: 5px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.seal-inner small {
    color: rgba(255,255,255,.55);
    font-size: 7px;
    letter-spacing: 1px;
}


/* =========================================================
   PROCESS HEADING
========================================================= */

.process-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-heading > span {
    color: #a96d12;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.process-heading h3 {
    margin: 12px 0;
    color: #4a210d;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
}

.process-heading h3 strong {
    color: #b87513;
}

.process-heading p {
    color: #80665a;
    font-size: 14px;
}


/* =========================================================
   PROCESS JOURNEY
========================================================= */

.process-journey {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* Connecting line */

.journey-line {
    position: absolute;

    top: 42px;
    left: 11%;
    right: 11%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d6a04c,
        #d6a04c,
        transparent
    );

    z-index: 0;
}

.journey-line span {
    position: absolute;

    width: 8px;
    height: 8px;

    top: -4px;
    left: 0;

    border-radius: 50%;

    background: #b87513;

    box-shadow: 0 0 0 6px rgba(184,117,19,.12);

    animation: lineMove 5s linear infinite;
}

@keyframes lineMove {

    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}


/* =========================================================
   PROCESS CARD
========================================================= */

.process-card {
    position: relative;
    z-index: 1;

    min-height: 230px;

    padding: 28px 25px;

    display: flex;
    flex-direction: column;

    background: rgba(255,255,255,.72);

    border: 1px solid rgba(169,109,18,.16);

    border-radius: 22px;

    box-shadow: 0 15px 35px rgba(70,30,10,.07);

    backdrop-filter: blur(10px);

    transform-style: preserve-3d;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.process-card:hover {
    transform:
        translateY(-14px)
        rotateX(4deg)
        rotateY(-5deg);

    border-color: rgba(169,109,18,.5);

    box-shadow: 0 30px 55px rgba(70,30,10,.14);
}


/* Top */

.process-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 45px;
}

.process-number {
    color: #d2a05a;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: bold;
}

.process-symbol {
    width: 55px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 16px;

    background: #fff1d6;
    color: #a96d12;

    font-size: 22px;

    transition: transform .5s ease;
}

.process-card:hover .process-symbol {
    transform: translateZ(25px) rotateY(180deg);
}


/* Content */

.process-tag {
    color: #a96d12;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.process-content h4 {
    margin: 9px 0 12px;

    color: #4a210d;

    font-family: 'Poppins', sans-serif;
    font-size: 23px;
}

.process-content p {
    color: #766054;
    font-size: 12px;
    line-height: 1.75;
}


/* Bottom */

.process-bottom {
    margin-top: auto;
    padding-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(120,70,20,.1);
}

.process-bottom span {
    color: #a96d12;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.process-bottom i {
    color: #a96d12;
    font-size: 12px;

    transition: transform .3s ease;
}

.process-card:hover .process-bottom i {
    transform: translateX(7px);
}


/* =========================================================
   FOOTER CTA - CENTER BUTTON
========================================================= */

.commitment-footer {
    width: 100%;

    margin: 80px auto 0;
    padding: 10px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* Hide footer copy if present */

.commitment-footer .footer-copy {
    display: none;
}


/* =========================================================
   BUTTON
========================================================= */

.commitment-footer .commitment-btn {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 35px;

    width: fit-content !important;
    min-width: 390px;

    margin: 0 auto !important;

    padding: 14px 18px 14px 24px;

    color: #fff;

    background: #741f16;

    border-radius: 50px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.commitment-footer .commitment-btn span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b87513;

    transition: transform .35s ease;
}

.commitment-footer .commitment-btn:hover {
    background: #54170f;

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(80,25,15,.2);
}

.commitment-footer .commitment-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .commitment-section {
        padding: 85px 20px;
    }

    .commitment-statement {
        padding: 35px;
    }

    .statement-seal {
        width: 120px;
        height: 120px;
    }

    .process-journey {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .journey-line {
        display: none;
    }

    /* Center button on tablet */

    .commitment-footer {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .commitment-section {
        padding: 70px 15px;
    }


    /* Intro */

    .commitment-intro-area {
        margin-bottom: 50px;
    }

    .commitment-label {
        gap: 10px;
    }

    .label-line {
        width: 25px;
    }

    .commitment-label span:not(.label-line) {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .commitment-intro-area h2 {
        font-size: 32px;
    }

    .commitment-intro-area p {
        font-size: 14px;
    }


    /* Statement */

    .commitment-statement {
        min-height: auto;

        padding: 30px 24px;

        margin-bottom: 70px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        border-radius: 22px;
    }

    .statement-number {
        font-size: 45px;
    }

    .statement-content h3 {
        font-size: 25px;
    }

    .statement-content p {
        font-size: 13px;
    }

    .statement-seal {
        align-self: center;

        width: 125px;
        height: 125px;
    }


    /* Process heading */

    .process-heading {
        margin-bottom: 35px;
    }

    .process-heading h3 {
        font-size: 29px;
    }

    .process-heading p {
        font-size: 13px;
    }


    /* Cards */

    .process-journey {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-card {
        min-height: 310px;
        padding: 23px;
    }

    .process-top {
        margin-bottom: 30px;
    }
    .process-content h4 {   
    font-size: 19px;
    }


    /* =====================================================
       MOBILE CENTER BUTTON
    ===================================================== */

    .commitment-footer {
        width: 100% !important;

        margin: 50px auto 0 !important;
        padding: 20px 0 0 !important;

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;
    }

    .commitment-footer .commitment-btn {
        width: auto !important;
        min-width: 190px;

        margin: 0 auto !important;

        display: inline-flex !important;

        align-items: center !important;
        justify-content: center !important;
    }

}


@media (max-width: 400px) {

.commitment-intro-area h2 {
        font-size: 30px;
    }

    .commitment-intro-area p {
        font-size: 12px;
    }


}















/* ----------------------------------------1----------------------------------------------------- */
