  /* ===== ABOUT SECTION ===== */

.about-section {
    padding: 80px 0;
    text-align: center;
    background: #f9fbff;
     margin-top: -30px;
}

.about-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0d6efd;
}

.about-header p {
    color: #666;
    margin-bottom: 30px;
}

.about-header img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 50px;
}

/* ===== FEATURES GRID ===== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-left: 80px;
    margin-right: 80px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-box p {
    font-size: 14px;
    color: #555;
}

/* ===== Floating Buttons ===== */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn,
.call-floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}

.whatsapp-btn {
    background: #25D366;
}

.call-floating-btn {
    background: #0d6efd;
}


    /* =========================================
   MOBILE RESPONSIVE (TABLET + MOBILE)
========================================= */

@media (max-width: 992px) {

    /* About Section */
    .about-section {
        padding: 60px 20px;
    }

    .about-header h1 {
        font-size: 28px;
    }

    .about-header p {
        font-size: 15px;
        padding: 0 10px;
    }

    .about-header img {
        max-width: 100%;
        margin-bottom: 40px;
    }

    /* Features Grid - 2 Columns for Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 20px;
        margin-right: 20px;
        gap: 20px;
    }

    .feature-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {

    /* Features Grid - 1 Column for Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        margin-left: 15px;
        margin-right: 15px;
    }

    .about-header h1 {
        font-size: 24px;
    }

    .about-header p {
        font-size: 14px;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-icon {
        font-size: 32px;
    }

    /* Floating Buttons - Smaller on Mobile */
    .whatsapp-btn,
    .call-floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }
}