
:root {
    --primary: #243d8f;
    --secondary: #f90;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #212529bf;
    --border: #e2e8f0;
}
.about-container {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}
.section-badge {
    display: inline-block;
    /* background: rgba(20, 19, 16, 0.15); */
    color: #1a2a4a;
    border: 2px solid #ffbf00;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 15px;
}
.about-hero {
    position: relative;
    background:
        linear-gradient(rgba(15, 23, 42, .75), rgba(15, 23, 42, .8)),
        url('../image/nri.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 110px;
    overflow: hidden;
}

/* .about-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 153, 0, .12);
    border-radius: 50%;
    top: -220px;
    right: -180px;
} */

.about-hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -150px;
    left: -120px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
}
.section-desc {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
}

.list li .link {
    color: #fff;
}

.hero-title span {
    color: var(--secondary);
}

.hero-desc {
    color: rgba(255, 255, 255, .88);
    line-height: 1.4;
    margin-bottom: 35px;
        padding-right: 125px;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s ease;
}

.hero-btn-primary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 15px 40px rgba(255, 153, 0, .35);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    color: #fff;
}

.hero-btn-outline {
    border: 1px solid rgb(255 253 255);
    color: #fff;
    background: green;
    backdrop-filter: blur(10px);
}
.hero-btn-outline:hover {
    transform: translateY(-4px);
}

.hero-features {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-feature {
      display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eeeeee42;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    backdrop-filter: blur(8px);
}

.la-about-section{
    padding:80px 0;
    background:#f8fafc;
}
.la-values-section{
    padding:80px 0;
}
.la-about-wrapper{
    display:grid;
    grid-template-columns:1.3fr 0.7fr;
    gap:50px;
    align-items:start;
}

.la-title{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    color:#0f172a;
    font-weight:700;
}

.la-title span{
    color:#f90;
}

.la-desc{
    font-size:16px;
    line-height:1.9;
    color:#475569;
    margin-bottom:22px;
}

.la-about-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.la-stat-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    border:1px solid #e2e8f0;
    box-shadow:0 12px 30px rgba(15,23,42,0.05);
    transition:0.3s ease;
}

.la-stat-card:hover{
    transform:translateY(-5px);
}

.la-stat-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:rgba(255,153,0,0.12);
    color:#f90;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.section-title span {
    color: var(--secondary);
}
.la-stat-card h3{
    font-size:36px;
    color:#0f172a;
    margin-bottom:10px;
    font-weight:700;
}

.la-stat-card p{
    color:#64748b;
    margin:0;
    line-height:1.7;
}

.la-values-wrapper{
    margin-top:100px;
}

.la-values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.la-value-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    transition:0.3s ease;
}

.la-value-card:hover{
    transform:translateY(-6px);
    border-color:#f90;
}

.la-value-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:rgba(255,153,0,0.12);
    color:#f90;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.la-value-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#0f172a;
}

.la-value-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
}

.la-cta-box{
    background:linear-gradient(135deg, var(--primary), #132862);
    border-radius:32px;
    padding:55px;
    position:relative;
    overflow:hidden;
}



.la-cta-content{
    position:relative;
    z-index:2;
    display:block;
    align-items:center;
    justify-content:space-between;
    gap:40px;
        text-align: center;
}

.la-cta-label{
    display:inline-block;
    color:#f90;
    font-size:31px;
    font-weight:600;
    letter-spacing:0.5px;
    margin-bottom:15px;
}


.la-cta-text p{
   color: rgba(255, 255, 255, .85);
    font-size: 19px;
    line-height: 1.9;
    margin: auto auto 0px;
}

.la-cta-btns{
    display:flex;
    flex-direction:column;
    gap:15px;
    min-width:260px;
}

@media(max-width:991px){

    .la-about-wrapper,
    .la-values-grid{
        grid-template-columns:1fr;
    }

    .la-cta-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .la-cta-btns{
        width:100%;
    }

    .la-title{
        font-size:38px;
    }

}

@media(max-width:767px){

    .la-about-section{
        padding:60px 0;
    }

    .la-values-grid{
        grid-template-columns:1fr;
    }

    .la-cta-box{
        padding:35px 25px;
        margin-top:70px;
    }

    .la-title{
        font-size:30px;
    }

    .la-cta-text h3{
        font-size:28px;
    }

}


.service-cta {
    position: relative;
    background: #fff;
    border-radius: 40px;
    padding: 80px;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-cta h2 {
font-size: 46px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-cta p {
    color: #000;
    font-size: 19px;
    line-height: 1.9;
    max-width: 850px;
    margin: auto auto 35px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.service-cta h2 span{
    color: var(--secondary);
}
/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:1199px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 52px;
    }

}

@media(max-width:991px) {

    .docs-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-title {
        font-size: 44px;
    }

}

@media(max-width:767px) {

    .service-section {
        padding: 70px 0;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-btns,
    .cta-btns {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .service-card,
    .docs-card {
        padding: 28px;
    }

    .service-cta {
        padding: 60px 0px;
    }

    .service-cta h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 17px;
        padding: 24px;
    }

}


@media only screen and (max-width: 767px) {
 .about-hero {
    padding: 80px 0px;
}
.hero-desc {
    padding-right: 0px;
        margin-bottom: 0px;
}
.about-container {
        padding: 0 20px;
        box-shadow: unset;
    }
    .la-stat-card h3 {
    font-size: 28px;
}
.la-values-section {
    padding: 60px 0;
}
.la-value-card {
    padding: 25px;
    text-align: center;
            background: #f7f9fb;
}
.la-value-icon {
    display: inline-flex;
}
    .la-cta-box {
        padding: 35px 25px;
        margin-top: 0px;
    }
    .la-cta-label
 {
    line-height: 42px;
    font-size: 29px;
}
   
}