
.title {
    font-size: 24px !important;
    line-height: 1.8 !important;
}

/* ---------- Hero Banner ---------- */
.hero-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

    .hero-image img {
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: top center;
    }

    .hero-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
    }

    .hero-image h1,
    .hero-image h2 {
        position: absolute;
        left: 50%;
        width: 85%;
        max-width: 900px;
        text-align: center;
        color: #fff;
        z-index: 2;
        transform: translateX(-50%);
    }

    .hero-image h1 {
        top: 49%;
        transform: translate(-50%, -50%);
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6), 0px 1px 3px rgba(0, 0, 0, 0.8);
    }

    .hero-image h2 {
        top: 62%;
        transform: translate(-50%, -50%);
        margin: 0;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.4;
        text-shadow: 0px 2px 10px rgba(0,0,0,0.6), 0px 1px 3px rgba(0,0,0,0.8);
    }

/* ---------- Medielite Intro Content ---------- */
.medielite-heading {
    text-align: center;
    margin-top: 49px;
    font-size: 41px;
}

.medielite-content {
    margin-top: 20px;
    padding: 0 20px;
    text-align: justify;
}

    .medielite-content p {
        font-size: 22px;
        line-height: 1.9;
        text-align: justify;
        margin-bottom: 20px;
    }

/* ---------- Vision / Mission Section ---------- */
.vision-section {
    padding: 33px 0;
    background: #f9f9f9;
}

    .vision-section .row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-left: 100px;
        margin-right: 100px;
    }

.vision-card {
    flex: 1 1 calc(50% - 10px);
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .vision-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .vision-card h2,
    .vision-card .vision-card-title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #413d3d;
        position: relative;
        padding-bottom: 10px;
    }

        .vision-card h2::after,
        .vision-card .vision-card-title::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 48px;
            height: 3px;
            border-radius: 2px;
        }

    .vision-card p {
        font-size: 21px;
    line-height: 1.8;
    color: #4a4646;
        margin: 0;
    }

    .vision-card .vision {
        height: 70px !important;
        width: 70px !important;
    }

#visionmission {
    margin-left: 100px !important;
    margin-right: 100px !important;
}

/* ---------- Reusable spacing utility classes (replace inline margin styles) ---------- */
.section-spacing-bottom {
    margin-bottom: 50px;
}

.section-spacing-top {
    margin-top: 50px;
}

/* ---------- Banner Why Choose ---------- */
.banner-why-choose1 {
    display: flex;
    gap: 30px;
    border-radius: 0px;
    background: var(--bg);
    padding: 16px 88px 44px;
}

    .banner-why-choose1 .bn-image {
        border-radius: 0;
        overflow: hidden;
    }

        .banner-why-choose1 .bn-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

            .banner-why-choose1 .bn-image img.bannerpsd {
                width: 100%;
                height: 696px;
                max-width: 542px;
                border-radius: 0 !important;
            }

    .banner-why-choose1 .bn-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.medielite-content1 p {
    text-align: justify;
}

.mb-12 {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
}

/* Accordion body text (replaces inline font-size/line-height/text-align) */
.fa-content {
    
        font-size: 22px;
        line-height: 1.9;
        text-align: justify;
    }

    @media (min-width: 1200px) {
        .banner-why-choose1 .bn-image {
            max-width: 554px;
        }

        .banner-why-choose1 .bn-content {
            max-width: 600px;
        }

        .banner-why-choose1 > * {
            width: 100%;
        }
    }
    /* ---------- "Why Choose Us" counter boxes ---------- */
.box-why .title {
    color: #4a4646 !important;
}

.box-why .sub {
    font-size: 20px !important;
    color: #4a4646 !important;
    line-height: 1.6;
}
    }
    /* ---------- Testimonial section heading ---------- */
    .s-desc {
        font-size: 20px !important;
        color: #4a4646 !important;
    }
    /* ---------- Scroll Reveal Animation (top to bottom) ---------- */
    .reveal-up {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.9s ease, transform 0.9s ease;
    }

        .reveal-up.active {
            opacity: 1;
            transform: translateY(0);
        }

    .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    .reveal-delay-4 {
        transition-delay: 0.4s;
    }

    .reveal-delay-5 {
        transition-delay: 0.5s;
    }

    .reveal-delay-6 {
        transition-delay: 0.6s;
    }

    .reveal-zoom {
        opacity: 0;
        transform: scale(0.92);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .reveal-zoom.active {
            opacity: 1;
            transform: scale(1);
        }

    .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

    .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

    .reveal-fade {
        opacity: 0;
        transition: opacity 0.9s ease;
    }

        .reveal-fade.active {
            opacity: 1;
        }
    /* =====================================================================
   2. LAPTOP (min-width: 992px and max-width: 1199px)
   ===================================================================== */
    @media (min-width: 992px) and (max-width: 1199px) {

        .hero-image img {
            height: 420px;
            object-position: top center;
        }

        .hero-image h1 {
            font-size: 42px;
        }

        .hero-image h2 {
            font-size: 20px;
        }

        .medielite-heading {
            font-size: 34px;
        }

        .medielite-content p {
            font-size: 19px;
        }

        .vision-section .row {
            margin-left: 40px;
            margin-right: 40px;
        }

        #visionmission {
            margin-left: 40px !important;
            margin-right: 40px !important;
        }

        .vision-card h2,
        .vision-card .vision-card-title {
            font-size: 26px;
        }

        .vision-card p {
            font-size: 18px;
        }
        /* Banner Why Choose - keeps proportions consistent between
       the tablet and desktop breakpoints */
        .banner-why-choose1 {
            padding: 16px 40px 44px;
        }

            .banner-why-choose1 .bn-image {
                max-width: 460px;
            }

                .banner-why-choose1 .bn-image img.bannerpsd {
                    height: 590px !important;
                    max-width: 100%;
                    width: 100%;
                    object-fit: cover;
                }

            .banner-why-choose1 .bn-content {
                max-width: 480px;
            }

            .banner-why-choose1 > * {
                width: 50%;
            }

        .mb-12 {
            font-size: 28px;
        }

        .fa-content {
            font-size: 17px;
        }

        .box-why .sub,
        .s-desc {
            font-size: 18px !important;
        }
    }
    /* =====================================================================
   3. TABLET (min-width: 768px and max-width: 991px)
   ===================================================================== */
    @media (min-width: 768px) and (max-width: 991px) {

        .hero-image img {
            height: 320px;
            object-fit: cover;
            object-position: top center;
        }

        .hero-image h1 {
            font-size: 36px;
        }

        .hero-image h2 {
            font-size: 16px;
        }

        .medielite-heading {
            font-size: 26px;
            margin-top: 24px;
        }

        .medielite-content {
            padding: 0 16px;
        }

            .medielite-content p {
                font-size: 18px;
                line-height: 1.7;
            }

        .vision-section .row {
            margin-left: 20px;
            margin-right: 20px;
        }

        #visionmission {
            margin-left: 20px !important;
            margin-right: 20px !important;
        }

        .vision-card {
            flex: 1 1 100%;
        }

            .vision-card h2,
            .vision-card .vision-card-title {
                font-size: 22px;
            }

            .vision-card p {
                font-size: 18px;
                margin-top: -17px;
            }

        .banner-why-choose1 {
            flex-direction: column;
            padding: 16px 24px 32px;
        }

            .banner-why-choose1 > * {
                width: 100% !important;
            }

            .banner-why-choose1 .bn-image img.bannerpsd {
                height: 500px !important;
                object-fit: contain;
                width: auto;
                max-width: 100%;
            }

        .mb-12 {
            font-size: 24px;
        }

        .fa-content {
            font-size: 18px;
            line-height: 1.7;
        }

        .box-why .sub,
        .s-desc {
            font-size: 16px !important;
        }

        .section-spacing-bottom {
            margin-bottom: 32px;
        }

        .section-spacing-top {
            margin-top: 32px;
        }
    }
    /* =====================================================================
   4. MOBILE (max-width: 767px)
   ===================================================================== */
    @media (max-width: 767px) {

        .hero-image h1 {
            font-size: 30px;
        }

        .hero-image h2 {
            font-size: 14px;
        }

        .medielite-heading {
            font-size: 22px;
            margin-top: 16px;
        }

        .medielite-content {
            padding: 0 12px;
        }

            .medielite-content p {
                font-size: 16px;
                line-height: 1.6;
                text-align: justify;
                margin-bottom: 16px;
            }

        .vision-section {
            padding: 13px 0;
        }

            .vision-section .row {
                margin-left: 12px;
                margin-right: 12px;
            }

        #visionmission {
            margin-left: 12px !important;
            margin-right: 12px !important;
        }

        .vision-card {
            flex: 1 1 100%;
            padding: 24px 20px;
        }

            .vision-card h2,
            .vision-card .vision-card-title {
                font-size: 17px;
                margin-bottom: -5px;
            }

            .vision-card p {
                font-size: 16px;
                text-align: justify;
            }

        .banner-why-choose1 {
            flex-direction: column;
            padding: 16px 16px 28px;
            gap: 20px;
        }

            .banner-why-choose1 > * {
                width: 100% !important;
            }

            .banner-why-choose1 .bn-image img.bannerpsd {
                height: 398px !important;
                object-fit: cover;
                width: auto;
                max-width: 100%;
            }

        .mb-12 {
            font-size: 20px;
        }

        .fa-content {
            font-size: 16px;
            line-height: 1.6;
        }

        .box-why .sub,
        .s-desc {
            font-size: 14px !important;
        }

        .section-spacing-bottom {
            margin-bottom: 24px;
        }

        .section-spacing-top {
            margin-top: 24px;
        }
    }
    /* ---- Small phones ---- */
    @media (max-width: 480px) {

        .hero-image img {
            height: 240px;
            object-position: top center;
        }

        .vision-card {
            padding: 20px 16px;
        }

        .banner-why-choose1 .bn-image img.bannerpsd {
            height: 425px !important;
            object-fit: cover;
            width: 379px
        }

        .mb-12 {
            font-size: 20px;
        }
        .flat-spacing {
            padding-top: 4px;
        }
    }
    /* ---- Extra small phones ---- */
    @media (max-width: 380px) {
        .vision-card .vision {
            height: 50px !important;
            width: 50px !important;
        }

        .hero-image img {
            height: 200px;
            object-position: top center;
        }

        .banner-why-choose1 .bn-image img.bannerpsd {
            height: 355px !important;
            object-fit: cover;
            width: 311px;
        }
    }
/* Default: desktop image*/
.banner1-img-desktop {
    display: block;
}

.banner1-img-Tablet {
    display: none;
}

@media (min-width: 768px) and (max-width: 992px) {
    .banner1-img-desktop {
        display: none;
    }

    .banner1-img-Tablet {
        display: block;
    }
    .banner-why-choose1 .bn-image img.bannerpsd {
        height: 300px !important;
        object-fit: contain;
        width: auto;
        max-width: 100%;
    }
    .flat-spacing {
        padding-top: 4px;
    }
}