﻿
   
    /* ===========================
   MOBILE RESPONSIVE FIXES
   =========================== */
    /* General fixes */
    img{
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* HERO SECTION */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 40px 0;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .brandr {
        font-size: 2.6rem;
        line-height: 1.2;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .hero-cta a {
            width: 100%;
            text-align: center;
        }

    .hero-media {
        width: 100%;
    }

    .card-visual img {
        width: 100%;
        height: auto;
    }
}

/* SERVICES SECTION */
@media (max-width: 768px) {
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card h3 {
        height: auto !important;
    }

    .content-wrapper {
        height: auto !important;
    }
}

/* HELPER / CTA BLOCK */
@media (max-width: 768px) {
    .helper-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .helper-grid-item {
        width: 100%;
    }
}

/* PHP / CASE STUDY SECTION */
@media (max-width: 768px) {
    .php-banner-wrapper {
        display: flex;
        flex-direction: column;
    }

    .left-section {
        display: none;
    }

    .right-section {
        width: 100%;
        padding: 25px;
    }
}

/* HIRE TEAM SECTION */
@media (max-width: 768px) {
    .hire-team-inner {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .hire-team-image img {
        width: 100%;
    }
}

/* KEY BENEFITS GRID */
@media (max-width: 768px) {
    .web-application-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .web-application-block-inner {
        height: auto !important;
    }
}

/* FAQ SECTION */
@media (max-width: 768px) {
    .faq-heading h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-body p,
    .faq-body li {
        font-size: 0.9rem;
    }
}

/* TESTIMONIAL */
@media (max-width: 768px) {
    .testimonial blockquote {
        font-size: 0.95rem;
        text-align: center;
    }
}

/* FINAL HERO (BOTTOM ONE) */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 15px;
        text-align: center;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* ===========================
   FIX: WhatsApp & Call Button Overlap (Mobile)
   =========================== */

    .whatsapp-btn {
        position: fixed;
        right: 15px;
        bottom: 80px; /* move WhatsApp UP */
        z-index: 9999;
    }

    .call-btn {
        position: fixed;
        right: 15px;
        bottom: 20px; /* keep Call button BELOW */
        z-index: 9998;
    }

    /* Mobile specific spacing */
    @media (max-width: 768px) {
        .whatsapp-btn {
            bottom: 90px;
        }

        .call-btn {
            bottom: 25px;
        }
    }
}

