















/* =========================================
   HERO RESPONSIVE
========================================= */

@media(max-width:991px){

    .hero-wrapper{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-content p{

        margin:auto auto 35px;
    }

    .hero-buttons,
    .hero-stats{

        justify-content:center;
    }

    .hero-content h1{
text-align: start;
        font-size:52px;
    }

    .hero-image{

        margin-top:50px;
    }
    /* IMAGE */

.hero-image img{

        border-radius:10%;

}

}

@media(max-width:768px){

    .hero-section{

        padding:
        150px 0 80px;
    }

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{
text-align: start;
        font-size:16px;
    }

    .hero-circle{

        width:350px;
        height:350px;
    }

}

@media(max-width:480px){

    .hero-content h1{

        font-size: 24px;
                text-align: start;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .hero-stats{

        gap:25px;
    }

    .stat-box h2{

        font-size:32px;
    }

}













/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 992px) {
    .about-wrapper {
        gap: 60px;
    }
    
    .section-header h2 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .subtext {
        text-align: start;
        font-size: 17px;
    }

    /* Stack vertically on tablet & mobile */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    /* Center the image */
    .about-image-wrapper {
        justify-content: center;
    }

    .about-image-wrapper img {
        max-width: 420px;
    }

    /* Values grid - 2 columns on tablet */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 80px 0;
    }

    .section-header h2 {
        text-align: start;
        font-size: 34px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    /* Values grid becomes 1 column on mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .value-card {
        padding: 22px 18px;
    }

    /* Adjust floating badges for small screens */
    .floating-badge {
        font-size: 13px;
        padding: 12px 18px;
        transform: scale(0.85);
    }

    .badge-1 {
        top: 10%;
        left: -10px;
    }

    .badge-2 {
        bottom: 15%;
        right: -10px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-image-wrapper img {
        max-width: 100%;
        border-radius: 20px;
    }
}