/* ==========================================================================
   📱 પાવરફુલ હોમ પેજ મોબાઇલ રિસ્પોન્સિવ સેટિંગ્સ (૭૬૮px થી નાની સ્ક્રીન)
   ========================================================================== */
@media screen and (max-width: 768px) {
    
    /* ૧. ગ્લોબલ સેટિંગ્સ */
    body {
        padding-top: 14.0rem !important; /* મોબાઇલમાં હેડર મોટું થશે એટલે ટોપ સ્પેસ વધારી */
        font-size: 1.5rem !important;
        overflow-x: hidden !important; /* આડું સ્ક્રોલિંગ સજ્જડ બંધ */
    }

    /* ૨. હેડર અને લોગો રિસ્પોન્સિવ (સ્ક્રીન બહાર નહીં જાય) */
    .header-container {
        flex-direction: column !important; /* લોગો ઉપર અને બટન નીચે આવી જશે */
        gap: 12px !important;
        padding: 10px !important;
    }

    .logo {
        flex-direction: column !important; /* લોગો આઇકોન અને લખાણ એકની નીચે એક */
        gap: 5px !important;
        text-align: center !important;
    }

    .logo img {
        width: 90px !important; /* મોબાઇલમાં લોગો માપનો કર્યો */
        max-height: 50px !important;
    }

    .logo span {
        font-size: 1.8rem !important; /* લખાણ નાનું કર્યું જેથી સ્ક્રીનમાં ફિટ રહે */
        display: block !important;
    }

    header nav {
        display: flex !important;
        gap: 10px !important;
        justify-content: center !important;
        width: 100% !important;
    }

    header nav a {
        margin-left: 0 !important;
        font-size: 1.3rem !important;
        padding: 0.6rem 1.2rem !important;
    }

    /* ૩. હીરો સેક્શન સેટિંગ્સ */
    .hero-section {
        padding: 3.0rem 1.5rem !important;
        margin-bottom: 2.5rem !important;
        border-radius: 1.0rem !important;
    }

    .hero-section h1 {
        font-size: 2.2rem !important; /* હેડિંગ નાનું કર્યું */
        line-height: 1.4 !important;
    }

    .hero-section p {
        font-size: 1.5rem !important;
    }

    /* ૪. સર્વિસ સેક્શન અને ગ્રીડ (કાર્ડ એકની નીચે એક ગોઠવાશે) */
    .services-section .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 2.0rem !important;
    }

    .card-grid {
        grid-template-columns: 1fr !important; /* કમ્પ્યુટરના ૩ કાર્ડ મોબાઇલમાં ૧ થઈ જશે */
        gap: 2.0rem !important;
    }

    .card {
        padding: 2.0rem 1.5rem !important;
        border-radius: 1.0rem !important;
    }

    .card h3 {
        font-size: 1.8rem !important;
    }

    .card p {
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* ૫. ફૂટર અને પેમેન્ટ આઇકોન્સ */
    .footer-links ul {
        flex-direction: column !important; /* લિંક્સ પણ એકની નીચે એક */
        gap: 12px !important;
    }

    .payment-badges {
        gap: 8px !important;
    }

    .payment-badges img {
        width: 35px !important; /* પેમેન્ટ આઇકોન નાના અને લાઈનમાં ફિટ */
    }
}