.company-hero {
    background: #000;
    padding: 120px 0px 60px;
    text-align: center;
}

/* Gradient Text */
.company-title {
    font-size: 100px;
    font-weight: 800;
    background: linear-gradient(90deg, #1550d9, #b02424, #1a58b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

/* Description */
.company-text {
    max-width: 650px;
    margin: 0 auto;
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .company-title {
        font-size: 50px;
    }

    .company-text {
        font-size: 16px;
        padding: 0 10px;
    }
}

.about-hero {
    background: #000;
    padding: 140px 0px;
    position: relative;
    overflow: hidden;
}

/* TEXT ON TOP */
.hero-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 70px;
    color: #fff;
    font-weight: 700;
}

/* IMAGES */
.side-img {
    position: absolute;
    top: 50%;
    width: 300px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
    /* initially ABOVE text */
}

.side-img img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
}

/* positions */
.left-img {
    left: 15%;
}

.right-img {
    right: 15%;
}

/* when scroll happens → go behind */
.scrolled .side-img {
    z-index: 1;
    opacity: 0.9;
}

/* ===============================
   1199px (Laptop)
================================ */
@media (max-width: 1199px) {

    .company-title {
        font-size: 70px;
    }

    .company-text {
        font-size: 16px;
    }

    .about-title {
        font-size: 50px;
    }

    .side-img {
        width: 240px;
    }

    .side-img img {
        width: 240px;
        height: 340px;
    }

    .left-img {
        left: 8%;
    }

    .right-img {
        right: 8%;
    }
}

/* ===============================
   992px (Tablet)
================================ */
@media (max-width: 992px) {

    .company-title {
        font-size: 55px;
    }

    .about-title {
        font-size: 42px;
    }

    .about-hero {
        padding: 100px 0;
    }

    /* Move images slightly inward */
    .left-img {
        left: 5%;
    }

    .right-img {
        right: 5%;
    }

    .side-img img {
        width: 200px;
        height: 300px;
    }
}

/* ===============================
   768px (Mobile Large)
================================ */
@media (max-width: 768px) {

    .company-hero {
        padding: 80px 0 40px;
    }

    .company-title {
        font-size: 40px;
    }

    .company-text {
        font-size: 15px;
    }

    .about-title {
        font-size: 34px;
    }

    .about-hero {
        padding: 30px 0;
    }

    /* 🔥 IMPORTANT: Hide side images */
    .side-img {
        display: none;
    }

    .breadcrumb-text {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* ===============================
   576px (Small Mobile)
================================ */
@media (max-width: 576px) {

    .company-title {
        font-size: 32px;
    }

    .company-text {
        font-size: 14px;
    }

    .about-title {
        font-size: 28px;
    }

    .breadcrumb-text {
        font-size: 13px;
    }

    .about-hero {
        padding: 20px 0;
    }

    .btn {
        font-size: 13px;
        padding: 6px 14px;
    }
}