.spice-values-section {
    padding: 100px 0;
    background: #faf7f1;
}


/* Heading */

.spice-values-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.spice-values-tag {
    display: inline-block;
    margin-bottom: 15px;

    color: #9a642f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.spice-values-heading h2 {
    margin: 0;

    color: #33251b;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
}

.spice-values-heading h2 span {
    color: #a86c32;
    font-family: 'Poppins', sans-serif;
    /*font-weight: 400;*/
}

.spice-values-heading p {
    max-width: 600px;
    margin: 20px auto 0;

    color: #756b61;
    font-size: 14px;
    line-height: 1.8;
}


/* Grid */

.spice-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Card */

.spice-value-card {
    position: relative;

    display: flex;
    gap: 20px;
    align-items: flex-start;

    padding: 30px;

    background: #fff;

    border: 1px solid #eadfd0;
    border-radius: 18px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.spice-value-card::after {
    content: "";

    position: absolute;
    left: 30px;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #a86c32;

    transition: width .3s ease;
}

.spice-value-card:hover {
    transform: translateY(-7px);

    border-color: #d9c2a8;

    box-shadow:
        0 18px 40px rgba(65, 40, 20, .09);
}

.spice-value-card:hover::after {
    width: 55px;
}


/* Icon */

.spice-value-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #f3e8d8;
    color: #9a642f;

    font-size: 20px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.spice-value-card:hover .spice-value-icon {
    background: #9a642f;
    color: #fff;

    transform: rotate(-5deg) scale(1.05);
}


/* Content */

.spice-value-content {
    flex: 1;
}

.spice-value-content > span {
    display: block;
    margin-bottom: 7px;

    color: #bca68d;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.spice-value-content h3 {
    margin: 0 0 9px;

    color: #38291d;

    font-size: 18px;
}

.spice-value-content p {
    margin: 0;

    color: #7b7065;

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

    .spice-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 650px) {

    .spice-values-section {
        padding: 75px 0;
    }

    .spice-values-heading {
        margin-bottom: 40px;
    }

    .spice-values-heading h2 {
        font-size: 32px;
    }

    .spice-values-heading p {
        font-size: 14px;
    }

    .spice-values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .spice-value-card {
        padding: 24px;
    }

}












/* --------------------------------------------------------------------------------------- */
.masala-journey {
    position: relative;
    overflow: hidden;
    padding: 110px 0;

    background: #fffaf3;
}


/* =====================================
   HEADER
===================================== */

.masala-journey-header {
    max-width: 700px;
    margin: 0 auto 80px;

    text-align: center;
}

.masala-journey-kicker {
    display: inline-block;

    margin-bottom: 18px;

    color: #a06a35;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.masala-journey-header h2 {
    margin: 0;

    color: #302218;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -2px;
}

.masala-journey-header h2 span {
    display: inline;

    color: #a36b36;
     font-size: 42px;
    
    /*font-weight: 400;*/
}

.masala-journey-header p {
    max-width: 600px;

    margin: 20px auto 0;

    color: #776b60;

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================
   TIMELINE
===================================== */

.masala-timeline {
    position: relative;

    max-width: 1050px;
    margin: auto;
}


/* Central line */

.masala-timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #d7bfa2 8%,
            #d7bfa2 92%,
            transparent
        );

    transform: translateX(-50%);
}


/* =====================================
   STAGE
===================================== */

.masala-stage {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 110px 1fr;

    align-items: center;

    min-height: 230px;
}


/* =====================================
   CONTENT
===================================== */

.masala-stage-info {
    max-width: 390px;

    padding: 25px 35px;

    transition: transform .4s ease;
}

.masala-stage:not(.masala-stage-reverse)
.masala-stage-info {
    text-align: right;
    justify-self: end;
}

.masala-stage-reverse
.masala-stage-info {
    text-align: left;
    justify-self: start;
}


/* Hover */

.masala-stage:hover .masala-stage-info {
    transform: translateY(-5px);
}


/* Small heading */

.masala-stage-small {
    display: block;

    margin-bottom: 10px;

    color: #b18a65;

    font-size: 10px !important;
    font-weight: 600;

    letter-spacing: 1.2px;
}


/* Title */

.masala-stage-info h3 {
    margin: 0 0 12px;

    color: #38291e;
   

    font-size: 23px;
    font-weight: 600;
}


/* Paragraph */

.masala-stage-info p {
    margin: 0;

    color: #3e3b38;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.8;
}


/* =====================================
   CENTER
===================================== */

.masala-stage-center {
    position: relative;
    z-index: 3;

    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;

    border-radius: 50%;

    background: #fffaf3;

    border: 1px solid #d7bfa2;

    box-shadow:
        0 0 0 10px #fffaf3;

    transition:
        transform .4s ease,
        background .4s ease;
}


/* Number */

.masala-stage-center span {
    position: absolute;

    top: -9px;
    right: -8px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #a36b36;

    color: #fff;

    font-size: 9px;
    font-weight: 700;
}


/* Icon */

.masala-stage-center i {
    color: #9b6634;

    font-size: 25px;

    transition:
        transform .4s ease,
        color .4s ease;
}


/* Center Hover */

.masala-stage:hover .masala-stage-center {
    background: #a36b36;

    transform: scale(1.08);
}

.masala-stage:hover
.masala-stage-center i {
    color: #fff;

    transform: rotate(-8deg);
}


/* =====================================
   EMPTY SIDE
===================================== */

.masala-stage-space {
    min-height: 1px;
}


/* =====================================
   FOOTER
===================================== */

.masala-journey-footer {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 70px;
}

.masala-journey-footer p {
    margin: 0;

    color: #927253;

    font-family: Georgia, serif;

    font-size: 14px;
    
}

.masala-journey-footer i {
    margin-right: 7px;

    color: #a36b36;
}

.masala-footer-line {
    width: 70px;
    height: 1px;

    background: #d9c5ad;
}


/* =====================================
   REVEAL
===================================== */

.masala-journey-header,
.masala-stage {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.masala-journey-header.masala-active,
.masala-stage.masala-active {
    opacity: 1;
    transform: translateY(0);
}


/* Stagger */

.masala-stage:nth-child(1) {
    transition-delay: .05s;
}

.masala-stage:nth-child(2) {
    transition-delay: .15s;
}

.masala-stage:nth-child(3) {
    transition-delay: .25s;
}

.masala-stage:nth-child(4) {
    transition-delay: .35s;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 800px) {

    .masala-journey {
        padding: 80px 0;
    }

    .masala-journey-header {
        margin-bottom: 60px;
    }

    .masala-timeline::before {
        left: 45px;
    }

    .masala-stage,
    .masala-stage-reverse {
        display: grid;

        grid-template-columns: 90px 1fr;

        min-height: 210px;

        margin-bottom: 10px;
    }

    .masala-stage-info,
    .masala-stage-reverse
    .masala-stage-info {
        grid-column: 2;

        grid-row: 1;

        text-align: left;

        justify-self: start;

        max-width: none;

        padding: 25px 15px 25px 30px;
    }

    .masala-stage-center {
        grid-column: 1;
        grid-row: 1;

        width: 72px;
        height: 72px;

        margin: 0;
    }

    .masala-stage-center i {
        font-size: 20px;
    }

    .masala-stage-space {
        display: none;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 550px) {

    .masala-journey {
        padding: 70px 0;
    }

    .masala-journey-header {
        margin-bottom: 45px;
    }

    .masala-journey-header h2 {
        font-size: 37px;
        letter-spacing: -1px;
    }

    .masala-journey-header p {
        font-size: 14px;
    }

    .masala-timeline::before {
        left: 32px;
    }

    .masala-stage,
    .masala-stage-reverse {
        grid-template-columns: 64px 1fr;

        min-height: 190px;
    }

    .masala-stage-center {
        width: 58px;
        height: 58px;

        box-shadow:
            0 0 0 7px #fffaf3;
    }

    .masala-stage-center span {
        width: 22px;
        height: 22px;

        font-size: 8px;
    }

    .masala-stage-center i {
        font-size: 17px;
    }

    .masala-stage-info,
    .masala-stage-reverse
    .masala-stage-info {
        padding: 20px 5px 20px 22px;
    }

    .masala-stage-info h3 {
        font-size: 27px;
    }

    .masala-stage-info p {
        font-size: 12px;
    }

    .masala-stage-small {
        font-size: 8px;
    }

    .masala-journey-footer {
        margin-top: 40px;
    }

    .masala-footer-line {
        width: 35px;
    }

}


@media (max-width: 900px) {

    .masala-journey {
        padding: 80px 0;
    }

    .masala-timeline {
        width: 100%;
    }

    /* Vertical line */
    .masala-timeline::before {
        left: 36px !important;
        transform: translateX(-50%);
    }

    /* Every step becomes same layout */
    .masala-stage,
    .masala-stage.masala-stage-reverse {
        display: grid !important;

        grid-template-columns: 72px minmax(0, 1fr) !important;

        width: 100%;
        min-height: 200px;

        margin: 0;
        padding: 0;

        align-items: center;
    }

    /* Hide empty columns */
    .masala-stage-space {
        display: none !important;
    }

    /* Center icon */
    .masala-stage-center {
        grid-column: 1 !important;
        grid-row: 1 !important;

        width: 62px;
        height: 62px;

        margin: 0 auto;

        box-shadow:
            0 0 0 8px #fffaf3;

        z-index: 5;
    }

    /* Content ALWAYS right side */
    .masala-stage-info,
    .masala-stage:not(.masala-stage-reverse) .masala-stage-info,
    .masala-stage.masala-stage-reverse .masala-stage-info {

        grid-column: 2 !important;
        grid-row: 1 !important;

        width: 100%;
        max-width: none;

        padding: 25px 10px 25px 22px;

        text-align: left !important;
        justify-self: stretch !important;

        box-sizing: border-box;
    }

    .masala-stage-info h3 {
        margin-bottom: 8px;
        font-size: 27px;
    }

    .masala-stage-info p {
        max-width: 650px;

        font-size: 13px;
        line-height: 1.7;
    }

    .masala-stage-small {
        font-size: 8px;
        letter-spacing: 2px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .masala-journey {
        padding: 65px 0;
    }

    .masala-journey-header {
        margin-bottom: 45px;
        padding: 0 10px;
    }

    .masala-journey-header h2 {
        font-size: 32px;
        line-height: 1.12;
    }
     .masala-journey-header h2 span{
        font-size: 32px;
       
    }

    .masala-journey-header p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* Timeline */

    .masala-timeline::before {
        left: 29px !important;
    }


    /* Step */

    .masala-stage,
    .masala-stage.masala-stage-reverse {

        grid-template-columns:
            58px minmax(0, 1fr) !important;

        min-height: 185px;
    }


    /* Circle */

    .masala-stage-center {

        width: 52px;
        height: 52px;

        box-shadow:
            0 0 0 7px #fffaf3;
    }

    .masala-stage-center i {
        font-size: 17px;
    }


    /* Number */

    .masala-stage-center span {

        width: 20px;
        height: 20px;

        top: -6px;
        right: -6px;

        font-size: 7px;
    }


    /* Text */

    .masala-stage-info,
    .masala-stage:not(.masala-stage-reverse) .masala-stage-info,
    .masala-stage.masala-stage-reverse .masala-stage-info {

        padding: 18px 5px 18px 20px;

        text-align: left !important;
    }


    .masala-stage-small {
        margin-bottom: 7px;

        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .masala-stage-info h3 {
        margin-bottom: 7px;

        font-size: 25px;
    }

    .masala-stage-info p {

        font-size: 11.5px;
        line-height: 1.65;

        max-width: 100%;
    }


    /* Footer */

    .masala-journey-footer {
        margin-top: 35px;
        gap: 12px;
    }

    .masala-footer-line {
        width: 25px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .masala-timeline::before {
        left: 25px !important;
    }

    .masala-stage,
    .masala-stage.masala-stage-reverse {

        grid-template-columns:
            50px minmax(0, 1fr) !important;
    }

    .masala-stage-center {

        width: 45px;
        height: 45px;
    }

    .masala-stage-center i {
        font-size: 15px;
    }

    .masala-stage-info,
    .masala-stage:not(.masala-stage-reverse) .masala-stage-info,
    .masala-stage.masala-stage-reverse .masala-stage-info {

        padding-left: 18px;
    }

    .masala-stage-info h3 {
        font-size: 20px;
    }

    .masala-stage-info p {
        font-size: 11px;
    }

}