:root {
    --abi-navy: #03183f;
    --abi-navy-2: #06255b;
    --abi-blue: #125fe8;
    --abi-green: #78c80e;
    --abi-cyan: #13bff2;
    --abi-text: #081739;
    --abi-muted: #68758b;
    --abi-bg: #f6f8fc;
    --abi-white: #ffffff;
    --abi-border: #e5ebf4;
    --abi-shadow: 0 12px 32px rgba(8, 34, 84, 0.08);
    --radius: 16px;
    --container: 1400px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--abi-text);
    background: #fff;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--abi-border);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
    color: var(--abi-navy);
}

.brand-logo {
    width: 180px;
    height: auto;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--abi-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--abi-navy);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #16bdf2, #1057d7 65%, #68c514);
    font-weight: 700;
}

.brand span {
    color: var(--abi-green);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}

.main-nav a {
    position: relative;
    padding: 30px 0 25px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--abi-blue);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--abi-blue), var(--abi-green));
}

.nav-cta {
    background: var(--abi-green);
    color: #fff;
    padding: 12px 19px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
}

/* HERO */
.hero_home {
    color: #fff;
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 18, 50, .98) 0%, rgba(2, 25, 68, .88) 40%, rgba(2, 25, 68, .22) 100%),
        url("images/india-banner.png") center/cover no-repeat;
}

.hero_about {
    color: #fff;
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 18, 50, .98) 0%, rgba(2, 25, 68, .88) 40%, rgba(2, 25, 68, .22) 100%),
        url("images/ABI-TECH INDIA ABOUT HERO BANNER.png") center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 60% 20%, rgba(0, 117, 255, .22), transparent 32%),
        radial-gradient(circle at 35% 50%, rgba(0, 200, 255, .08), transparent 24%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 78px 0 56px;
}

.hero-copy {
    width: min(660px, 100%);
}

.country-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 18px;
}

.india-flag {
    display: inline-block;
    width: 28px;
    height: 18px;
}

.hero h1 {
    font-size: clamp(45px, 5.3vw, 76px);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero h1 strong {
    color: var(--abi-green);
    display: block;
}

.hero-desc {
    color: #eef3fb;
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-highlights {
    margin-top: 34px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(2, 18, 51, .82);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hero-highlight {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    min-height: 114px;
}

.hero-highlight:last-child {
    border-right: 0;
}

.hero-highlight .mini-icon {
    color: var(--abi-green);
    font-size: 24px;
    margin-bottom: 6px;
}

.hero-highlight strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.hero-highlight span {
    color: #cad5e7;
    font-size: 11px;
    line-height: 1.45;
}

/* GENERIC SECTION */
.section {
    padding: 78px 0;
}

.section.light {
    background: var(--abi-bg);
}

.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 9px;
}

.section-heading h2 span {
    color: var(--abi-blue);
}

.section-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: var(--abi-muted);
    font-size: 14px;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--abi-border);
    border-radius: var(--radius);
    padding: 24px 18px;
    box-shadow: var(--abi-shadow);
    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(145deg, #277aff, #0c47ce);
}

.product-card:nth-child(2) .product-icon {
    background: linear-gradient(145deg, #9e51f9, #6c00c7);
}

.product-card:nth-child(3) .product-icon {
    background: linear-gradient(145deg, #1bcbd1, #078e9b);
}

.product-card:nth-child(4) .product-icon {
    background: linear-gradient(145deg, #ffb02e, #ff7700);
}

.product-card:nth-child(5) .product-icon {
    background: linear-gradient(145deg, #2ccbd1, #078894);
}

.product-card:nth-child(6) .product-icon {
    background: linear-gradient(145deg, #8ed32b, #4f9f08);
}

.product-card:nth-child(7) .product-icon {
    background: linear-gradient(145deg, #ff6864, #eb2127);
}

.product-card h3 {
    font-size: 14px;
    min-height: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-card p {
    color: var(--abi-muted);
    font-size: 12px;
    min-height: 95px;
}

.learn-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--abi-blue);
    font-size: 12px;
    font-weight: 600;
}

.center-action {
    text-align: center;
    margin-top: 30px;
}

.outline-btn {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid #c8d5ea;
    color: var(--abi-blue);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
}

/* SERVICES */
.services-panel {
    background: #f7f9fd;
    border-radius: 18px;
    padding: 34px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    border: 1px solid var(--abi-border);
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    min-height: 170px;
}

.service-symbol {
    font-size: 28px;
    color: var(--abi-blue);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--abi-muted);
    font-size: 12px;
}

/* INDIA CAPABILITIES */
.india-capabilities {
    background:
        radial-gradient(circle at 85% 10%, rgba(25, 91, 237, .20), transparent 30%),
        var(--abi-navy);
    border-radius: 20px;
    padding: 42px;
    color: #fff;
}

.india-capabilities .small-title {
    text-align: center;
    color: var(--abi-green);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.india-capabilities>h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.capability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.capability-card {
    min-height: 380px;
    border: 1px solid rgba(25, 111, 255, .45);
    border-radius: 16px;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(2, 25, 65, .32), rgba(2, 18, 48, .95)),
        url("images/offshore-development.png") center/cover no-repeat;
}

.capability-card.academy {
    border-color: rgba(120, 200, 14, .55);
    background:
        linear-gradient(180deg, rgba(53, 85, 0, .18), rgba(5, 43, 15, .92)),
        url("images/abi-tech-academy.png") center/cover no-repeat;
}

.capability-card h3 {
    font-size: 25px;
    margin-bottom: 6px;
}

.capability-card .tagline {
    color: var(--abi-green);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 14px;
}

.capability-card p {
    color: #dbe4f1;
    font-size: 13px;
}

.check-list {
    list-style: none;
    margin: 18px 0 24px;
}

.check-list li {
    font-size: 13px;
    color: #e4eaf4;
    margin-bottom: 7px;
}

.check-list li::before {
    content: "✓";
    color: var(--abi-green);
    margin-right: 9px;
    font-weight: 700;
}

.green-btn {
    display: inline-block;
    padding: 11px 19px;
    background: var(--abi-green);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* INDUSTRIES */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

.industry {
    text-align: center;
    padding: 18px 10px;
    border-right: 1px solid var(--abi-border);
    font-size: 12px;
    font-weight: 500;
}

.industry:last-child {
    border-right: none;
}

.industry-icon {
    color: var(--abi-blue);
    font-size: 26px;
    margin-bottom: 8px;
}

/* WHY INDIA */
.why-india {
    background: var(--abi-navy);
    color: #fff;
    padding: 48px 0;
}

.why-india h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 28px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.why-item {
    padding: 18px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.why-item:last-child {
    border-right: none;
}

.why-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.why-item span {
    color: #c8d4e8;
    font-size: 11px;
}

/* CTA */
.cta {
    background: linear-gradient(90deg, #073577, #0c53b3);
    color: #fff;
    padding: 34px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta h2 {
    font-size: 29px;
    line-height: 1.25;
}

.cta p {
    margin-top: 6px;
    color: #d8e3f2;
    font-size: 13px;
}

/* FOOTER */
footer {
    background: #021637;
    color: #fff;
    padding: 48px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.15fr;
    gap: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-grid h4 {
    margin-bottom: 14px;
    font-size: 15px;
}

.footer-grid p,
.footer-grid a {
    color: #c6d2e4;
    font-size: 12px;
}

.footer-grid a {
    display: block;
    margin-bottom: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #aebbd0;
    font-size: 11px;
    padding-top: 17px;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav.is-open {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 18px;
        background: #fff;
        border-bottom: 1px solid var(--abi-border);
        box-shadow: 0 12px 24px rgba(8, 34, 84, .12);
    }

    .main-nav.is-open a {
        padding: 12px 0;
    }

    .main-nav.is-open a.active::after {
        bottom: 6px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .nav-cta {
        display: none;
    }

    .main-nav.is-open {
        top: 82px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero {
        min-height: auto;
        background-position: 68% center;
    }

    .hero-inner {
        padding: 58px 0 42px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-highlights,
    .product-grid,
    .service-grid,
    .capability-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.banner-highlight {
    color: var(--abi-green);
}

.hero-highlight .mini-icon img {
    width: 50px;
}

.service-card img {
    width: 100px;
    height: 100px;

}