/* =========================================================
   GK CONSULTANCY HOME PAGE
========================================================= */

* {
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: calc(100vh - 128px);

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    color: #ffffff;

    background: #07111f;
}

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,12,25,.92) 0%,
            rgba(3,12,25,.78) 42%,
            rgba(3,12,25,.38) 100%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    width: min(1400px, 90%);

    margin: auto;

    padding: 100px 0;
}

.hero-label {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #93c5fd;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero-label span {
    width: 30px;
    height: 1px;

    background: #60a5fa;
}

.hero-content h1 {
    max-width: 850px;

    margin-top: 20px;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(55px, 7vw, 100px);

    line-height: .98;

    font-weight: 400;
}

.hero-content h1 span {
    display: block;
}

.hero-content h1 strong {
    display: block;

    color: #60a5fa;

    font-weight: 400;
}

.hero-content > p {
    max-width: 650px;

    margin-top: 25px;

    color: #dbe7f5;

    font-size: 16px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 35px;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    border-radius: 40px;

    font-size: 13px;
    font-weight: 600;

    transition: .35s;
}

.hero-primary {
    color: #ffffff;

    background: #2563eb;

    box-shadow: 0 15px 30px rgba(37,99,235,.3);
}

.hero-primary:hover {
    color: #ffffff;

    background: #1d4ed8;

    transform: translateY(-3px);
}

.hero-secondary {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.35);

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(10px);
}

.hero-secondary:hover {
    color: #0f172a;

    background: #ffffff;

    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 45px;

    margin-top: 60px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-family: 'DM Serif Display', serif;

    font-size: 30px;

    color: #ffffff;
}

.hero-trust span {
    color: #a9bbcf;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;

    z-index: 2;

    right: 5%;

    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 12px;

    writing-mode: vertical-rl;

    color: #cbd5e1;

    font-size: 9px;

    letter-spacing: 2px;
}

.hero-scroll i {
    color: #60a5fa;

    font-size: 15px;
}


/* =========================================================
   COMMON
========================================================= */

.section-label {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #2563eb;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-label > span {
    width: 30px;
    height: 2px;

    background: #2563eb;

    border-radius: 10px;
}

.center-label {
    justify-content: center;
}

.section-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}

.section-heading h2,
.about-content h2,
.why-content h2,
.industries-content h2 {
    margin-top: 15px;

    font-family: 'DM Serif Display', serif;

    color: #142033;

    font-weight: 400;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;
}

.section-heading h2 strong,
.about-content h2 strong,
.why-content h2 strong,
.industries-content h2 strong {
    color: #2563eb;

    font-weight: 400;
}

.section-heading p {
    margin-top: 15px;

    color: #64748b;

    line-height: 1.8;

    font-size: 14px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 110px 0;

    background: #ffffff;
}

.about-container {
    width: min(1250px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-image-area {
    position: relative;
}

.about-image-area > img {
    width: 100%;

    height: 550px;

    object-fit: cover;

    border-radius: 24px;

    display: block;
}

.about-experience {
    position: absolute;

    right: -25px;
    bottom: 30px;

    width: 165px;
    height: 165px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2563eb;

    color: #ffffff;

    box-shadow: 0 20px 45px rgba(37,99,235,.3);
}

.about-experience strong {
    font-family: 'DM Serif Display', serif;

    font-size: 45px;

    line-height: 1;
}

.about-experience sup {
    font-size: 20px;
}

.about-experience span {
    margin-top: 7px;

    font-size: 9px;

    text-align: center;

    letter-spacing: 1.5px;
}

.about-content h2 {
    max-width: 580px;
}

.about-content > p {
    margin-top: 20px;

    color: #64748b;

    line-height: 1.9;

    font-size: 14px;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 25px;
}

.about-points div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #334155;

    font-size: 12px;
    font-weight: 600;
}

.about-points i {
    color: #2563eb;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    padding: 13px 21px;

    border-radius: 30px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

.about-button:hover {
    color: #ffffff;
    background: #2563eb;

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 110px 0;

    background: #f8fafc;
}

.services-grid {
    width: min(1250px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    box-shadow: 0 10px 35px rgba(15,23,42,.06);

    transition: .4s;
}

.service-card > img {
    width: 100%;
    height: 210px;

    object-fit: cover;

    display: block;

    transition: .5s;
}

.service-card:hover > img {
    transform: scale(1.07);
}

.service-card-content {
    position: relative;

    padding: 25px;
}

.service-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eff6ff;
    color: #2563eb;

    margin-top: -48px;

    position: relative;
    z-index: 2;

    border: 4px solid #ffffff;

    font-size: 18px;
}

.service-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #dbeafe;

    font-family: 'DM Serif Display', serif;

    font-size: 34px;
}

.service-card h3 {
    margin-top: 20px;

    color: #172033;

    font-size: 18px;

    font-weight: 700;
}

.service-card p {
    margin-top: 10px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.7;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 17px;

    color: #2563eb;

    font-size: 11px;
    font-weight: 700;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(15,23,42,.12);
}

.services-cta {
    width: min(1250px, 90%);

    margin: 35px auto 0;

    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid #e6edf5;
}

.services-cta span {
    color: #2563eb;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.services-cta h3 {
    margin-top: 5px;

    color: #172033;

    font-size: 17px;
}

.services-cta > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    border-radius: 30px;

    background: #2563eb;
    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #07111f,
            #102b4d
        );

    color: #ffffff;
}

.industries-container {
    width: min(1250px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.light-label {
    color: #93c5fd;
}

.light-label > span {
    background: #60a5fa;
}

.industries-content h2 {
    color: #ffffff;
}

.industries-content p {
    margin-top: 20px;

    color: #b9c7d8;

    font-size: 14px;

    line-height: 1.9;
}

.light-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 28px;

    padding: 13px 20px;

    border-radius: 30px;

    background: #ffffff;
    color: #173a7c;

    font-size: 11px;
    font-weight: 700;

    transition: .3s;
}

.light-button:hover {
    color: #ffffff;

    background: #2563eb;

    transform: translateY(-3px);
}

.industry-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.industry-card {
    padding: 28px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 18px;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(10px);

    transition: .3s;
}

.industry-card:hover {
    background: rgba(255,255,255,.1);

    transform: translateY(-5px);
}

.industry-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(96,165,250,.14);

    color: #60a5fa;

    font-size: 21px;
}

.industry-card h3 {
    margin-top: 18px;

    font-size: 17px;
}

.industry-card p {
    margin-top: 7px;

    color: #9fb0c4;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    padding: 110px 0;

    background: #ffffff;
}

.why-container {
    width: min(1250px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.why-images {
    position: relative;

    min-height: 550px;
}

.why-main {
    width: 78%;
    height: 470px;

    object-fit: cover;

    border-radius: 22px;
}

.why-secondary {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 250px;

    object-fit: cover;

    border-radius: 20px;

    border: 8px solid #ffffff;

    box-shadow: 0 15px 35px rgba(15,23,42,.12);
}

.why-badge {
    position: absolute;

    left: 25px;
    bottom: 40px;

    padding: 17px 22px;

    border-radius: 15px;

    background: #2563eb;
    color: #ffffff;

    box-shadow: 0 15px 35px rgba(37,99,235,.25);
}

.why-badge strong {
    font-family: 'DM Serif Display', serif;

    font-size: 34px;
}

.why-badge span {
    display: block;

    font-size: 8px;

    letter-spacing: 1px;

    line-height: 1.5;
}

.why-content > p {
    margin-top: 18px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.9;
}

.why-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #edf2f7;
}

.why-item > span {
    color: #2563eb;

    font-family: 'DM Serif Display', serif;

    font-size: 25px;
}

.why-item h3 {
    color: #172033;

    font-size: 15px;
}

.why-item p {
    margin-top: 5px;

    color: #64748b;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.home-cta {
    padding: 100px 20px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(96,165,250,.3),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b1b31,
            #1d4ed8
        );

    text-align: center;

    color: #ffffff;
}

.cta-content {
    max-width: 750px;

    margin: auto;
}

.cta-label {
    color: #bfdbfe;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;
}

.cta-content h2 {
    margin-top: 15px;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(40px, 6vw, 65px);

    font-weight: 400;

    line-height: 1.05;
}

.cta-content h2 strong {
    display: block;

    color: #bfdbfe;

    font-weight: 400;
}

.cta-content p {
    max-width: 600px;

    margin: 18px auto 0;

    color: #dbeafe;

    font-size: 13px;

    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 30px;
}

.cta-primary,
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 20px;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;

    transition: .3s;
}

.cta-primary {
    background: #ffffff;
    color: #1d4ed8;
}

.cta-primary:hover {
    transform: translateY(-3px);

    color: #1d4ed8;

    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}

.cta-phone {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.3);
}

.cta-phone:hover {
    background: rgba(255,255,255,.1);

    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-container,
    .why-container {
        gap: 50px;
    }

    .industries-container {
        gap: 45px;
    }
}


@media(max-width:991px) {

    .hero-section {
        min-height: calc(100vh - 111px);
    }

    .hero-content {
        padding: 80px 0;
    }

    .about-container,
    .why-container,
    .industries-container {
        grid-template-columns: 1fr;
    }

    .about-image-area,
    .why-images {
        max-width: 700px;
        width: 100%;

        margin: auto;
    }

    .industries-content {
        max-width: 650px;
    }
}


@media(max-width:700px) {

    .hero-content h1 {
        font-size: clamp(50px, 15vw, 75px);
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-trust {
        gap: 25px;
        margin-top: 40px;
    }

    .hero-trust strong {
        font-size: 24px;
    }

    .hero-scroll {
        display: none;
    }

    .about-section,
    .services-section,
    .industries-section,
    .why-section {
        padding: 75px 0;
    }

    .about-image-area > img {
        height: 400px;
    }

    .about-experience {
        right: 10px;
        bottom: 20px;

        width: 125px;
        height: 125px;
    }

    .about-experience strong {
        font-size: 35px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .why-images {
        min-height: 450px;
    }

    .why-main {
        width: 85%;
        height: 390px;
    }

    .why-secondary {
        height: 200px;
        width: 50%;
    }

    .cta-buttons {
        flex-direction: column;
    }
}


@media(max-width:480px) {

    .hero-content {
        width: 90%;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

    .hero-trust {
        gap: 18px;
    }

    .hero-trust strong {
        font-size: 21px;
    }

    .hero-trust span {
        font-size: 8px;
    }

    .why-images {
        min-height: 380px;
    }

    .why-main {
        height: 320px;
    }

    .why-secondary {
        height: 170px;
    }

    .why-badge {
        left: 10px;
        bottom: 25px;
    }
}