/* HERO - GET KNOW MORE (BUTTON) */
/* START */
.btn { /* TEXT GET KNOW MORE */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 220px;
    height: 50px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    color: #FCFCFD;
    transition: 300ms;
    z-index: 5;
    padding-left: 50px;
}

.btn::before { /* BG BUTTON */
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #0C428B;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    z-index: 1;
}

.btn::after { /* ARROW */
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: 3px solid #FCFCFD;
    border-right: 3px solid #FCFCFD;
    transition: 400ms;
    z-index: 3;
}

.btn span {
    position: relative;
    z-index: 5;
}

/* HOVER */
.btn:hover {
    padding-left: 20px;
}

.btn:hover::before {
    width: 80%;
}

.btn:hover::after {
    left: calc(80% - 20px);
}

.btn:active {
    scale: 0.80;
}
/* HERO - GET TO KNOW US (BUTTON) */
/* END */


/* ==================================================== */


/* ARTICLE - LEARN MORE (BUTTON) */
/* START */
.btn-article { /* TEXT LEARN MORE */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: 30px;
    text-align: left;
    text-transform: capitalize;
    background: transparent;
    color: #0F5286;
    transition: 300ms;
    z-index: 5;
    padding-left: 35px;
}

.btn-article::before { /* BG BUTTON */
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 20px;
    background-color: #0F5286;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    z-index: 1;
}

.btn-article::after { /* ARROW */
    content: "";
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 3px solid #FCFCFD;
    border-right: 3px solid #FCFCFD;
    transition: 400ms;
    z-index: 3;
}

.btn-article span {
    position: relative;
    z-index: 5;
}

/* HOVER */
.btn-article:hover {
    padding-left: 20px;
    color: #FCFCFD;
}

.btn-article:hover::before {
    width: 45%;
}

.btn-article:hover::after {
    left: calc(45% - 20px);
}

.btn-article:active {
    scale: 0.80;
}
/* ARTICLE - LEARN MORE (BUTTON) */
/* END */


/* ==================================================== */


/* OUR SERVICES - FLIP CARD HOVER */
/* START */
.flip-card-inner {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    backface-visibility: hidden;
}
.flip-card-back {
    transform: rotateY(180deg);
}

/* Desktop flip effect on hover */
@media (min-width: 1536px) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
}


/* Shared styles for all devices */
.flip-card {
    perspective: 1000px;
}


.flip-card-inner {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Flip effect class for mobile */
.flipped .flip-card-inner {
    transform: rotateY(180deg);
}
/* OUR SERVICES - FLIP CARD */
/* END */


/* ==================================================== */

