/* =========================================================
   GLOBAL
========================================================= */

:root {
    --blue: #0e73ba;
    --blue-dark: #083b66;
    --blue-deep: #062c4d;
    --blue-light: #eaf5fc;

    --text: #142536;
    --muted: #667685;

    --white: #ffffff;
    --border: #e3e9ee;

    --container: 1240px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}


img {
    width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


.container {
    width: min(1240px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.section-label span {
    width: 35px;
    height: 2px;
    background: var(--blue);
    display: inline-block;
}


.section-label.light {
    color: #fff;
}


.section-label.light span {
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {

    min-height: 700px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;
}


.about-hero-image {

    position: absolute;
    inset: 0;

    background-image:
        url("https://themeearth.com/tf/html/indrostiz/img/p1.jpg");

    background-size: cover;
    background-position: center;

    transform: scale(1.02);
}


.about-hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 30, 53, .95) 0%,
            rgba(3, 30, 53, .82) 42%,
            rgba(3, 30, 53, .35) 75%,
            rgba(3, 30, 53, .15) 100%
        );
}


.about-hero-content {

    position: relative;
    z-index: 2;

    width: min(1240px, calc(100% - 40px));

    margin: auto;

    padding-top: 60px;
}


.hero-label {

    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;

    margin-bottom: 20px;
}


.hero-label span {

    width: 42px;
    height: 2px;

    background: #fff;
}


.about-hero h1 {

    max-width: 850px;

    font-size: clamp(45px, 6vw, 78px);

    line-height: 1.05;

    font-weight: 300;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.about-hero h1 strong {
    font-weight: 800;
}


.about-hero p {

    max-width: 620px;

    font-size: 19px;

    color: rgba(255,255,255,.86);

    margin-bottom: 35px;
}


.hero-buttons {

    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


.hero-btn {

    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s ease;
}


.hero-btn.primary {

    background: var(--blue);
    color: #fff;
}


.hero-btn.primary:hover {

    background: #fff;
    color: var(--blue);
}


.hero-btn.secondary {

    border: 1px solid rgba(255,255,255,.5);

    color: #fff;
}


.hero-btn.secondary:hover {

    background: #fff;
    color: var(--blue-dark);
}


.hero-scroll {

    position: absolute;

    z-index: 2;

    bottom: 30px;
    right: 45px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 10px;

    letter-spacing: 2px;

    opacity: .75;
}


.hero-scroll i {
    font-size: 13px;
}


/* =========================================================
   ABOUT COMPANY
========================================================= */

.about-company {

    padding: 110px 0;
}


.about-company-grid {

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 90px;

    align-items: center;
}


.about-image-wrap {

    position: relative;

    padding: 0 35px 35px 0;
}


.about-image-main {

    height: 550px;

    overflow: hidden;
}


.about-image-main img {

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.about-image-wrap:hover img {
    transform: scale(1.04);
}


.about-experience {

    position: absolute;

    bottom: 0;
    right: 0;

    width: 190px;
    min-height: 170px;

    padding: 28px;

    background: var(--blue);

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.about-experience strong {

    font-size: 29px;

    letter-spacing: 2px;

    line-height: 1;
}


.about-experience span {

    margin-top: 12px;

    font-size: 11px;

    line-height: 1.5;

    letter-spacing: 2px;
}


.about-company-content h2 {

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.1;

    color: var(--blue-dark);

    margin-bottom: 25px;
}


.about-company-content h2 strong {
    color: var(--blue);
}


.about-company-content p {

    font-size: 15px;

    color: var(--muted);

    margin-bottom: 17px;

    max-width: 680px;
}


.about-company-content p.lead {

    color: #31495c;

    font-size: 18px;

    line-height: 1.7;
}


.text-link {

    display: inline-flex;

    gap: 10px;

    align-items: center;

    color: var(--blue);

    font-size: 13px;

    font-weight: 800;

    margin-top: 10px;

    transition: .3s ease;
}


.text-link:hover {
    gap: 16px;
}


/* =========================================================
   INDIA ADVANTAGE
========================================================= */

.india-advantage {

    padding: 95px 0;

    background:
        linear-gradient(
            110deg,
            #062c4d,
            #0a527f
        );

    color: #fff;
}


.advantage-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.advantage-heading h2 {

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    font-weight: 300;
}


.advantage-heading h2 strong {
    font-weight: 800;
}


.advantage-line {

    width: 80px;
    height: 3px;

    background: #fff;

    margin-top: 30px;
}


.advantage-content {

    border-left: 1px solid rgba(255,255,255,.25);

    padding-left: 45px;
}


.advantage-content h3 {

    font-size: 28px;

    margin-bottom: 18px;
}


.advantage-content p {

    font-size: 16px;

    color: rgba(255,255,255,.78);

    margin-bottom: 18px;

    max-width: 550px;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities {

    padding: 110px 0;

    background: #f7f9fb;
}


.section-heading {

    max-width: 780px;

    margin-bottom: 55px;
}


.section-heading.center {

    text-align: center;

    margin-left: auto;
    margin-right: auto;
}


.section-heading.center .section-label {

    justify-content: center;
}


.section-heading h2 {

    color: var(--blue-dark);

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.1;

    margin-bottom: 18px;
}


.section-heading h2 strong {
    color: var(--blue);
}


.section-heading p {

    color: var(--muted);

    font-size: 16px;
}


.capability-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background: #dfe6eb;

    border: 1px solid #dfe6eb;
}


.capability-card {

    position: relative;

    background: #fff;

    padding: 35px 30px;

    min-height: 260px;

    transition: .3s ease;

    overflow: hidden;
}


.capability-card:hover {

    background: var(--blue);

    color: #fff;

    transform: translateY(-5px);

    z-index: 2;
}


.capability-number {

    position: absolute;

    top: 20px;
    right: 22px;

    font-size: 11px;

    color: #aab8c2;

    font-weight: 800;

    letter-spacing: 1px;
}


.capability-card:hover .capability-number {
    color: rgba(255,255,255,.55);
}


.capability-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 18px;

    margin-bottom: 25px;
}


.capability-card:hover .capability-icon {

    background: rgba(255,255,255,.15);

    color: #fff;
}


.capability-card h3 {

    color: var(--blue-dark);

    font-size: 17px;

    line-height: 1.35;

    margin-bottom: 12px;
}


.capability-card:hover h3 {
    color: #fff;
}


.capability-card p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}


.capability-card:hover p {
    color: rgba(255,255,255,.78);
}


/* =========================================================
   PURPOSE
========================================================= */

.purpose-section {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;
}


.purpose-image {

    position: absolute;

    inset: 0;

    background-image:
        url("https://themeearth.com/tf/html/indrostiz/img/p3.jpg");

    background-size: cover;

    background-position: center;
}


.purpose-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,34,58,.96),
            rgba(4,34,58,.8),
            rgba(4,34,58,.35)
        );
}


.purpose-content {

    position: relative;

    z-index: 2;

    max-width: 730px;

    padding: 90px 0;
}


.purpose-content h2 {

    font-size: clamp(38px, 5vw, 61px);

    line-height: 1.05;

    margin-bottom: 25px;
}


.purpose-content p {

    max-width: 650px;

    font-size: 17px;

    color: rgba(255,255,255,.78);

    margin-bottom: 18px;
}


.purpose-content strong {
    color: #fff;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership {

    padding: 110px 0;
}


.leadership-grid {

    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 100px;

    align-items: center;
}


.leadership-content h2 {

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.05;

    color: var(--blue-dark);

    margin-bottom: 25px;
}


.leadership-content h2 strong {
    color: var(--blue);
}


.leadership-content p {

    color: var(--muted);

    font-size: 16px;

    margin-bottom: 18px;

    max-width: 650px;
}


.leadership-values {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.value-item {

    min-height: 150px;

    padding: 30px;

    background: #f3f7fa;

    display: flex;

    flex-direction: column;

    justify-content: center;

    transition: .3s ease;
}


.value-item:hover {

    background: var(--blue);

    color: #fff;

    transform: translateY(-4px);
}


.value-item i {

    font-size: 27px;

    color: var(--blue);

    margin-bottom: 15px;
}


.value-item:hover i {
    color: #fff;
}


.value-item span {

    font-size: 15px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries {

    padding: 110px 0;

    background: #f7f9fb;
}


.industries-heading {

    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 50px;
}


.industries-heading h2 {

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    color: var(--blue-dark);
}


.industries-heading h2 strong {
    color: var(--blue);
}


.industries-heading > p {

    color: var(--muted);

    font-size: 16px;

    max-width: 500px;
}


/* =========================================================
   INDUSTRY GRID
========================================================= */

.industry-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.industry-card {

    position: relative;

    height: 420px;

    overflow: hidden;

    color: #fff;
}


.industry-card.large {

    grid-column: span 2;

    height: 500px;
}


.industry-card img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.industry-card:hover img {
    transform: scale(1.06);
}


.industry-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4,35,60,.05),
            rgba(4,35,60,.88)
        );

    transition: .3s ease;
}


.industry-card:hover .industry-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(4,35,60,.15),
            rgba(4,35,60,.95)
        );
}


.industry-content {

    position: absolute;

    inset: 0;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;
}


.industry-number {

    position: absolute;

    top: 25px;
    right: 28px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: .7;
}


.industry-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--blue);

    margin-bottom: 20px;

    font-size: 19px;
}


.industry-text > span {

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;

    opacity: .8;
}


.industry-text h3 {

    max-width: 700px;

    font-size: clamp(25px, 3vw, 39px);

    line-height: 1.15;

    margin-top: 9px;
}


.industry-text p {

    max-width: 650px;

    font-size: 14px;

    line-height: 1.6;

    color: rgba(255,255,255,.8);

    margin-top: 12px;

    opacity: 0;

    transform: translateY(10px);

    transition: .4s ease;
}


.industry-card:hover .industry-text p {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   CTA
========================================================= */

.engineering-cta {

    padding: 85px 0;

    background: var(--blue-dark);

    color: #fff;
}


.engineering-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.engineering-cta h2 {

    max-width: 800px;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    margin-bottom: 17px;
}


.engineering-cta h2 strong {
    color: #62b7e8;
}


.engineering-cta p {

    max-width: 720px;

    color: rgba(255,255,255,.7);

    font-size: 15px;
}


.cta-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    background: #fff;

    color: var(--blue-dark);

    padding: 17px 25px;

    font-size: 13px;

    font-weight: 800;

    transition: .3s ease;
}


.cta-button:hover {

    background: var(--blue);

    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {


    .about-company-grid,
    .advantage-grid,
    .leadership-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-image-main {
        height: 500px;
    }


    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .industries-heading {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .engineering-cta-inner {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {


    .container {

        width: min(100% - 30px, 1240px);
    }


    .about-hero {

        min-height: 650px;
    }


    .about-hero-content {

        width: calc(100% - 30px);
    }


    .about-hero h1 {

        font-size: 43px;

        letter-spacing: -1px;
    }


    .about-hero p {

        font-size: 16px;
    }


    .hero-scroll {
        display: none;
    }


    .about-company,
    .capabilities,
    .leadership,
    .industries {

        padding: 75px 0;
    }


    .about-image-wrap {

        padding-right: 20px;
        padding-bottom: 20px;
    }


    .about-image-main {
        height: 400px;
    }


    .about-experience {

        width: 145px;

        min-height: 135px;

        padding: 20px;
    }


    .about-experience strong {
        font-size: 22px;
    }


    .about-company-content h2 {

        font-size: 37px;
    }


    .advantage-grid {

        gap: 35px;
    }


    .advantage-content {

        padding-left: 20px;
    }


    .capability-grid {

        grid-template-columns: 1fr;
    }


    .capability-card {

        min-height: 220px;
    }


    .purpose-section {

        min-height: 650px;
    }


    .purpose-content {

        padding: 70px 0;
    }


    .purpose-content h2 {

        font-size: 39px;
    }


    .leadership-values {

        grid-template-columns: 1fr 1fr;
    }


    .industry-grid {

        grid-template-columns: 1fr;
    }


    .industry-card,
    .industry-card.large {

        grid-column: span 1;

        height: 430px;
    }


    .industry-card.large {

        height: 470px;
    }


    .industry-content {

        padding: 25px;
    }


    .industry-text h3 {

        font-size: 27px;
    }


    .industry-text p {

        opacity: 1;

        transform: none;
    }


    .engineering-cta {

        padding: 65px 0;
    }


    .engineering-cta h2 {

        font-size: 36px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .about-hero h1 {

        font-size: 38px;
    }


    .hero-btn {

        width: 100%;
    }


    .about-image-main {
        height: 330px;
    }


    .about-experience {

        width: 125px;

        min-height: 115px;

        padding: 16px;
    }


    .leadership-values {

        grid-template-columns: 1fr;
    }


    .value-item {

        min-height: 120px;
    }


    .industry-card,
    .industry-card.large {

        height: 420px;
    }


    .industry-text h3 {

        font-size: 24px;
    }


    .engineering-cta .section-label {
        margin-bottom: 15px;
    }

}