.company-hero {
    background: #000;
    padding: 80px 0px 60px;
    text-align: center;
}

/* Gradient Text */
.company-title {
    font-size: 42px;
    line-height: 64px;
    font-weight: 700;
    color: white;
}

.company-title-next {
    color: brown;
}

.why-section {
    background: #132f4c;
    padding: 80px 0;
    color: #fff;
}

/* Left */
.why-title {
    font-size: 42px;
    font-weight: 700;
}

.why-sub {
    margin-top: 10px;
    color: #ccc;
}

/* Cards */
.why-card {
    background: #f2f2f2;
    color: #000;
    padding: 40px 20px;
    border-radius: 20px;
    position: relative;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #ff6a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: -60px auto 15px;
}

/* Right Form */
.quote-box {
    padding: 20px;
}

.quote-title {
    margin-bottom: 20px;
    font-weight: 700;
}

/* Inputs */
.quote-box input,
.quote-box select,
.quote-box textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    background: #1e3c5a;
    color: #fff;
    border-radius: 5px;
}

.quote-box textarea {
    height: 120px;
}

/* Button */
.quote-box button {
    background: #ff6a00;
    border: none;
    padding: 12px 25px;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
}

/* whatsapp icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* we use technologies */
/* SECTION */
.partners-section {
    background: #f8f9fa;
}

/* TITLE */
.partners-title {
    font-size: 34px;
    font-weight: 700;
}

.partners-subtitle {
    color: #666;
    margin-top: 8px;
}

/* SLIDER CONTAINER */
.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* TRACK */
.partners-track {
    display: flex;
    width: max-content;
    animation: scroll 85s linear infinite;
}

/* LOGO */
.partner-logo {
    width: 180px;
    height: 100px;
    margin: 0 20px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

/* IMAGE */
.partner-logo img {
    max-width: 130px;
    max-height: 80px;
    object-fit: contain;
    transition: 0.3s;
}

/* HOVER EFFECT */
.partner-logo:hover img {
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   LARGE DEVICES (≤1199px)
========================= */
@media (max-width: 1199px) {

    .company-title {
        font-size: 36px;
        line-height: 52px;
    }

    .why-title {
        font-size: 36px;
    }

    .why-card {
        padding: 30px 15px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-top: -50px;
    }
}


/* =========================
   TABLETS (≤991px)
========================= */
@media (max-width: 991px) {

    .company-hero {
        padding: 60px 20px;
    }

    .company-title {
        font-size: 30px;
        line-height: 44px;
    }

    .quote-box {
        margin-top: 40px;
    }

    .why-section {
        padding: 60px 0;
    }

    .why-title {
        text-align: center;
    }

    .why-sub {
        text-align: center;
    }
}


/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {

    .company-title {
        font-size: 24px;
        line-height: 36px;
    }

    .why-title {
        font-size: 26px;
    }

    .why-section {
        padding: 50px 0;
    }

    .why-card {
        padding: 25px 15px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 20px;
        margin-top: -45px;
    }

    .quote-box input,
    .quote-box select,
    .quote-box textarea {
        padding: 10px;
        font-size: 14px;
    }

    .quote-box button {
        width: 100%;
        padding: 10px;
    }
}


/* =========================
   SMALL MOBILE (≤576px)
========================= */
@media (max-width: 576px) {

    .company-hero {
        padding: 40px 10px;
    }

    .company-title {
        font-size: 20px;
        line-height: 30px;
    }

    .why-section {
        padding: 40px 0;
    }

    .why-title {
        font-size: 22px;
    }

    .why-sub {
        font-size: 14px;
    }

    .why-card {
        padding: 20px 10px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .quote-box {
        padding: 15px;
    }

    .quote-title {
        font-size: 18px;
    }
}