/* ==========================================
           ENHANCED ABOUT US STYLES
        ========================================== */
.about-hero
{
        background-image: url(../new-image/About-us-banner/1.png);
    color: #fff;
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before
{
        content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 49, 120, 0.32), rgba(3, 34, 78, 0.41));
}
.about-hero .breadcrumb-light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 14px;
    z-index: 1;
    position: relative;
}
.about-hero .breadcrumb-light a {
    color: rgba(255, 255, 255, 0.85);
}

.about-hero h1 {
    font-size: clamp(36px, 5vw, 40px);
    font-weight: 600;
    margin: 0 0 14px;
    position: relative;
}
.about-hero p {
    opacity: 1;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.about-page-wrapper {
    background-color: var(--surface);
    overflow-x: hidden;
}

/* --- 1. Hero & About Section --- */
.about-hero-section {
    padding: 80px 0 160px;
    /* background: linear-gradient(to bottom, var(--surface-container-low) 0%, var(--surface) 100%); */
    background:white;
}

.hero-grid-about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-title-lg {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 32px;
}

.about-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-points-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--on-surface);
}

.point-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-image-container {
    position: relative;
}

.hero-main-image {
    width: 100%;
    border-radius: var(--radius-md);
    /* box-shadow: var(--shadow-lg); */
}

/* Floating Certification Badge */
.cert-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary);
}

.cert-badge h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--on-surface);
}

.cert-badge span {
    font-size: 12px;
    color: var(--secondary);
}
.cert-badge .Icon-wrap
{
    color: var(--primary);
    padding: 8px;
    font-size: 18px;
    background-color: var(--primary-soft);
    border-radius: var(--radius-sm);
}

/* --- 2. Statistics Section --- */
.stats-section-grid {
    background: var(--primary);
    padding: 60px 0;
    margin: 0 20px;
    border-radius: var(--radius-xl);
    position: relative;
    top: -80px;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.stat-item-grid {
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item-grid:last-child { border-right: 0; }

.stat-number-lg {
    font-size: 42px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.stat-label-sm {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- 3. Why Choose Us Section --- */
.why-choose-section {
    padding: 0px 0 80px;
}

.section-header {
    margin-bottom: 48px;
}


.section-header p {
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

.why-card-vertical {
    /* background: #fff; */
        background: linear-gradient(45deg, #eef4f873, white, white);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-card-vertical:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-card-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s;
}

.why-card-vertical:hover::before {
    height: 100%;
}

.icon-box-primary {
    width: 56px;
    height: 56px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 12px;
}

.why-text {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.6;
}

/* --- 4. Testimonials Section --- */
.testimonial-section {
    background: white;
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
         background: rgb(239 240 247);
    padding: 32px;
    border-radius: var(--radius-md);
      border: 1px solid var(--outline-variant);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: var(--outline);
    font-size: 40px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--on-surface);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--on-surface);
}

.author-info span {
    font-size: 13px;
    color: var(--secondary);
}

.rating-stars {
    color: #FFB800;
    margin-bottom: 12px;
}

.testimonialSwiper {
    padding: 10px 10px 50px;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    height: 100%;
}
/* --- 5. CTA Banner with Background --- */
.cta-banner-section {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 background: rgb(0 49 120 / 36%);
    z-index: 1;
}

.cta-content-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.cta-content-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.btn-cta-white-outline {
    padding: 16px 40px;
    background: transparent;
    color: #fff;
      background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white-outline:hover {
      background: transparent;
    color: #fff;
}


/* Responsive */
@media (max-width: 992px) {
    .hero-grid-about { grid-template-columns: 1fr; gap: 40px; }
    .about-title-lg { font-size: 36px; }
    .stat-item-grid { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
    .stat-item-grid:last-child { border-bottom: 0; }
    .cta-content-box h2 { font-size: 32px; }
}

@media(max-width:576px) {
    .stats-section-grid {
        margin: 0;
        padding: 0;
        border-radius: 18px;
    }

    .stat-number-lg {
        font-size: 30px;
    }
    .hero-grid-about {a
   
        gap: 10px;
    }
    .about-hero-section {
        padding: 80px 0 130px;
    }
    .why-choose-section {
        margin: -35px 0 0;
        padding: 0px 0 60px;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .testimonial-section {
        padding: 60px 0;
    }
    .testimonialSwiper {
        padding: 0px;
    }
    }