/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/
/* =========================================================
   AURALINE PROCESS SECTION - COMPACT VERSION
   Accent Color: #d87c44
   ========================================================= */

.auraline-process-section {
    position: relative;
    overflow: hidden;
}

/* Process Wrapper */
.auraline-process-section .auraline-process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

/* Connecting Line */
.auraline-process-section .auraline-process-wrapper:before {
    content: "";
    position: absolute;
    top: 27px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #eadbd1;
    z-index: 0;
}

/* Process Item */
.auraline-process-section .auraline-process-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Number */
.auraline-process-section .auraline-process-number {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d87c44;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.auraline-process-section .auraline-process-number span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #d87c44;
}

/* Content */
.auraline-process-section .auraline-process-content {
    margin-top: 15px;
    padding: 20px 18px 18px;
    min-height: 175px;
    background: #fff;
    border: 1px solid #eee3dc;
    position: relative;
    transition: all 0.3s ease;
}

/* Small Accent */
.auraline-process-section .auraline-process-content:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 35px;
    height: 2px;
    transform: translateX(-50%);
    background: #d87c44;
    transition: all 0.3s ease;
}

/* Icon */
.auraline-process-section .auraline-process-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #fcf5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.auraline-process-section .auraline-process-icon i {
    font-size: 16px;
    color: #d87c44;
}

/* Card Heading */
.auraline-process-section .auraline-process-content h3 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
}

/* Description */
.auraline-process-section .auraline-process-content p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   HOVER
   ========================================================= */

.auraline-process-section .auraline-process-item:hover
.auraline-process-number {
    background: #d87c44;
    border-color: #d87c44;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(216, 124, 68, 0.18);
}

.auraline-process-section .auraline-process-item:hover
.auraline-process-number span {
    color: #fff;
}

.auraline-process-section .auraline-process-item:hover
.auraline-process-content {
    transform: translateY(-4px);
    border-color: #e5c8b5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.auraline-process-section .auraline-process-item:hover
.auraline-process-content:before {
    width: 55px;
}

.auraline-process-section .auraline-process-item:hover
.auraline-process-icon {
    background: #d87c44;
}

.auraline-process-section .auraline-process-item:hover
.auraline-process-icon i {
    color: #fff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .auraline-process-section .auraline-process-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .auraline-process-section .auraline-process-wrapper:before {
        display: none;
    }

    .auraline-process-section .auraline-process-content {
        min-height: 165px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .auraline-process-section .auraline-process-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .auraline-process-section .auraline-process-content {
        min-height: auto;
        padding: 18px 16px;
    }

    .auraline-process-section .auraline-process-icon {
        margin-bottom: 10px;
    }

    .auraline-process-section .auraline-process-content h3 {
        font-size: 17px;
    }

    .auraline-process-section .auraline-process-content p {
        font-size: 13px;
    }
}






/*service location button*/
    /* =========================================
   AURALINE INTERIOR - CITY LINKS
   ========================================= */

.city-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e8e3df;
    border-radius: 4px;
    padding: 12px 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #222222;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 12px;
}


/* Hover Effect */
.city-link:hover {
    background: #d87c44;
    color: #ffffff;

    border-color: #d87c44;

    box-shadow: 0 6px 18px rgba(216, 124, 68, 0.20);

    text-decoration: none;
}


/* Arrow */
.city-link .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    line-height: 1;

    color: #d87c44;

    transition: transform 0.3s ease, color 0.3s ease;
}


/* Arrow on Hover */
.city-link:hover .arrow {
    color: #ffffff;
    transform: translateX(5px);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .city-link {
        padding: 11px 15px;
        font-size: 14px;
    }

    .city-link .arrow {
        font-size: 18px;
    }

}
/*service location button End*/
