@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --navy: #2e357f;
    --blue: #008bd0;
    --pink: #c2367c;
    --light: #f7f8fc;
    --grey: #d3d3d3;
}

body {
    background: none;
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(360deg, var(--blue), var(--navy), var(--pink));
    border-radius: 10px;
}

/* Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: var(--navy) #f1f1f1;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #333;
}

/* ==============================
   HIREZY BRAND COLORS
================================ */
/* :root {
    --navy: #2e357f;
    --blue: #008bd0;
    --pink: #c2367c;
} */

/* ==============================
   FULLSCREEN LOADER
================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ==============================
   WIFI LOADER
================================ */
#wifi-loader {
    width: 64px;
    height: 64px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SVG COMMON */
#wifi-loader svg {
    position: absolute;
}

#wifi-loader svg circle {
    fill: none;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-100deg);
    transform-origin: center;
}

/* SIZES */
.circle-outer {
    width: 86px;
    height: 86px;
}

.circle-middle {
    width: 60px;
    height: 60px;
}

.circle-inner {
    width: 34px;
    height: 34px;
}

/* DASH ARRAYS */
.circle-outer circle {
    stroke-dasharray: 62.75 188.25;
}

.circle-middle circle {
    stroke-dasharray: 42.5 127.5;
}

.circle-inner circle {
    stroke-dasharray: 22 66;
}

/* ==============================
   STROKE ANIMATIONS
================================ */

/* OUTER */
.circle-outer .front {
    animation:
        circle-outer135 1.8s ease infinite,
        color-outer 3.6s ease-in-out infinite;
}

.circle-outer .back {
    animation:
        circle-outer135 1.8s ease infinite 0.2s,
        color-outer-back 3.6s ease-in-out infinite;
}

/* MIDDLE */
.circle-middle .front {
    animation:
        circle-middle6123 1.8s ease infinite,
        color-middle 3.6s ease-in-out infinite;
}

.circle-middle .back {
    animation:
        circle-middle6123 1.8s ease infinite 0.2s,
        color-middle-back 3.6s ease-in-out infinite;
}

/* INNER */
.circle-inner .front {
    animation:
        circle-inner162 1.8s ease infinite,
        color-inner 3.6s ease-in-out infinite;
}

.circle-inner .back {
    animation:
        circle-inner162 1.8s ease infinite 0.2s,
        color-inner-back 3.6s ease-in-out infinite;
}

#wifi-loader .text {
    position: absolute;
    bottom: -40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
}

#wifi-loader .text::before,
#wifi-loader .text::after {
    content: attr(data-text);
}

#wifi-loader .text::before {
    color: var(--navy);
}

#wifi-loader .text::after {
    color: var(--blue);
    position: absolute;
    left: 0;
    animation: text-animation 3.6s ease infinite;
}

@keyframes circle-outer135 {
    0% {
        stroke-dashoffset: 25;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 301;
    }

    100% {
        stroke-dashoffset: 276;
    }
}

@keyframes circle-middle6123 {
    0% {
        stroke-dashoffset: 17;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 204;
    }

    100% {
        stroke-dashoffset: 187;
    }
}

@keyframes circle-inner162 {
    0% {
        stroke-dashoffset: 9;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 106;
    }

    100% {
        stroke-dashoffset: 97;
    }
}

/* COLOR ANIMATIONS */
@keyframes color-outer {

    0%,
    100% {
        stroke: var(--blue);
    }

    50% {
        stroke: var(--blue);
    }
}

@keyframes color-outer-back {

    0%,
    100% {
        stroke: var(--grey);
    }

    50% {
        stroke: var(--grey);
    }
}

@keyframes color-middle {

    0%,
    100% {
        stroke: var(--navy);
    }

    50% {
        stroke: var(--navy);
    }
}

@keyframes color-middle-back {

    0%,
    100% {
        stroke: var(--grey);
    }

    50% {
        stroke: var(--grey);
    }
}

@keyframes color-inner {

    0%,
    100% {
        stroke: var(--pink);
    }

    50% {
        stroke: var(--pink);
    }
}

@keyframes color-inner-back {

    0%,
    100% {
        stroke: var(--grey);
    }

    50% {
        stroke: var(--grey);
    }
}

@keyframes text-animation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    50% {
        clip-path: inset(0);
    }

    100% {
        clip-path: inset(0 0 0 100%);
    }
}



/* HEADER */
header {
    background: #ffffff;
    padding: 14px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

nav a {
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: var(--pink);
}

/* HERO */
.hero {
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
    padding: 70px 8%;
    text-align: center;
}

.hero h1 {
    font-size: 44px;
    color: var(--navy);
}

.hero h1 span {
    color: var(--pink);
}

.hero h2 {
    font-size: 22px;
    margin: 12px 0;
    font-weight: 500;
}

.hero p {
    font-size: 18px;
    max-width: 900px;
    margin: 18px auto;
}

.hero-buttons a {
    display: inline-block;
    margin: 12px 10px 0;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: var(--pink);
    color: #fff;
}

.btn-secondary {
    background: var(--navy);
    color: #fff;
}

/* SECTIONS */
/* section {
    padding: 60px 8%;
} */
.hirezy-hero {
    /* background: linear-gradient(to right, #113b9a, #3f97f5); */
    position: relative;
    color: white;
    /* background: url(../assets/curvlines.svg), linear-gradient(to right, #113b9a, #3f97f5); */
    background: linear-gradient(90deg, #113B9B 0%, #2367CB 50%, #46A3FC 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    p {
        color: #ffffff;
    }
}

.border-bottom {
    border-bottom: 1px solid #e2e8f0 !important;
    border-radius: 1rem;
}

.border-top {
    border-bottom: 1px solid #e2e8f0 !important;
}

@media (min-width: 768px) {
    .border-bottom-md-0 {
        border-bottom: 0 !important;
    }
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }
}



.border-bottom {
    border-bottom: 1px solid #e2e8f0 !important;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.process-icon {
    font-size: 1.6rem;
    color: inherit;
}

.display-4 {
    /* font-size: 44px; */
    font-size: clamp(30px, 4vw, 44px);
}

.hero-btn-group .btn {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-find {
    /* background: linear-gradient(135deg, #43a047, #2e7d32); */
    background: #f17e1e;
    text-align: center;

    width: max-content;

    i {
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &:hover {
        background: white;
        color: #f17e1e;
        font-weight: 600;

        i {
            transform: translateX(6px);
        }
    }
}

.btn-post {
    /* background: linear-gradient(135deg, #6a5acd, #4b3db8); */
    background: #2b3479;
    width: max-content;

    i {
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &:hover {
        background: #ffffff;
        color: #2b3479;
        font-weight: 600;

        i {
            transform: translateX(6px);
        }
    }
}

.btn-refer {
    /* background: linear-gradient(135deg, #ff9800, #f57c00); */
    background: #c53481;
    width: max-content;

    i {
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &:hover {
        background: #ffffff;
        color: #c53481;
        font-weight: 600;

        i {
            transform: translateX(6px);
        }
    }
}

.refer {
    color: #c53481;
}

.post {
    color: #2b3479;
}

.find {
    /* color: #139a74; */
    /* color: #008dd2; */
    color: #f17e1e !important;
}

.hero-btn-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.start-10 {
    left: 10% !important;
}

.bottom-10 {
    bottom: 20% !important;
}

.hero-img-text {
    font-size: 12px;
}

.hero-btn {
    border-radius: 32px;
    font-size: 1rem;
}

.hero-btn:first-child {
    background: #c53481;
    border-color: #c53481;

    &:hover {
        background: #fff;
        color: #c53481;
    }
}

.hero-btn:nth-child(2) {
    border-color: #2b3479;
    color: #2b3479;

    &:hover {
        background: #2b3479;
        color: #fff;
    }
}

.hero-btn:nth-child(3) {
    border-color: #2b3479;
    color: #2b3479;

    &:hover {
        background: #2b3479;
        color: #fff;
    }
}

.stats {
    text-align: center;
}

.stats i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
}

.stats h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.animate-marquee {
    animation: marquee 30s linear infinite !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.card-border-primary {
    border: 1px solid #0000;
    transition: transform .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out, box-shadow .2s ease-in-out;
}

#recruitment-services .card {
    box-shadow: 0 1px 3px #11182717;
    text-decoration: none;
    color: black;
    height: 100%;

    font-family: "Inter",
        system-ui,
        sans-serif;

    i {
        font-size: 26px;
    }

    &:hover {
        border-color: #754ffe;
        box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d !important;
        transform: translateY(-.25rem);
    }

    h3 {
        color: #1e293b;
        font-size: 1.25rem;
        font-weight: 600;
    }

    span {
        color: #64748b;
    }
}

.bg-light-primary {
    opacity: 1;
    background-color: #ede9fe !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.animate-marquee img {
    max-height: 100px;
    object-fit: contain;
}

.card-lift.active,
.card-lift:focus,
.card-lift:hover {
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d !important;
    transform: translateY(-.25rem);
}

.for-whom {
    transform: translateY(-10rem);
}


.for-whom .row {
    display: flex;
}

.for-whom [class*="col-"] {
    display: flex;
}

.info-card {
    flex: 1;
}

.card1-border,
.card2-border,
.card3-border {
    display: flex;
}

/* .card {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
} */

/* .card i {
    font-size: 46px;
    color: var(--pink);
    margin-bottom: 18px;
} */

.info-card {
    background: #fff;
    /* padding: 30px 25px; */
    padding: 12px 20px;
    /* border-radius: 1rem; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;

    a {
        color: white;
    }
}

.info-card p {
    min-height: 64px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 0.5rem
}

.card1-border,
.card2-border,
.card3-border {
    height: 100% !important;
}

.card1-border .info-card {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border: 2px solid #e2e8f0
}

.card2-border .info-card {
    border-radius: 0;
    border: 2px solid #e2e8f0;
    border-right: 0;
    border-left: 0;
}

#about {
    margin-top: -5rem
}

.card3-border .info-card {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border: 2px solid #e2e8f0
}

.info-card img {
    /* max-height: 160px; */
    max-height: 90px;
    /* margin: 0 auto 0px; */
    margin-top: 10px;
}

.info-card .title {
    font-weight: 700;
    margin-bottom: 0;
}

.info-card p {
    font-size: 14px;
}

@media (max-width: 576px) {
    .info-card {
        padding: 20px;
    }

    .info-card img {
        max-height: 130px;
    }
}


/* STATS */
.stats {
    /* background: #2c2f7f; */
    /* background: url(assets/line-pattern.svg),
        linear-gradient(180deg, #9b58ff, #8837ff 47.92%, #7a20ff); */
    background: url(../assets/line-pattern.svg),
        linear-gradient(89deg, #4603a9, #017ebc 47.92%, #5e04e3);
    /* background: linear-gradient(180deg, #9b58ff, #8837ff 47.92%, #7a20ff); */
    color: #fff;
    text-align: center;
    padding: 24px 0;

    h2 {
        font-size: 36px;
        margin-top: 10px;
        color: #ffffff;
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stats i {
    font-size: 28px;
    margin-bottom: 10px;
}

.center {
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    position: relative;
}

.process-step span {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 40px;
    font-weight: 700;
    color: #e5e7eb;
}






.flip-card {
    width: 100%;
    /* height: 220px; */
    height: 160px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    /* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.15); */
    box-shadow: inset 1px 1px 8px rgba(0, 0, 0, 0.15);
    padding: 20px;
    text-align: center;
}

.flip-card-back {
    p {
        font-weight: 600;
    }
}

.flip-card-front {
    /* border: 1px solid #008dd2; */
    background-color: white;
    /* color: #c53481; */

    i {
        margin-bottom: 1rem;
        font-size: 2rem;
        color: var(--blue);
        /* color: var(--navy); */
    }
}

.flip-card-back {
    background: linear-gradient(90deg, #008dd2bd, #c53481ba);
    color: #fff;
    transform: rotateY(180deg);
}

a {
    text-decoration: none;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.flip-card-front h5 {
    font-family: "Inter",
        system-ui,
        sans-serif;
    font-weight: 600;
}

.bg-pattern:after {
    background-image: url(../assets/pattern-white.svg);
    background-position: top;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    left: 0;
    -webkit-mask-image: linear-gradient(0deg, transparent 55%, #000 75%);
    mask-image: linear-gradient(0deg, transparent 55%, #000 75%);
    opacity: .3;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10 !important;
}

.bg-primary-gradient {
    /* background: linear-gradient(180deg, #9b58ff, #8837ff 47.92%, #7a20ff); */
    background: linear-gradient(89deg, #4603a9, #017ebc 47.92%, #5e04e3);
    border-radius: 1rem;

    a {
        z-index: 11 !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.bg-pattern {
    position: relative;
    color: white;
}

.contact-btn {
    background: #2b3479;
    border-radius: 1rem;
    color: white;
    padding-inline: 1rem;

    &:hover {
        /* background: #c2367c;
        color: white; */
        border-color: white;
        border: 1.5px solid #fff;
    }
}

.contact-us-bg h3 {
    font-weight: 700;
    letter-spacing: -.03em;
}

.btn-scroll-top {
    background: #fff;
    border-radius: 10px;
    bottom: 1.5rem;
    box-shadow: inset 0 0 0 .1rem rgba(227, 229, 233, .25);
    opacity: 0;
    position: fixed;
    right: 1.5rem;
    transform: translateY(.75rem);
    transition: all .2s linear, margin-right 0s;
    visibility: hidden;
    z-index: 1010;
}

.btn-scroll-top:after {
    color: #008dd2;
    content: "\f145";
    font-family: bootstrap-icons !important;
    font-size: 2rem;
    left: 0;
    line-height: 3rem;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all .2s linear;
    z-index: 1;
}

.subtext {
    /* background: linear-gradient(132deg, #ee2c3c, #c5135d, #6a11b0); */
    background: #c53481;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    background: #c534814a;
    color: #c53481;
    /* background: #ede9fe; */
    /* color: #754ffe; */
    letter-spacing: 3px;
    font-size: 1rem;
}

.btn-scroll-top svg.progress-square path {
    stroke: var(--blue);
    stroke-width: 2;
    box-sizing: border-box;
    transition: all .2s linear;
}

.btn-scroll-top svg path {
    fill: none;
}

.progress-square path {
    fill: none;
    stroke: #ff6b3d;
    stroke-width: 2;
}

.btn-scroll-top,
.btn-scroll-top:after {
    cursor: pointer;
    display: block;
    height: 3rem;
    width: 3rem;
}

.btn-scroll-top.active-progress {
    transform: translateY(0);
    visibility: visible;
}

@media (min-width: 320px) {
    .btn-scroll-top.active-progress {
        opacity: 1;
    }
}

.why {
    padding: 2rem 0;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card i {
    color: var(--primary);
    margin-right: 8px;
}

/* CONTACT */
/* .contact {
    max-width: 1100px;
    margin: auto;
} */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    font-size: 16px;

    i {
        color: #2b3479;
        margin-right: 0.5rem;
    }
}

.contact-info p {
    margin-bottom: 12px;
}

.contact form {
    display: grid;
    gap: 18px;
}

.contact input,
.contact textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact button {
    width: max-content;
    padding: 14px 40px;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    i {
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &:hover {
        background: var(--navy);

        i {
            transform: translateX(6px);
        }
    }
}

/* SOCIAL ICONS */
/* .social-icons {
    margin-top: 20px;
} */

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 22px;
    color: var(--navy);
}

.social-icons a:hover {
    color: var(--pink);
}

/* CONTACT LINKS */
.contact-links {
    margin-top: 25px;
}

.contact-links a {
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp {
    background: #25d366;
    color: #fff;

    &:hover {
        background: var(--navy);
        color: white;

        i {
            animation: whatsapp-shake 0.6s ease-in-out;
        }
    }
}

@keyframes whatsapp-shake {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-3px);
    }

    40% {
        transform: translateY(3px);
    }

    60% {
        transform: translateY(-2px);
    }

    80% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(0);
    }
}

.phone {
    background: #2e357f;
    color: #fff !important;

    i {
        color: #fff !important;
        transform-origin: 50% 20%;
    }
}

.phone:hover i {
    animation: phone-shake 0.6s ease-in-out;
}

@keyframes phone-shake {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-12deg);
    }

    40% {
        transform: rotate(12deg);
    }

    60% {
        transform: rotate(-8deg);
    }

    80% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.social-icons a i {
    color: var(--pink)
}

.bg-img {
    background: url(../assets/curvlines.svg), linear-gradient(to right, #113b9a);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-img2 {
    background: url(../assets/curvlines.svg), radial-gradient(circle at 50% 50%, #06b46d, #08d79b);
    /* background: url(../assets/curvlines.svg), linear-gradient(to right, #06b46d); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb-area {
    margin-top: 60px;
}

.map iframe {
    width: 100% !important;
    border-radius: 1rem
}

.breadcrumb-wrap {
    /* padding: 135px 0 60px; */
    padding: 25px 0 25px;
    text-align: center;
}

.breadcrumb-title {
    color: #fff;
    font-size: 39px;
    line-height: 1;
    font-weight: 800;
    /* margin-bottom: 20px; */
    /* padding-top: 40px; */
}

.breadcrumb-wrap .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item {
    line-height: 1;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    margin-top: 2px;
    text-transform: capitalize;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    color: #ffffff;
}

ul li {
    list-style: none;
}

.float-whatsapp {
    position: fixed;
    /* bottom: 20px; */
    bottom: 85px;
    right: 7px;
    background: #25d366;
    color: #fff;
    padding: 16px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 999;

    &:hover {
        color: #25d366;
        background: #ffffff;
        border: 1px solid #25d366;
    }
}

.float-phone {
    position: fixed;
    /* bottom: 85px; */
    bottom: 20px;
    right: 7px;
    background: #2e357f;
    color: #fff;
    padding: 16px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 999;

    &:hover {
        color: #2e357f;
        background: #ffffff;
        border: 1px solid #2e357f;
    }
}

/* RESPONSIVE */
@media(max-width:900px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding-inline: 1rem
    }
}

@media(max-width:992px) {
    .hero-btn-group {
        justify-content: center !important;
    }

    .info-card p {
        min-height: 106px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        /* align-items: flex-start; */
        align-items: center;
    }

    .hero-content {
        text-align: center;
    }

    .hirezy-hero {
        padding-top: 4.5rem !important;
    }
}



.timeline {
    position: relative;
    /* max-width: 900px; */
    margin: auto;
    /* padding: 40px 0; */
    padding: 8px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    top: 75px;
    bottom: 75px;
    width: 2px;
    background: #c53481;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    /* padding: 20px 40px; */
    padding: 4px 40px;
}

.timeline-item.left {
    left: 0;
    text-align: left;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    /* top: 30px; */
    top: 50px;
    right: -24px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    background: #c53481;
    color: #fff;
    /* font-weight: 700; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-item.right .timeline-dot {
    left: -24px;
    right: auto;
}

.timeline-card {
    background: #fff;
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 0.25rem;
    align-items: center;

    img {
        height: 100px;
    }
}

.timeline-card h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-card p {
    margin: 0;
    color: #6b7280;
}

@media (max-width: 992px) {
    .timeline::before {
        left: 22px;
    }

    .timeline::before {
        left: 24px;
        top: 65px;
        bottom: 80px;
    }

    .timeline-item,
    .timeline-item.right {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 20px;
        padding-top: 1rem
    }

    .timeline-dot {
        left: 0;
        right: auto;
    }

    .timeline-item.right .timeline-dot {
        left: 0;
        right: auto;
    }
}

@media (max-width:768px) {
    .card1-border .info-card {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
        border-bottom-left-radius: 0rem;
        border: 2px solid #e2e8f0;
    }

    .card2-border .info-card {
        border-radius: 0;
        border: 2px solid #e2e8f0;
        border-top: 0;
        border-bottom: 0;
    }

    .card3-border .info-card {
        border-top-right-radius: 0rem;
        border-bottom-right-radius: 1rem;
        border-bottom-left-radius: 1rem;
        border: 2px solid #e2e8f0;
    }

    /* .display-4 {
        font-size: clamp(30px, 4vw, 44px);
    } */

}

@media (max-width: 576px) {
    .timeline-card {
        flex-direction: column;
        text-align: start;
    }

    .timeline-card img {
        margin-bottom: 12px;
    }

    .timeline::before {
        left: 24px;
        top: 65px;
        bottom: 155px;
    }
}

@media (max-width: 400px) {
    .timeline::before {
        left: 24px;
        top: 65px;
        bottom: 225px;
    }

    .hirezy-hero img {
        max-width: 100% !important;
    }
}

@media (max-width:300px) {
    .hirezy-hero img {
        max-width: 100% !important;
    }

    img {
        max-width: 100% !important;
        width: 100%
    }
}