@import 'tailwind.css';

:root {
    --e-global-color-primary: #FFFFFF;
    --e-global-color-secondary: #1B181D;
    --e-global-color-text: #4178F2;
    --e-global-color-accent: #445168;
    --e-global-color-851b690: #93B0C8;
    --e-global-color-1b964e5: #EA0D80;
    --e-global-color-ab0485b: #F3F7FB;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    background-color: #1B181D;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== About Title ===== */
.about-title-section {
    padding: 80px 20px;
    background: #1b181d;
}

.about-title-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    margin: 50px 0 0 0;
    text-align: center;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;

    color: #fff;
    line-height: 1.2;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4178F2;
    border-radius: 3px;
}


/* ===== HERO IMAGE ===== */
.hero-image {
    width: 100%;
    padding-top: 80px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 500px;
    margin-top: 0;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.intro-section h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 40px;
    color: #FFFFFF;
    max-width: 900px;
    letter-spacing: 0px;
    margin: 0 auto;
    text-transform: none;
}

/* ===== FEATURE CARDS ===== */
.features-section {
    max-width: 1200px;
    margin: 0 auto -80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.feature-card-bg {
    height: 245px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-card-bg::before {
    content: "";
    position: absolute;
    inset: 0;
}

.feature-card-icon {
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.feature-card-icon svg {
    width: 34px;
    height: 34px;
}

.feature-card-content {
    padding: 70px 30px 35px;
}

.feature-card-content h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: #ea0d80;
    margin-bottom: 22px;
    font-family: 'Roboto Condensed', sans-serif;
}

.feature-card-content p {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: #1d1a1d;
    padding: 180px 20px 90px;
    text-align: center;
}

.why-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ===== WHY CARDS ===== */
.why-cards {
    background: #1d1a1d;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 120px;
}

.why-card {
    text-align: center;
    color: #fff;
}

.why-card-icon {
    font-size: 40px;
    margin-bottom: 30px;
    color: #fff;
}

.why-card h3 {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.why-card:nth-child(1) h3 {
    color: #00a6ff;
}

.why-card:nth-child(2) h3 {
    color: #ff0f92;
}

.why-card:nth-child(3) h3 {
    color: #ffe600;
}

.why-card:nth-child(4) h3 {
    color: #00d95d;
}

.why-card p {
    font-size: 15px;
    font-weight: 400;
    width: 180px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}
/* ===== BADGES ===== */
.badges-section {
    background: #fff;
    padding: 80px 20px;
}

.badges-container {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.badge-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* First logo */
.fabricant img {
    width: 100%;
    height: auto;
}

/* Second logo */
.frenchfab img {
    width: 100%;
    height: auto;
}

.badge-item img {
    transition: transform .3s ease;
}

.badge-item img:hover {
    transform: scale(1.05);
}
/* ===== CTA SECTION ===== */
.cta-section {
    background: #4178F2;
    padding: 70px 0;
    border-top: 1px solid #eeeeee;
}

.cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cta-desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    color: #ffffff;
    line-height: 1;
}

.cta-btn-wrap {
    text-align: right;
}

.btn-filled {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #ffffff;
    background: #4178F2;
    padding: 16px 36px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    cursor: pointer;
}

.btn-filled:hover {
    background: #fff;
    color: #4178F2;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-section {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .badges-section {
        gap: 30px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1B181D;
        flex-direction: column;
        padding: 20px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        color: #FFFFFF;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }

    .nav a.active {
        background-color: #EA0D80;
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn-cta {
        display: none;
    }

    .hero-image img {
        margin-top: -15%;
    }
}

@media(max-width:992px) {

    .features-section {
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }

    .why-section {
        padding-top: 80px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .why-cards {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .badges-section {
        flex-direction: column;
        gap: 20px;
    }

    .intro-section {
        padding: 40px 16px;
    }

    .why-section h2 {
        font-size: 38px;
    }

    .team-section h2,
    .cta-section h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .feature-card-content h3 {
        font-size: 24px;
    }

    .about-title-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 36px;
    }

    .hero-image img {
        margin-top: -15%;
    }

    .badges-container{
        gap:50px;
    }

    .badges-container img{
        max-height:110px;
    }
}


@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .hero-image img {
        margin-top: -15%;
    }
}

::selection {
    background: #4178F2;
    color: #FFFFFF;
}

::-moz-selection {
    background: #4178F2;
    color: #FFFFFF;
}