/* ==========================================================================
   ABOUT SECTION STYLING - BRAND PROMOTIONWALA
   ========================================================================== */

/* Section Padding & Background */
.about-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #FFFFFF !important;
    overflow: hidden;
}

/* Badge Luxury Styling */
.badge-luxury {
    display: inline-flex;
    align-items: center;
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-uppercase: uppercase;
}

/* Image Wrapper & Floating Badge */
.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.main-about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15) !important;
    border: 6px solid #FFFFFF;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .main-about-img {
    transform: scale(1.02);
}

/* Floating Experience Badge (12+ Years) */
.about-experience-badge {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: linear-gradient(135deg, #F97316 0%, #F59E0B 100%) !important;
    color: #0F172A !important;
    padding: 20px 28px !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.35) !important;
    z-index: 5;
    transition: transform 0.3s ease;
}

.about-experience-badge:hover {
    transform: translateY(-5px);
}

.about-experience-badge .display-5 {
    font-weight: 800;
    line-height: 1;
}

/* Content & Checkmarks */
.about-section h2 {
    color: #0F172A;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.about-section p.lead {
    font-size: 1.125rem;
    color: #475569;
    font-weight: 500;
}

.about-section p.text-muted {
    color: #64748B !important;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Primary Button Styling */
.btn-luxury-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-luxury-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
    color: #FFFFFF !important;
}

/* Responsiveness for Mobile & Tablet */
@media (max-width: 991.98px) {
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .main-about-img {
        height: 350px;
    }

    .about-experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================================================
   ABOUT SECTION - MOBILE CENTER ALIGNMENT FIX (< 991.98px)
   ========================================================================== */
@media (max-width: 991.98px) {
    
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Left Side Image & Floating Badge Centering */
    .about-image-wrapper {
        text-align: center !important;
    }

    .main-about-img {
        height: 350px;
        margin: 0 auto;
    }

    .about-experience-badge {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin: 20px auto 0 auto !important;
        display: inline-flex !important;
        width: 100%;
        max-width: 320px;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Right Side Content Centering */
    .about-section .col-lg-6:last-child {
        text-align: center !important;
        margin-top: 30px;
    }

    .about-section .badge-luxury {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .about-section h2 {
        font-size: 1.75rem !important;
        text-align: center !important;
    }

    .about-section p.lead,
    .about-section p.text-muted {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 550px;
    }

    /* Checkmarks Grid Centering */
    .about-section .row.g-3 {
        justify-content: center !important;
    }

    .about-section .row.g-3 .col-sm-6 {
        display: flex;
        justify-content: center;
    }

    .about-section .d-flex.align-items-center {
        justify-content: center !important;
        text-align: center !important;
    }

    /* Button Full Width / Centering */
    .btn-luxury-primary {
        display: inline-flex !important;
        justify-content: center !important;
        margin: 10px auto 0 auto !important;
        width: 100% !important;
        max-width: 320px;
    }
}

@media (max-width: 575.98px) {
    .main-about-img {
        height: 280px;
    }
    .about-section h2 {
        font-size: 1.5rem !important;
    }
}