
@font-face {
    font-family: 'inter';
    src: url(../fonts/Inter_24pt-Regular.ttf);
}

@font-face {
    font-family: 'ClashS';
    src: url(../fonts/ClashGrotesk-Semibold.ttf);
}

@font-face {
    font-family: 'ClashR';
    src: url(../fonts/ClashGrotesk-Regular.ttf);
}


body {
    background-color: #fff;
    font-family: 'inter';
}

/* Hero Badge */
.hero-badge {
    background: #ecebff;
    color: #3F4096;
    font-weight: 600;
}

.btn-btn-primary {
    color: #3F4096;
}

/* Title */
.hero-title {
    font-size: 35px;
    line-height: 40px;
    font-family: ClashR;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, #fbbf24, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
    font-family: ClashS;
}

.text-muted {
    font-size: 14px;
}

/* Stats colors */
.orange-text {
    color: #fbbf24;
}

.blue-text {
    color: #3F4096;
}

.green-text {
    color: #22c55e;
}

/* Hero illustration */
.hero-illustration {
    max-width: 400px;
}

.job-slider-section {
    padding: 60px 0;
}

/* SLIDER */
.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease-in-out;
}
/* Job Card Styling */
.job-card {
    background: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc);
    border-radius: 18px;
    color: white;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

    .job-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
    }

    .job-card button {
        border-radius: 12px;
        height: 46px;
    }
/* Arrows */
.nav-btn {
    position: absolute;
    top: 45%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #2b4fe5;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

    .nav-btn.left {
        left: -60px;
    }

    .nav-btn.right {
        right: -60px;
    }

/* Dots */
.dots {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cfd4ff;
    border-radius: 50%;
}

    .dot.active {
        width: 32px;
        background: #3b3bbf;
        border-radius: 12px;
    }

section.informationSection {
    background-image: url(../images/information-bg.svg);
    padding: 55px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
}

.informationSlider .imgWrap, .listenerBox .imgWrap {
    width: 90px;
    height: 90px;
    background: #F8F1F1;
    border-radius: 100%;
    line-height: 90px;
    text-align: center;
    margin: 0 auto 13px;
    transition: 0.3s all ease-in-out;
}

.informationSlider a:hover .imgWrap, .listenerBox:hover .imgWrap {
    background: #f9d1d1;
}

.informationSlider .imgWrap img, .listenerBox .imgWrap img {
    width: 36px;
    height: 36px;
}

.informationSlider .sw {
    text-align: center;
}

.informationSlider a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    text-align: center;
}