
/* ========================================= */
/* ANSI TRUST BAR */
/* ========================================= */

.ansiTrustBar {

    width: 100%;

    background: #ffffff;

    font-family: "Poppins", sans-serif;

    border-bottom: 1px solid #edf1f5;

    box-shadow: 0 4px 14px rgba(15, 35, 60, .05);

    position: relative;

    z-index: 5;
}


/* Container */

.ansiTrustContainer {

    max-width: 1250px;

    margin: auto;

    padding: 0 18px;
}


/* Grid */

.ansiTrustGrid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    min-height: 78px;
}


/* ========================================= */
/* ITEM */
/* ========================================= */

.ansiTrustItem {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    position: relative;

    padding: 10px 15px;
}


/* Vertical Divider */

.ansiTrustItem:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    top: 20px;

    width: 1px;

    height: 38px;

    background: #e8edf3;
}


/* ========================================= */
/* ICON */
/* ========================================= */

.ansiTrustIcon {

    width: 39px;

    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #edf5ff,
        #e5f8ff
    );

    color: #0b6efd;

    font-size: 15px;

    border: 1px solid #e2edfa;

    transition: .25s ease;
}

.ansiTrustItem:hover .ansiTrustIcon {

    background: #0b6efd;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ========================================= */
/* TEXT */
/* ========================================= */

.ansiTrustText {

    display: flex;

    flex-direction: column;

    gap: 1px;
}

.ansiTrustText strong {

    color: #172334;

    font-size: 17px;

    line-height: 17px;

    font-weight: 700;
}

.ansiTrustText span {

    color: #7a8796;

    font-size: 9px;

    line-height: 14px;

    font-weight: 400;
}


/* ========================================= */
/* TABLET */
/* ========================================= */

@media (max-width: 900px) {

    .ansiTrustGrid {

        min-height: 70px;
    }

    .ansiTrustItem {

        gap: 8px;

        padding: 8px;
    }

    .ansiTrustIcon {

        width: 35px;

        height: 35px;

        font-size: 13px;

        border-radius: 8px;
    }

    .ansiTrustText strong {

        font-size: 10.5px;
    }

    .ansiTrustText span {

        font-size: 8px;
    }

    .ansiTrustItem:not(:last-child)::after {

        top: 17px;

        height: 36px;
    }
}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 600px) {

    .ansiTrustContainer {

        padding: 0 10px;
    }

    .ansiTrustGrid {

        grid-template-columns:
            repeat(2, 1fr);

        min-height: auto;
    }

    .ansiTrustItem {

        justify-content: flex-start;

        padding: 10px 8px;

        min-height: 58px;
    }


    /* Horizontal divider */

    .ansiTrustItem:nth-child(1),
    .ansiTrustItem:nth-child(2) {

        border-bottom: 1px solid #edf1f5;
    }


    /* Remove desktop dividers */

    .ansiTrustItem::after {

        display: none !important;
    }

    .ansiTrustIcon {

        width: 34px;

        height: 34px;

        font-size: 12px;
    }

    .ansiTrustText strong {

        font-size: 10px;
    }

    .ansiTrustText span {

        font-size: 7.5px;
    }
}


/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media (max-width: 380px) {

    .ansiTrustItem {

        gap: 7px;

        padding: 9px 5px;
    }

    .ansiTrustIcon {

        width: 31px;

        height: 31px;

        font-size: 11px;
    }

    .ansiTrustText strong {

        font-size: 9px;
    }

    .ansiTrustText span {

        font-size: 7px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    box-sizing:border-box;
}


/* ================= MAIN ================= */

.ansiColorMarquee{
    width:100%;
    height:48px;
    display:flex;
    align-items:stretch;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
    background:#063b8f;
    box-shadow:0 5px 18px rgba(6,59,143,.18);
}


/* ================= LEFT BRAND ================= */

.ansiColorMarquee-brand{
    flex:0 0 270px;
    position:relative;
    z-index:5;

    display:flex;
    align-items:center;
    gap:11px;

    padding:0 22px;

    background:linear-gradient(
        135deg,
        #063b8f 0%,
        #0b6efd 58%,
        #00a6d6 100%
    );

    border-right:3px solid #ffb703;

    box-shadow:8px 0 20px rgba(0,0,0,.12);
}


/* Yellow Icon */

.ansiColorMarquee-brand-icon{
    width:39px;
    height:39px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#ffb703;
    color:#063b8f;

    font-size:17px;

    box-shadow:0 4px 12px rgba(255,183,3,.30);
}


/* Brand Text */

.ansiColorMarquee-brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.15;
}

.ansiColorMarquee-brand-text strong{
    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:.2px;
}

.ansiColorMarquee-brand-text span{
    margin-top:3px;
    color:#dff7ff;
    font-size:8.5px;
    font-weight:600;
    letter-spacing:1.3px;
}


/* ================= RIGHT CONTENT ================= */

.ansiColorMarquee-content{
    flex:1;
    min-width:0;
    overflow:hidden;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            90deg,
            rgba(0,166,214,.18),
            rgba(255,255,255,.05)
        );
}


/* Moving Track */

.ansiColorMarquee-track{
    width:max-content;
    display:flex;
    align-items:center;

    animation:ansiColorMove 27s linear infinite;
    will-change:transform;
}

.ansiColorMarquee-content:hover .ansiColorMarquee-track{
    animation-play-state:paused;
}


/* Items */

.ansiColorMarquee-item{
    display:flex;
    align-items:center;
    gap:8px;

    padding:0 22px;

    color:#fff;
    font-size:12px;
    font-weight:600;

    white-space:nowrap;
}

.ansiColorMarquee-item i{
    color:#ffb703;
    font-size:13px;
}


/* Separator */

.ansiColorMarquee-separator{
    color:#ffb703;
    font-size:14px;
    opacity:.95;
}


/* ================= ANIMATION ================= */

@keyframes ansiColorMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}


/* ================= TABLET ================= */

@media(max-width:900px){

    .ansiColorMarquee{
        height:58px;
    }

    .ansiColorMarquee-brand{
        flex:0 0 220px;
        padding:0 15px;
    }

    .ansiColorMarquee-brand-icon{
        width:34px;
        height:34px;
        font-size:14px;
    }

    .ansiColorMarquee-brand-text strong{
        font-size:13px;
    }

    .ansiColorMarquee-brand-text span{
        font-size:7.5px;
    }

    .ansiColorMarquee-item{
        padding:0 16px;
        font-size:11px;
    }

}


/* ================= MOBILE ================= */

@media(max-width:600px){

    .ansiColorMarquee{
        height:32px;
    }

    .ansiColorMarquee-brand{
        flex:0 0 165px;
        padding:0 10px;
        gap:7px;
    }

    .ansiColorMarquee-brand-icon{
        width:30px;
        height:30px;
        border-radius:8px;
        font-size:12px;
    }

    .ansiColorMarquee-brand-text strong{
        font-size:11px;
    }

    .ansiColorMarquee-brand-text span{
        font-size:6.5px;
        letter-spacing:.8px;
    }

    .ansiColorMarquee-item{
        padding:0 12px;
        font-size:9.5px;
    }

    .ansiColorMarquee-item i{
        font-size:10px;
    }

    .ansiColorMarquee-separator{
        font-size:11px;
    }

    .ansiColorMarquee-track{
        animation-duration:21s;
    }

}

.ansiColorMarquee{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    z-index:99999;
}


/* ================= SMALL MOBILE ================= */

@media(max-width:380px){

    .ansiColorMarquee-brand{
        flex:0 0 145px;
    }

    .ansiColorMarquee-brand-icon{
        display:none;
    }

    .ansiColorMarquee-brand-text strong{
        font-size:10px;
    }

    .ansiColorMarquee-brand-text span{
        font-size:6px;
    }

}@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');


/* ================= MAIN ================= */

.ansiAbout{
    width:100%;
    padding:55px 20px;
    background:#f8fbff;
    font-family:'Poppins',sans-serif;
    overflow:hidden;
}

.ansiAbout-container{
    max-width:1180px;
    margin:auto;

    display:grid;
    grid-template-columns:44% 56%;
    align-items:center;
    gap:45px;
}


/* ================= LEFT IMAGE ================= */

.ansiAbout-left{
    position:relative;
}

.ansiAbout-image-box{
    position:relative;
    width:100%;
    max-width:490px;
    margin:auto;
}

.ansiAbout-image-box img{
    width:100%;
    /*height:390px;*/
    display:block;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(6,59,143,.15);
}


/* Experience Card */

.ansiAbout-experience{
    position:absolute;
    left:-18px;
    bottom:25px;

    display:flex;
    align-items:center;
    gap:9px;

    padding:13px 17px;
    background:#fff;
    border-radius:12px;

    box-shadow:0 10px 28px rgba(0,0,0,.13);
    border-left:4px solid #ffb703;
}

.ansiAbout-experience strong{
    color:#063b8f;
    font-size:25px;
    font-weight:800;
    line-height:1;
}

.ansiAbout-experience span{
    color:#596579;
    font-size:10px;
    font-weight:600;
    line-height:1.35;
}


/* Image Tag */

.ansiAbout-image-tag{
    position:absolute;
    right:-14px;
    top:20px;

    display:flex;
    align-items:center;
    gap:8px;

    padding:9px 13px;
    border-radius:8px;

    background:#063b8f;
    color:#fff;

    font-size:10px;
    font-weight:600;

    box-shadow:0 7px 20px rgba(6,59,143,.22);
}

.ansiAbout-image-tag i{
    color:#ffb703;
}


/* ================= RIGHT CONTENT ================= */

.ansiAbout-small-title{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#0b6efd;
    font-size:15px;
    font-weight:700;
    letter-spacing:1.3px;
}

.ansiAbout-small-title i{
    color:#ffb703;
    font-size:7px;
}


.ansiAbout-heading h2{
    margin:9px 0 8px;

    color:#102a43;
    font-size:31px;
    line-height:1.2;
    font-weight:800;
}

.ansiAbout-heading h2 span{
    color:#0b6efd;
}


.ansiAbout-line{
    width:55px;
    height:4px;
    border-radius:10px;
    background:linear-gradient(90deg,#ffb703,#00a6d6);
    margin-bottom:15px;
}


/* Paragraph */

.ansiAbout-text{
    margin:0 0 11px;
    color:#617083;
    font-size:12.5px;
    line-height:1.8;
}


/* ================= FEATURES ================= */

.ansiAbout-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 15px;
    margin-top:16px;
}

.ansiAbout-feature{
    display:flex;
    align-items:center;
    gap:10px;
    padding:9px 8px;

    background:#fff;
    border:1px solid #e8eef6;
    border-radius:9px;

    transition:.25s ease;
}

.ansiAbout-feature:hover{
    border-color:#b9d7ff;
    transform:translateY(-2px);
}


.ansiAbout-feature-icon{
    width:34px;
    height:34px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;

    background:#fff6d9;
    color:#0b6efd;
    font-size:13px;
}

.ansiAbout-feature-icon i{
    color:#0b6efd;
}


.ansiAbout-feature strong{
    display:block;
    color:#17324d;
    font-size:10.5px;
    font-weight:700;
}

.ansiAbout-feature span{
    display:block;
    margin-top:2px;
    color:#8995a5;
    font-size:8.5px;
}


/* ================= BUTTONS ================= */

.ansiAbout-buttons{
    display:flex;
    align-items:center;
    gap:11px;
    margin-top:18px;
}

.ansiAbout-btn,
.ansiAbout-call{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:10px 17px;
    border-radius:7px;

    text-decoration:none;
    font-size:11px;
    font-weight:600;
}


.ansiAbout-btn{
    color:#fff;
    background:linear-gradient(135deg,#063b8f,#0b6efd);
    box-shadow:0 7px 16px rgba(11,110,253,.20);
}

.ansiAbout-btn i{
    color:#ffb703;
}


.ansiAbout-call{
    color:#063b8f;
    background:#fff;
    border:1px solid #dce6f2;
}

.ansiAbout-call i{
    color:#ffb703;
}


/* ================= TABLET ================= */

@media(max-width:900px){

    .ansiAbout{
        padding:45px 18px;
    }

    .ansiAbout-container{
        grid-template-columns:1fr;
        gap:30px;
        max-width:720px;
    }

    .ansiAbout-image-box{
        max-width:600px;
    }

    .ansiAbout-image-box img{
        height:340px;
    }

    .ansiAbout-right{
        text-align:left;
    }

}


/* ================= MOBILE ================= */

@media(max-width:600px){

    .ansiAbout{
        padding:35px 14px;
    }

    .ansiAbout-container{
        gap:24px;
    }

    .ansiAbout-image-box img{
        height:150px;
        border-radius:13px;
    }

    .ansiAbout-experience{
        left:8px;
        bottom:12px;
        padding:9px 12px;
    }

    .ansiAbout-experience strong{
        font-size:20px;
    }

    .ansiAbout-experience span{
        font-size:8px;
    }

    .ansiAbout-image-tag{
        right:7px;
        top:10px;
        padding:7px 9px;
        font-size:8px;
    }

    .ansiAbout-heading h2{
        font-size:24px;
    }

    .ansiAbout-text{
        font-size:11px;
        line-height:1.7;
    }

    .ansiAbout-features{
        gap:8px;
    }

    .ansiAbout-feature{
        padding:8px 6px;
    }

    .ansiAbout-feature strong{
        font-size:9px;
    }

    .ansiAbout-feature span{
        font-size:7.5px;
    }

    .ansiAbout-buttons{
        margin-top:14px;
    }

    .ansiAbout-btn,
    .ansiAbout-call{
        padding:9px 12px;
        font-size:10px;
    }

}


/* ================= SMALL MOBILE ================= */

@media(max-width:400px){

    .ansiAbout-features{
        grid-template-columns:1fr;
    }

    .ansiAbout-feature{
        padding:8px 10px;
    }

    .ansiAbout-buttons{
        flex-wrap:wrap;
    }

}
/* =========================================
   PREMIUM WHY CHOOSE US
========================================= */

.premium-why-section {
    padding: 85px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(11,110,253,0.07), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255,183,3,0.08), transparent 30%),
        #f7f9fc;
    overflow: hidden;
}

.premium-why-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* HEADING */

.premium-why-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.premium-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e5eaf0;
    color: #0b6efd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(16,24,40,0.05);
}

.premium-why-badge i {
    color: #ffb703;
}

.premium-why-heading h2 {
    margin: 16px 0 12px;
    color: #101828;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 850;
}

.premium-why-heading h2 span {
    color: #0b6efd;
}

.premium-why-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}


/* MAIN ROW */

.premium-why-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 25px;
    align-items: stretch;
}


/* LEFT INTRO */

.premium-why-intro {
    position: relative;
    padding: 42px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(145deg, #081a33, #0b2f62);
    box-shadow: 0 25px 60px rgba(11,110,253,0.16);
}

.premium-why-glow {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    right: -100px;
    top: -100px;
    background: rgba(255,183,3,0.16);
    filter: blur(5px);
}

.premium-why-mini-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #ffb703;
    color: #101828;
    font-size: 23px;
    margin-bottom: 25px;
    box-shadow: 0 12px 30px rgba(255,183,3,0.25);
}

.premium-why-small-title {
    color: #ffb703;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.premium-why-intro h3 {
    margin: 12px 0 18px;
    color: #fff;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.premium-why-intro h3 strong {
    display: block;
    color: #ffb703;
}

.premium-why-intro > p {
    margin: 0 0 25px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.8;
}


/* CHECK LIST */

.premium-why-check {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.premium-why-check div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.premium-why-check i {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffb703;
    color: #101828;
    font-size: 10px;
}


/* BOTTOM */

.premium-why-bottom {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.premium-why-bottom i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b6efd;
    color: #fff;
}


/* RIGHT CARDS */

.premium-why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.premium-why-card {
    position: relative;
    display: flex;
    gap: 17px;
    padding: 27px 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7ecf2;
    box-shadow: 0 10px 30px rgba(16,24,40,0.05);
    transition: all 0.3s ease;
}

.premium-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 0 5px 5px 0;
    background: #ffb703;
}

.premium-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11,110,253,0.25);
    box-shadow: 0 18px 40px rgba(11,110,253,0.12);
}

.premium-why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4cc;
    color: #0b6efd;
    font-size: 21px;
}

.premium-why-icon.blue-icon {
    background: #eaf3ff;
    color: #0b6efd;
}

.premium-why-number {
    display: block;
    margin-bottom: 4px;
    color: #ffb703;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.premium-why-card h4 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 17px;
    font-weight: 800;
}

.premium-why-card p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .premium-why-section {
        padding: 65px 0;
    }

    .premium-why-row {
        grid-template-columns: 1fr;
    }

    .premium-why-intro {
        padding: 35px;
    }

    .premium-why-heading h2 {
        font-size: 36px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .premium-why-section {
        padding: 50px 0;
    }

    .premium-why-container {
        width: 92%;
    }

    .premium-why-heading {
        margin-bottom: 30px;
    }

    .premium-why-heading h2 {
        font-size: 29px;
    }

    .premium-why-heading p {
        font-size: 14px;
    }

    .premium-why-intro {
        padding: 27px 22px;
        border-radius: 18px;
    }

    .premium-why-intro h3 {
        font-size: 27px;
    }

    .premium-why-cards {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .premium-why-card {
        padding: 20px 17px;
    }

    .premium-why-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }
}
/* ==========================================
   ANSI PREMIUM SERVICES
========================================== */

.ansi-services-section {
    padding: 85px 0;
    background:
        radial-gradient(circle at 5% 10%, rgba(11,110,253,0.06), transparent 28%),
        radial-gradient(circle at 95% 90%, rgba(255,183,3,0.08), transparent 28%),
        #f7f9fc;
    overflow: hidden;
}

.ansi-services-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* HEADING */

.ansi-services-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.ansi-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e5eaf0;
    color: #0b6efd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    box-shadow: 0 5px 20px rgba(16,24,40,0.05);
}

.ansi-services-badge i {
    color: #ffb703;
}

.ansi-services-heading h2 {
    margin: 15px 0 12px;
    color: #101828;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 850;
}

.ansi-services-heading h2 span {
    color: #0b6efd;
}

.ansi-services-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}


/* SERVICES GRID */

.ansi-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* CARD */

.ansi-service-card {
    background: #fff;
    border: 1px solid #e7ecf2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16,24,40,0.05);
    transition: all 0.35s ease;
}

.ansi-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(11,110,253,0.25);
    box-shadow: 0 20px 45px rgba(11,110,253,0.13);
}


/* IMAGE */

.ansi-service-image {
    height: 205px;
    position: relative;
    overflow: hidden;
}

.ansi-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ansi-service-card:hover .ansi-service-image img {
    transform: scale(1.07);
}

.ansi-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,18,38,0.65),
        rgba(5,18,38,0.02) 65%
    );
}


/* NUMBER */

.ansi-service-number {
    position: absolute;
    z-index: 2;
    top: 14px;
    display: none !important;
    left: 14px;
    min-width: 40px;
    height: 30px;
    padding: 0 10px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffb703;
    color: #101828;
    font-size: 11px;
    font-weight: 900;
}


/* ICON */

.ansi-service-icon {
    position: absolute;
    z-index: 3;
    bottom: -1px;
    left: 20px;
    width: 52px;
    height: 52px;
    border-radius: 14px 14px 0 0;
    background: #0b6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 -5px 20px rgba(11,110,253,0.2);
}


/* CONTENT */

.ansi-service-content {
    padding: 25px 22px 23px;
}

.ansi-service-content h3 {
    margin: 0 0 9px;
    color: #101828;
    font-size: 19px;
    font-weight: 800;
}

.ansi-service-content p {
    margin: 0 0 18px;
    color: #667085;
    font-size: 13px;
    line-height: 1.7;
}

.ansi-service-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0b6efd;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ansi-service-content a i {
    color: #ffb703;
    transition: transform 0.3s ease;
}

.ansi-service-card:hover .ansi-service-content a i {
    transform: translateX(5px);
}


/* BOTTOM CTA */

.ansi-services-bottom {
    margin-top: 28px;
    padding: 20px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e7ecf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(16,24,40,0.04);
}

.ansi-services-bottom strong {
    display: block;
    color: #101828;
    font-size: 16px;
    margin-bottom: 4px;
}

.ansi-services-bottom span {
    color: #667085;
    font-size: 13px;
}

.ansi-services-bottom a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 19px;
    border-radius: 9px;
    background: #0b6efd;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(11,110,253,0.2);
}

.ansi-services-bottom a i {
    color: #ffb703;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ansi-services-section {
        padding: 65px 0;
    }

    .ansi-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ansi-services-heading h2 {
        font-size: 36px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .ansi-services-section {
        padding: 50px 0;
    }

    .ansi-services-container {
        width: 92%;
    }

    .ansi-services-heading {
        margin-bottom: 30px;
    }

    .ansi-services-heading h2 {
        font-size: 29px;
    }

    .ansi-services-heading p {
        font-size: 14px;
    }

    .ansi-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ansi-service-image {
        height: 210px;
    }

    .ansi-service-content {
        padding: 22px 18px;
    }

    .ansi-services-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 19px;
    }

    .ansi-services-bottom a {
        width: 100%;
        justify-content: center;
    }
}
/* ================================
   ANSI WORK PROCESS
================================ */

.ansi-process-section {
    padding: 70px 0;
    background: #f7faff;
    position: relative;
    overflow: hidden;
}

.ansi-process-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.ansi-process-heading span {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0b6efd;
    margin-bottom: 8px;
}

.ansi-process-heading h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: #101828;
}

.ansi-process-heading h2 strong {
    color: #0b6efd;
}

.ansi-process-heading p {
    margin: 12px auto 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

/* Grid */

.ansi-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Card */

.ansi-process-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e6edf7;
    border-radius: 16px;
    padding: 30px 25px 27px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(11, 110, 253, 0.06);
    overflow: hidden;
    transition: all .3s ease;
}

.ansi-process-card:hover {
    transform: translateY(-6px);
    border-color: #ffb703;
    box-shadow: 0 15px 35px rgba(11, 110, 253, 0.12);
}

/* Number */

.ansi-process-number {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 38px;
    font-weight: 900;
    color: rgba(11, 110, 253, 0.07);
    line-height: 1;
}

/* Icon */

.ansi-process-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #0b6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(11, 110, 253, 0.22);
}

.ansi-process-card:nth-child(even) .ansi-process-icon {
    background: #ffb703;
    color: #101828;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.22);
}

/* Content */

.ansi-process-card h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 19px;
    font-weight: 800;
}

.ansi-process-card p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

/* Bottom Line */

.ansi-process-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background: #ffb703;
    border-radius: 10px 10px 0 0;
}

/* Tablet */

@media (max-width: 991px) {
    .ansi-process-section {
        padding: 55px 0;
    }

    .ansi-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ansi-process-heading h2 {
        font-size: 32px;
    }
}

/* Mobile */

@media (max-width: 575px) {
    .ansi-process-section {
        padding: 45px 15px;
    }

    .ansi-process-heading {
        margin-bottom: 30px;
    }

    .ansi-process-heading h2 {
        font-size: 27px;
    }

    .ansi-process-heading p {
        font-size: 14px;
    }

    .ansi-process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ansi-process-card {
        padding: 25px 20px;
    }

    .ansi-process-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
}/* ================================
   ANSI MISSION & VISION
================================ */

.ansi-mv-section {
    padding: 70px 0;
    background: #f7faff;
    position: relative;
    overflow: hidden;
}

.ansi-mv-heading {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.ansi-mv-heading span {
    display: inline-block;
    color: #0b6efd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ansi-mv-heading h2 {
    margin: 0;
    color: #101828;
    font-size: 38px;
    font-weight: 800;
}

.ansi-mv-heading h2 strong {
    color: #0b6efd;
}

.ansi-mv-heading p {
    margin: 12px auto 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

/* Wrapper */

.ansi-mv-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Cards */

.ansi-mv-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid #e4ebf5;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 110, 253, 0.07);
    transition: .3s ease;
}

.ansi-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(11, 110, 253, 0.13);
}

/* Left Accent */

.ansi-mv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #0b6efd;
}

.ansi-mv-vision::before {
    background: #ffb703;
}

/* Icon */

.ansi-mv-icon {
    min-width: 64px;
    width: 64px;
    height: 64px;
    border-radius: 15px;
    background: #0b6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 8px 20px rgba(11, 110, 253, .20);
}

.ansi-mv-vision .ansi-mv-icon {
    background: #ffb703;
    color: #101828;
    box-shadow: 0 8px 20px rgba(255, 183, 3, .22);
}

/* Content */

.ansi-mv-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #0b6efd;
    margin-bottom: 5px;
}

.ansi-mv-vision .ansi-mv-label {
    color: #d39400;
}

.ansi-mv-content h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 21px;
    font-weight: 800;
}

.ansi-mv-content p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
}

/* Mobile */

@media (max-width: 767px) {
    .ansi-mv-section {
        padding: 50px 15px;
    }

    .ansi-mv-heading {
        margin-bottom: 30px;
    }

    .ansi-mv-heading h2 {
        font-size: 30px;
    }

    .ansi-mv-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ansi-mv-card {
        padding: 25px 20px;
        gap: 16px;
    }

    .ansi-mv-icon {
        min-width: 55px;
        width: 55px;
        height: 55px;
        font-size: 21px;
        border-radius: 13px;
    }

    .ansi-mv-content h3 {
        font-size: 18px;
    }

    .ansi-mv-content p {
        font-size: 13.5px;
    }
}

@media (max-width: 450px) {
    .ansi-mv-card {
        display: block;
    }

    .ansi-mv-icon {
        margin-bottom: 15px;
    }
}/* =================================
   ANSI ALL INDIA BRANCHES
================================= */

.ansi-branch-section {
    padding: 70px 0;
    background: #ffffff;
}

.ansi-branch-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.ansi-branch-heading span {
    display: inline-block;
    color: #0b6efd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ansi-branch-heading h2 {
    margin: 0;
    color: #101828;
    font-size: 38px;
    font-weight: 800;
}

.ansi-branch-heading h2 strong {
    color: #0b6efd;
}

.ansi-branch-heading p {
    margin: 12px auto 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

/* Branch Grid */

.ansi-branch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.ansi-branch-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 15px;
    background: #f8fbff;
    border: 1px solid #e5edf8;
    border-radius: 11px;
    transition: .3s ease;
}

.ansi-branch-card:hover {
    background: #0b6efd;
    border-color: #0b6efd;
    transform: translateY(-3px);
}

.ansi-branch-card i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffb703;
    color: #101828;
    border-radius: 9px;
    font-size: 15px;
}

.ansi-branch-card h3 {
    margin: 0 0 2px;
    color: #101828;
    font-size: 15px;
    font-weight: 800;
}

.ansi-branch-card p {
    margin: 0;
    color: #7a8699;
    font-size: 12px;
}

.ansi-branch-card:hover h3,
.ansi-branch-card:hover p {
    color: #ffffff;
}

/* Bottom CTA */

.ansi-branch-bottom {
    margin-top: 28px;
    padding: 17px 20px;
    background: #101828;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ansi-branch-bottom div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.ansi-branch-bottom div i {
    color: #ffb703;
    font-size: 20px;
}

.ansi-branch-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #ffb703;
    color: #101828;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

/* Tablet */

@media (max-width: 1100px) {
    .ansi-branch-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */

@media (max-width: 767px) {
    .ansi-branch-section {
        padding: 50px 15px;
    }

    .ansi-branch-heading {
        margin-bottom: 30px;
    }

    .ansi-branch-heading h2 {
        font-size: 30px;
    }

    .ansi-branch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ansi-branch-card {
        padding: 13px 10px;
        gap: 8px;
    }

    .ansi-branch-card i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 13px;
    }

    .ansi-branch-card h3 {
        font-size: 13px;
    }

    .ansi-branch-card p {
        font-size: 10px;
    }

    .ansi-branch-bottom {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .ansi-branch-bottom div {
        justify-content: center;
    }

    .ansi-branch-bottom a {
        justify-content: center;
    }
}/* =================================
   ANSI FAQ SECTION
================================= */

.ansi-faq-section {
    padding: 70px 0;
    background: #f7faff;
}

.ansi-faq-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.ansi-faq-heading span {
    display: inline-block;
    color: #0b6efd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ansi-faq-heading h2 {
    margin: 0;
    color: #101828;
    font-size: 38px;
    font-weight: 800;
}

.ansi-faq-heading h2 strong {
    color: #0b6efd;
}

.ansi-faq-heading p {
    margin: 12px auto 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

/* FAQ Wrapper */

.ansi-faq-wrapper {
    max-width: 900px;
    margin: auto;
}

/* FAQ Item */

.ansi-faq-item {
    background: #ffffff;
    margin-bottom: 12px;
    border: 1px solid #e4ebf5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(11, 110, 253, .045);
}

.ansi-faq-item summary {
    min-height: 65px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    color: #101828;
    font-size: 15px;
    font-weight: 750;
}

.ansi-faq-item summary::-webkit-details-marker {
    display: none;
}

.ansi-faq-item summary i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffb703;
    color: #101828;
    border-radius: 7px;
    font-size: 12px;
    transition: .25s ease;
}

.ansi-faq-item[open] {
    border-color: #d8e5f8;
}

.ansi-faq-item[open] summary {
    color: #0b6efd;
}

.ansi-faq-item[open] summary i {
    transform: rotate(45deg);
    background: #0b6efd;
    color: #ffffff;
}

/* Answer */

.ansi-faq-answer {
    padding: 0 22px 20px;
}

.ansi-faq-answer p {
    margin: 0;
    padding: 15px 18px;
    background: #f7faff;
    border-left: 3px solid #ffb703;
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
}

/* CTA */

.ansi-faq-cta {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 22px 25px;
    background: #101828;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ansi-faq-cta small {
    color: #ffb703;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ansi-faq-cta h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.ansi-faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #ffb703;
    color: #101828;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

/* Mobile */

@media (max-width: 767px) {

    .ansi-faq-section {
        padding: 50px 15px;
    }

    .ansi-faq-heading {
        margin-bottom: 30px;
    }

    .ansi-faq-heading h2 {
        font-size: 29px;
    }

    .ansi-faq-heading p {
        font-size: 14px;
    }

    .ansi-faq-item {
        margin-bottom: 10px;
    }

    .ansi-faq-item summary {
        min-height: 60px;
        padding: 15px;
        font-size: 14px;
    }

    .ansi-faq-answer {
        padding: 0 15px 15px;
    }

    .ansi-faq-answer p {
        padding: 13px 14px;
        font-size: 13px;
    }

    .ansi-faq-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px;
    }

    .ansi-faq-cta a {
        justify-content: center;
    }
}/* =====================================
   ANSI ABOUT BREADCRUMB
===================================== */

.ansi-about-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(11,110,253,.25), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(255,183,3,.13), transparent 28%),
        linear-gradient(135deg, #07152c, #0b1f3a 55%, #061225);
}

/* Subtle Background Pattern */

.ansi-about-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(30deg, #ffffff 1px, transparent 1px),
        linear-gradient(150deg, #ffffff 1px, transparent 1px);
    background-size: 50px 50px;
}

.ansi-breadcrumb-overlay {
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255,183,3,.10);
    filter: blur(20px);
}

/* Content */

.ansi-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ansi-breadcrumb-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    padding: 7px 13px;
    border: 1px solid rgba(255,183,3,.35);
    border-radius: 30px;
    background: rgba(255,183,3,.08);
    color: #ffb703;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
}

.ansi-breadcrumb-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: 850;
    line-height: 1.2;
}

.ansi-breadcrumb-nav {
    margin-top: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
}

.ansi-breadcrumb-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d0d5dd;
    text-decoration: none;
    transition: .25s ease;
}

.ansi-breadcrumb-nav a i {
    color: #ffb703;
    font-size: 12px;
}

.ansi-breadcrumb-nav a:hover {
    color: #ffffff;
}

.ansi-breadcrumb-arrow {
    color: #0b6efd;
    font-size: 9px;
}

.ansi-breadcrumb-nav span {
    color: #ffb703;
    font-weight: 700;
}

/* Mobile */

@media (max-width: 575px) {

    .ansi-about-breadcrumb {
        padding: 42px 15px;
    }

    .ansi-breadcrumb-content h1 {
        font-size: 30px;
    }

    .ansi-breadcrumb-tag {
        font-size: 10px;
        padding: 6px 11px;
    }

    .ansi-breadcrumb-nav {
        font-size: 12px;
        margin-top: 10px;
    }
}.ansi-household-service {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background: #f7faff;
}

.ansi-household-service::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -190px;
    top: 80px;
    border-radius: 50%;
    background: rgba(11,110,253,.05);
}

.ansi-household-service::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: 40px;
    border-radius: 50%;
    background: rgba(255,183,3,.08);
}

.ansi-household-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 55px;
    align-items: center;
}


/* LEFT CONTENT */
.ansi-household-content {
    position: relative;
}

.ansi-household-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(11,110,253,.14);
    color: #0b6efd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 8px 25px rgba(11,110,253,.07);
}

.ansi-household-tag i {
    color: #ffb703;
}

.ansi-household-content h2 {
    margin: 18px 0 15px;
    color: #101828;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 850;
}

.ansi-household-content h2 span {
    display: block;
    color: #0b6efd;
}

.ansi-household-intro {
    font-size: 16px !important;
    font-weight: 500;
    color: #344054 !important;
}

.ansi-household-content p {
    margin: 0 0 12px;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}


/* FEATURES */
.ansi-household-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.ansi-household-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(16,24,40,.04);
}

.ansi-household-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(11,110,253,.09);
    color: #0b6efd;
    font-size: 17px;
}

.ansi-household-feature:nth-child(even) .ansi-household-icon {
    background: rgba(255,183,3,.15);
    color: #d89500;
}

.ansi-household-feature h4 {
    margin: 0 0 3px;
    color: #101828;
    font-size: 13px;
    font-weight: 800;
}

.ansi-household-feature p {
    margin: 0;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.4;
}


/* BUTTONS */
.ansi-household-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.ansi-household-btn-primary,
.ansi-household-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 19px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.ansi-household-btn-primary {
    background: #0b6efd;
    color: #fff;
    box-shadow: 0 10px 25px rgba(11,110,253,.20);
}

.ansi-household-btn-primary:hover {
    background: #095dcc;
    color: #fff;
    transform: translateY(-2px);
}

.ansi-household-btn-call {
    background: #ffb703;
    color: #101828;
}

.ansi-household-btn-call:hover {
    background: #e6a400;
    color: #101828;
}


/* RIGHT VISUAL */
.ansi-household-visual {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ansi-household-image-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 485px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(16,24,40,.16);
}

.ansi-household-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ansi-household-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,20,45,.88) 0%,
        rgba(5,20,45,.15) 48%,
        transparent 75%
    );
}

.ansi-household-image-text {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #fff;
}

.ansi-household-image-text span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 20px;
    background: #ffb703;
    color: #101828;
    font-size: 10px;
    font-weight: 800;
}

.ansi-household-image-text h3 {
    margin: 11px 0 5px;
    font-size: 25px;
    font-weight: 850;
}

.ansi-household-image-text p {
    margin: 0;
    color: #d9e2f0;
    font-size: 12px;
    line-height: 1.6;
}


/* FLOATING CARD */
.ansi-household-info-card {
    position: absolute;
    z-index: 4;
    left: -25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 270px;
    padding: 13px 16px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(16,24,40,.15);
    border-left: 4px solid #ffb703;
}

.ansi-household-info-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0b6efd;
    color: #fff;
    font-size: 13px;
}

.ansi-household-info-card strong {
    display: block;
    color: #101828;
    font-size: 12px;
}

.ansi-household-info-card small {
    display: block;
    margin-top: 3px;
    color: #98a2b3;
    font-size: 9px;
}


/* DECORATIVE CIRCLE */
.ansi-household-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    right: -20px;
    top: 10px;
    border: 12px solid #ffb703;
    border-radius: 50%;
    opacity: .8;
}


/* BOTTOM STRIP */
.ansi-household-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 55px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(16,24,40,.06);
}

.ansi-household-strip > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 17px 10px;
    border-right: 1px solid #edf2f7;
    color: #344054;
    font-size: 12px;
    font-weight: 750;
}

.ansi-household-strip > div:last-child {
    border-right: 0;
}

.ansi-household-strip i {
    color: #0b6efd;
    font-size: 16px;
}

.ansi-household-strip > div:nth-child(even) i {
    color: #ffb703;
}


/* TABLET */
@media (max-width: 991px) {

    .ansi-household-service {
        padding: 60px 20px;
    }

    .ansi-household-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ansi-household-content {
        text-align: center;
    }

    .ansi-household-content h2 {
        font-size: 36px;
    }

    .ansi-household-features {
        text-align: left;
    }

    .ansi-household-buttons {
        justify-content: center;
    }

    .ansi-household-visual {
        min-height: 480px;
    }

    .ansi-household-image-card {
        height: 450px;
    }

    .ansi-household-info-card {
        left: 5%;
    }
}


/* MOBILE */
@media (max-width: 575px) {

    .ansi-household-service {
        padding: 45px 15px;
    }

    .ansi-household-content h2 {
        font-size: 29px;
    }

    .ansi-household-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .ansi-household-intro {
        font-size: 14px !important;
    }

    .ansi-household-features {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .ansi-household-feature {
        padding: 11px;
    }

    .ansi-household-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ansi-household-btn-primary,
    .ansi-household-btn-call {
        width: 100%;
    }

    .ansi-household-visual {
        min-height: 400px;
    }

    .ansi-household-image-card {
        height: 390px;
        border-radius: 18px;
    }

    .ansi-household-image-text {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .ansi-household-image-text h3 {
        font-size: 21px;
    }

    .ansi-household-info-card {
        left: 10px;
        bottom: 15px;
        max-width: 245px;
        padding: 10px 12px;
    }

    .ansi-household-circle {
        width: 65px;
        height: 65px;
        border-width: 8px;
        right: -8px;
        top: 0;
    }

    .ansi-household-strip {
        grid-template-columns: 1fr 1fr;
        margin-top: 35px;
    }

    .ansi-household-strip > div {
        padding: 13px 7px;
        font-size: 10px;
        border-bottom: 1px solid #edf2f7;
    }

    .ansi-household-strip > div:nth-child(2) {
        border-right: 0;
    }

    .ansi-household-strip > div:nth-child(3),
    .ansi-household-strip > div:nth-child(4) {
        border-bottom: 0;
    }
}/* ================================
   NEW TOWN LOCATION SECTION
================================ */

.location-map-box {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.location-map-box iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}


/* ================================
   LOCATION CONTENT
================================ */

.location-content-box {
    background: #ffffff;
    margin-top: 22px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.location-content-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #ff6b00;
}


/* ================================
   HEADING
================================ */

.location-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    background: #fff1e8;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.location-label {
    display: block;
    color: #ff6b00;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.location-heading h2 {
    margin: 0;
    color: #172033;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}


/* ================================
   DIVIDER
================================ */

.location-divider {
    width: 55px;
    height: 3px;
    background: #ff6b00;
    margin: 18px 0;
    border-radius: 10px;
}


/* ================================
   CONTENT
================================ */

.location-content-box p {
    color: #626b78;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 13px;
}

.location-content-box p strong {
    color: #172033;
    font-weight: 700;
}


/* ================================
   SERVICE TAGS
================================ */

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.location-services span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #f7f8fa;
    border: 1px solid #e7e9ed;
    border-radius: 8px;
    color: #333b48;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.location-services span i {
    color: #ff6b00;
    font-size: 14px;
}

.location-services span:hover {
    background: #ff6b00;
    border-color: #ff6b00;
    color: #ffffff;
    transform: translateY(-2px);
}

.location-services span:hover i {
    color: #ffffff;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .location-map-box iframe {
        height: 380px;
    }

    .location-content-box {
        padding: 25px;
    }

    .location-heading h2 {
        font-size: 26px;
    }
}


@media (max-width: 576px) {

    .location-map-box {
        border-radius: 12px;
    }

    .location-map-box iframe {
        height: 300px;
    }

    .location-content-box {
        margin-top: 16px;
        padding: 22px 18px;
        border-radius: 12px;
    }

    .location-heading {
        align-items: flex-start;
        gap: 12px;
    }

    .location-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        border-radius: 10px;
        font-size: 18px;
    }

    .location-label {
        font-size: 11px;
    }

    .location-heading h2 {
        font-size: 22px;
    }

    .location-content-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .location-services {
        gap: 8px;
    }

    .location-services span {
        padding: 8px 10px;
        font-size: 12px;
    }
}