/* =====================================================
   CAREER PAGE
===================================================== */

:root {
    --brand-orange: #ff9418;
    --brand-blue: #2fa7f2;
    --brand-navy: #111827;
    --brand-muted: #697487;
}

.career-intro {
    background: #ffffff;
}

.career-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.career-intro h2 {
    color: #172033;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.career-intro p {
    color: #697487;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* =====================================================
   CAREER FORM
===================================================== */

.career-form-section {
    background: #f7f8fa;
}

.career-form-wrapper {
    max-width: 900px;

    margin: auto;

    background: #ffffff;

    padding: 50px;

    border: 1px solid #e2e6eb;
}

.career-form-header {
    margin-bottom: 35px;
}

.career-form-header h2 {
    color: #172033;

    font-size: 38px;

    margin-bottom: 10px;
}

.career-form-header p {
    color: #697487;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    color: #172033;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #dfe3e8;

    background: #ffffff;

    color: #172033;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ef5b25;

    box-shadow:
        0 0 0 3px
        rgba(239,91,37,.08);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;

    color: #8a94a3;

    font-size: 11px;

    margin-top: 7px;
}

.form-message {
    padding: 15px 18px;

    margin-bottom: 25px;

    font-size: 14px;
}

.form-message.success {
    background: #eaf8ef;

    color: #18743b;

    border: 1px solid #b9e5c8;
}

.form-message.error {
    background: #fff1f1;

    color: #b42318;

    border: 1px solid #f0b7b7;
}


/* =====================================================
   CAREER CTA
===================================================== */

.career-cta {
    background: #ffffff;
}

.career-cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    background: #172033;
}

.career-cta-box h2 {
    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);
}


/* =====================================================
   GALLERY
===================================================== */

.gallery-section {
    background: #f7f8fa;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.gallery-item {
    position: relative;

    height: 300px;

    overflow: hidden;

    cursor: pointer;

    background: #172033;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 25px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(7,18,38,.9)
        );

    opacity: 0;

    transition: .3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #ffffff;

    font-size: 19px;

    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #d0d8e2;

    font-size: 12px;

    max-width: 300px;
}

.gallery-overlay > span {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ef5b25;

    color: #ffffff;

    font-size: 25px;
}

.no-gallery {
    grid-column: 1 / -1;

    text-align: center;

    padding: 80px 20px;
}

.no-gallery h3 {
    color: #172033;

    margin-bottom: 10px;
}

.no-gallery p {
    color: #697487;
}


/* =====================================================
   GALLERY MODAL
===================================================== */

.gallery-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(5, 10, 20, .92);
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    max-width: 1000px;

    max-height: 90vh;

    text-align: center;
}

.gallery-modal-content img {
    max-width: 100%;

    max-height: 75vh;

    display: block;

    margin: auto;

    object-fit: contain;
}

.gallery-modal-content h3 {
    color: #ffffff;

    font-size: 18px;

    margin-top: 15px;
}

.gallery-close {
    position: absolute;

    right: 25px;
    top: 20px;

    width: 45px;
    height: 45px;

    border: none;

    background: #ef5b25;

    color: #ffffff;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .career-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .career-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .career-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 280px;
    }

}
/* =====================================================
   COMMON PAGE HERO
===================================================== */

.page-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            100deg,
            rgba(7,18,38,.96),
            rgba(20,51,86,.75)
        ),
        url("../../uploads/images/hero.png");

    background-size: cover;
    background-position: center;
}

.page-hero-content {
    color: #ffffff;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.page-hero p {
    max-width: 650px;

    color: #d5deea;

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   BLOGS
===================================================== */

.blogs-section {
    background: #f7f8fa;
}

.blogs-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.blog-card {
    background: #ffffff;

    border: 1px solid #e4e7eb;

    transition: .3s;

    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.08);
}

.blog-image {
    height: 230px;

    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-no-image {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #172033;

    color: #ffffff;

    font-size: 30px;

    font-weight: 800;
}

.blog-content {
    padding: 28px;
}

.blog-category {
    color: #ef5b25;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.blog-content h3 {
    color: #172033;

    font-size: 22px;

    line-height: 1.3;

    margin: 12px 0;
}

.blog-content p {
    color: #697487;

    font-size: 14px;

    line-height: 1.8;

    min-height: 75px;
}

.blog-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 20px;

    margin-top: 15px;

    border-top: 1px solid #e8ebef;
}

.blog-bottom span {
    color: #8a94a3;

    font-size: 12px;
}

.blog-bottom a {
    color: #ef5b25;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}

.no-blogs {
    grid-column: 1 / -1;

    text-align: center;

    padding: 70px 20px;
}

.no-blogs h3 {
    color: #172033;
}

.no-blogs p {
    color: #697487;
}


/* BLOG CTA */

.blogs-cta {
    background: #ffffff;
}

.blogs-cta-box,
.team-cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    background: #172033;
}

.blogs-cta-box h2,
.team-cta-box h2 {
    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.15;
}


/* =====================================================
   TEAM
===================================================== */

.team-intro {
    background: #ffffff;
}

.team-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.team-intro h2 {
    color: #172033;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.team-intro p {
    color: #697487;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 20px;
}

.team-section {
    background: #f7f8fa;
}

.team-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.team-card {
    background: #ffffff;

    border: 1px solid #e3e7ec;

    transition: .3s;

    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 30px
        rgba(0,0,0,.08);
}

.team-image {
    height: 280px;

    overflow: hidden;

    background: #172033;
}

.team-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.team-card:hover .team-image img {
    transform: scale(1.04);
}

.team-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 70px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #172033,
            #30435d
        );
}

.team-content {
    padding: 25px;
}

.team-content h3 {
    color: #172033;

    font-size: 20px;

    margin-bottom: 8px;
}

.team-designation {
    color: #ef5b25;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 5px;
}

.team-department {
    color: #8a94a3;

    font-size: 12px;
}

.no-team {
    grid-column: 1 / -1;

    text-align: center;

    padding: 70px 20px;
}

.no-team h3 {
    color: #172033;
}

.no-team p {
    color: #697487;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .blogs-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .page-hero {
        min-height: 380px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .blogs-cta-box,
    .team-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 25px;
    }

}
/* =====================================================
   SERVICES PAGE
===================================================== */

.services-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            100deg,
            rgba(7,18,38,.96),
            rgba(20,51,86,.72)
        ),
        url("../../uploads/images/hero.png");

    background-size: cover;
    background-position: center;
}

.services-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(239,91,37,.18),
            transparent 35%
        );
}

.services-hero-content {
    position: relative;

    z-index: 2;

    color: #ffffff;
}

.services-hero-content h1 {
    font-size:
        clamp(40px, 6vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.services-hero-content p {
    max-width: 650px;

    color: #d7e0eb;

    font-size: 18px;

    line-height: 1.8;
}


/* =====================================================
   INTRO
===================================================== */

.services-intro {
    background: #ffffff;
}

.services-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}

.services-intro h2 {
    color: #172033;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.services-intro p {
    color: #697487;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 20px;
}


/* =====================================================
   SERVICES MAIN
===================================================== */

.services-main {
    background: #f7f8fa;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    padding: 35px 30px;

    background: #ffffff;

    border:
        1px solid #e2e6eb;

    transition: .3s;

    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-7px);

    background: #172033;

    border-color: #172033;
}

.service-number {
    position: absolute;

    right: 20px;
    top: 20px;

    color: #ef5b25;

    font-size: 12px;

    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #172033;

    color: #ffffff;

    font-size: 20px;

    margin-bottom: 25px;
}

.service-card:hover .service-icon {
    background: #ef5b25;
}

.service-card h3 {
    color: #172033;

    font-size: 22px;

    margin-bottom: 15px;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card > p {
    color: #697487;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 20px;
}

.service-card:hover > p {
    color: #bdc6d3;
}

.service-card ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.service-card li {
    color: #697487;

    font-size: 13px;

    padding: 7px 0;

    border-bottom:
        1px solid #edf0f3;
}

.service-card li::before {
    content: "→";

    color: #ef5b25;

    margin-right: 8px;
}

.service-card:hover li {
    color: #c5ceda;

    border-color: #303b4d;
}


/* =====================================================
   TECHNOLOGY
===================================================== */

.services-tech {
    background: #172033;

    color: #ffffff;
}

.services-tech-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.services-tech h2 {
    color: #ffffff;

    font-size:
        clamp(35px, 4vw, 50px);

    line-height: 1.1;

    margin-bottom: 20px;
}

.services-tech p {
    color: #b9c3d1;

    font-size: 15px;

    line-height: 1.8;
}

.tech-list {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.tech-list span {
    padding: 13px 18px;

    border:
        1px solid #3a4658;

    color: #dce3ec;

    font-size: 13px;

    transition: .3s;
}

.tech-list span:hover {
    background: #ef5b25;

    border-color: #ef5b25;

    color: #ffffff;
}


/* =====================================================
   PROCESS
===================================================== */

.services-process {
    background: #ffffff;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.process-item {
    padding: 30px;

    border:
        1px solid #e2e6eb;

    background: #f7f8fa;
}

.process-number {
    color: #ef5b25;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 25px;
}

.process-item h3 {
    color: #172033;

    font-size: 20px;

    margin-bottom: 12px;
}

.process-item p {
    color: #697487;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   CTA
===================================================== */

.services-cta {
    background: #f7f8fa;
}

.services-cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    background: #172033;
}

.services-cta-box h2 {
    color: #ffffff;

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.15;

    margin-bottom: 15px;
}

.services-cta-box p {
    color: #b9c3d1;

    font-size: 15px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-tech-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .services-hero {
        min-height: 430px;
    }

    .services-hero-content h1 {
        font-size: 40px;
    }

    .services-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-cta-box {
        padding: 40px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

}
/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            100deg,
            rgba(7,18,38,.96),
            rgba(20,51,86,.72)
        ),
        url("../../uploads/images/hero.png");

    background-size: cover;
    background-position: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(239,91,37,.18),
            transparent 35%
        );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.contact-hero-content p {
    max-width: 600px;

    color: #d7e0eb;

    font-size: 18px;

    line-height: 1.8;
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 80px;

    align-items: start;
}


/* LEFT */

.contact-info h2 {
    color: #172033;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.1;

    margin-bottom: 25px;
}

.contact-info > p {
    color: #697487;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* CONTACT DETAILS */

.contact-details {
    margin-top: 40px;

    display: grid;

    gap: 22px;
}

.contact-detail {
    display: flex;

    gap: 18px;

    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7f8fa;

    border: 1px solid #e2e6eb;

    font-size: 19px;
}

.contact-detail h4 {
    color: #172033;

    font-size: 15px;

    margin-bottom: 5px;
}

.contact-detail p {
    color: #697487;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {
    background: #f7f8fa;

    border:
        1px solid #e2e6eb;

    padding: 45px;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header span {
    color: #ef5b25;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-form-header h3 {
    color: #172033;

    font-size: 30px;

    margin-top: 10px;
}


/* FORM MESSAGE */

.form-message {
    padding: 15px 18px;

    margin-bottom: 25px;

    font-size: 14px;

    line-height: 1.5;
}

.form-message.success {
    background: #eaf8ef;

    color: #1c7435;

    border:
        1px solid #b7e4c7;
}

.form-message.error {
    background: #fff0f0;

    color: #b42318;

    border:
        1px solid #f3b5b5;
}


/* FORM ROW */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}


/* FORM GROUP */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    color: #172033;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;
}

.form-group label span {
    color: #ef5b25;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background: #ffffff;

    color: #172033;

    border:
        1px solid #dfe3e8;

    outline: none;

    font-family: inherit;

    font-size: 14px;

    transition: .25s;

    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ef5b25;

    box-shadow:
        0 0 0 3px
        rgba(239,91,37,.08);
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;
}


/* BUTTON */

.contact-submit {
    border: 0;

    cursor: pointer;

    min-width: 180px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;
}

.contact-submit span {
    font-size: 20px;
}


/* FORM NOTE */

.form-note {
    color: #8993a2;

    font-size: 11px;

    line-height: 1.6;

    margin-top: 18px;
}


/* =====================================================
   OFFICE
===================================================== */

.office-section {
    background: #f7f8fa;
}

.office-card {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: #172033;

    min-height: 350px;
}

.office-content {
    padding: 55px;

    color: #ffffff;
}

.office-badge {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ef5b25;

    font-weight: 900;

    margin-bottom: 25px;
}

.office-content h3 {
    font-size: 28px;

    margin-bottom: 20px;
}

.office-content p {
    color: #bdc6d3;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 8px;
}


/* MAP */

.office-map {
    min-height: 350px;

    background:
        linear-gradient(
            135deg,
            #273a55,
            #142035
        );

    display: flex;

    align-items: center;

    justify-content: center;
}

.map-placeholder {
    text-align: center;

    color: #ffffff;
}

.map-placeholder span {
    display: block;

    font-size: 55px;

    margin-bottom: 15px;
}

.map-placeholder strong {
    display: block;

    font-size: 20px;
}

.map-placeholder small {
    display: block;

    color: #aeb9c8;

    margin-top: 5px;
}


/* =====================================================
   CONTACT CTA
===================================================== */

.contact-cta {
    background: #ffffff;
}

.contact-cta-box {
    background: #172033;

    padding: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.contact-cta-box h2 {
    color: #ffffff;

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.15;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1000px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .office-card {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 700px) {

    .contact-hero {
        min-height: 430px;
    }

    .contact-hero-content h1 {
        font-size: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .office-content {
        padding: 35px 25px;
    }

    .contact-cta-box {
        padding: 40px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

}/* =====================================================
   ABOUT US PAGE
===================================================== */


/* ABOUT HERO */

.about-hero {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            100deg,
            rgba(7,18,38,.95),
            rgba(20,51,86,.72)
        ),
        url("../../uploads/images/hero.jpeg");

    background-size: cover;

    background-position: center;
}


.about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(239,91,37,.18),
            transparent 35%
        );
}


.about-hero-content {
    position: relative;

    z-index: 2;

    color: #ffffff;
}


.about-hero-content h1 {
    font-size:
        clamp(40px,6vw,68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.about-hero-content p {
    max-width: 650px;

    color: #d7e0eb;

    font-size: 18px;

    line-height: 1.8;
}


/* =====================================================
   ABOUT INTRO
===================================================== */

.about-intro {
    background: #ffffff;
}


.about-two-column {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-image-box {
    min-height: 500px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #172033,
            #334f72
        );
}


.about-image-box::before {
    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:
        rgba(239,91,37,.25);

    top: -100px;

    right: -80px;
}


.about-image-box::after {
    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border:
        1px solid
        rgba(255,255,255,.25);

    bottom: -80px;

    left: -50px;

    border-radius: 50%;
}


.about-image-content {
    position: absolute;

    z-index: 2;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    text-align: center;

    color: #ffffff;
}


.about-image-content span {
    display: block;

    color: #ef5b25;

    font-size: 80px;

    font-weight: 900;

    line-height: 1;
}


.about-image-content strong {
    display: block;

    margin-top: 15px;

    font-size: 14px;

    letter-spacing: 4px;
}


.about-content h2 {
    color: #172033;

    font-size:
        clamp(32px,4vw,50px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 25px;
}


.about-content p {
    color: #697487;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}


.about-content .btn {
    margin-top: 15px;
}


/* =====================================================
   VISION
===================================================== */

.vision-section {
    background: #f7f8fa;
}


.vision-wrapper {
    display: grid;

    grid-template-columns:
        160px 1fr;

    gap: 50px;

    max-width: 1000px;

    margin: auto;
}


.vision-number {
    color: #ef5b25;

    font-size: 90px;

    font-weight: 900;

    line-height: 1;

    opacity: .25;
}


.vision-content h2,
.mission-content h2 {
    color: #172033;

    font-size:
        clamp(32px,4vw,48px);

    line-height: 1.15;

    margin-bottom: 25px;
}


.vision-content p,
.mission-content p {
    color: #697487;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* =====================================================
   MISSION
===================================================== */

.mission-section {
    background: #ffffff;
}


.mission-wrapper {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;
}


.mission-points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}


.mission-point {
    padding: 25px;

    background: #f7f8fa;

    border:
        1px solid #e2e6eb;

    transition: .3s;
}


.mission-point:hover {
    transform:
        translateY(-5px);

    border-color: #ef5b25;
}


.mission-point > span {
    display: block;

    color: #ef5b25;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 20px;
}


.mission-point h3 {
    color: #172033;

    font-size: 19px;

    margin-bottom: 10px;
}


.mission-point p {
    color: #748093;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   APPROACH
===================================================== */

.approach-section {
    background: #f7f8fa;
}


.approach-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}


.approach-card {
    background: #ffffff;

    border:
        1px solid #e2e6eb;

    padding: 35px 28px;

    transition: .3s;
}


.approach-card:hover {
    background: #172033;

    transform:
        translateY(-7px);
}


.approach-icon {
    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #172033;

    color: #ffffff;

    font-weight: 800;

    margin-bottom: 25px;
}


.approach-card:hover .approach-icon {
    background: #ef5b25;
}


.approach-card h3 {
    color: #172033;

    font-size: 21px;

    margin-bottom: 12px;
}


.approach-card:hover h3 {
    color: #ffffff;
}


.approach-card p {
    color: #6c7789;

    font-size: 14px;

    line-height: 1.8;
}


.approach-card:hover p {
    color: #c4cedc;
}


/* =====================================================
   ABOUT STATS
===================================================== */

.about-stats {
    padding:
        90px 0;

    background: #172033;

    color: #ffffff;
}


.about-stats-heading {
    text-align: center;

    margin-bottom: 55px;
}


.about-stats-heading h2 {
    font-size:
        clamp(35px,4vw,50px);

    line-height: 1.1;
}


.about-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(5,1fr);
}


.about-stat {
    text-align: center;

    padding:
        20px;

    border-right:
        1px solid #303a4c;
}


.about-stat:last-child {
    border-right: 0;
}


.about-stat strong {
    display: block;

    color: #ffffff;

    font-size: 46px;

    line-height: 1;

    margin-bottom: 15px;
}


.about-stat span {
    color: #aab5c5;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =====================================================
   TECHNOLOGY
===================================================== */

.technology-section {
    background: #ffffff;
}


.technology-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}


.technology-item {
    padding: 22px;

    background: #f7f8fa;

    border:
        1px solid #e2e6eb;

    text-align: center;

    color: #172033;

    font-size: 15px;

    font-weight: 700;

    transition: .3s;
}


.technology-item:hover {
    color: #ffffff;

    background: #ef5b25;

    border-color: #ef5b25;

    transform:
        translateY(-4px);
}


/* =====================================================
   WHY GKCT
===================================================== */

.why-section {
    background: #f7f8fa;
}


.why-wrapper {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.why-content h2 {
    color: #172033;

    font-size:
        clamp(32px,4vw,48px);

    line-height: 1.15;

    margin-bottom: 20px;
}


.why-content p {
    color: #6c7789;

    font-size: 16px;

    line-height: 1.8;
}


.why-list {
    display: grid;

    gap: 15px;
}


.why-item {
    display: flex;

    gap: 18px;

    padding: 22px;

    background: #ffffff;

    border:
        1px solid #e2e6eb;
}


.why-item > span {
    flex-shrink: 0;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background: #ef5b25;

    border-radius: 50%;

    font-weight: 800;
}


.why-item h3 {
    color: #172033;

    font-size: 17px;

    margin-bottom: 5px;
}


.why-item p {
    color: #727d8e;

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   ABOUT CTA
===================================================== */

.about-cta {
    background: #ffffff;
}


.about-cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        65px;

    background: #172033;
}


.about-cta-box h2 {
    color: #ffffff;

    font-size:
        clamp(30px,4vw,45px);

    line-height: 1.15;

    margin-bottom: 12px;
}


.about-cta-box p {
    color: #b9c3d1;

    font-size: 15px;
}


/* =====================================================
   ABOUT RESPONSIVE
===================================================== */

@media(max-width:1000px) {

    .about-two-column,
    .mission-wrapper,
    .why-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .approach-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .about-stats-grid {
        grid-template-columns:
            repeat(3,1fr);
    }


    .about-stat:nth-child(3) {
        border-right: 0;
    }


    .about-stat {
        border-bottom:
            1px solid #303a4c;
    }


    .technology-grid {
        grid-template-columns:
            repeat(3,1fr);
    }

}


@media(max-width:700px) {

    .about-hero {
        min-height: 450px;
    }


    .about-hero-content h1 {
        font-size: 42px;
    }


    .about-image-box {
        min-height: 380px;
    }


    .vision-wrapper {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .vision-number {
        font-size: 55px;
    }


    .mission-points {
        grid-template-columns: 1fr;
    }


    .approach-grid {
        grid-template-columns: 1fr;
    }


    .about-stats-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .about-stat {
        border-right: 0;
    }


    .technology-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .about-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 25px;
    }

}


@media(max-width:450px) {

    .about-hero-content h1 {
        font-size: 35px;
    }


    .technology-grid {
        grid-template-columns: 1fr;
    }


    .about-stats-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   JS SCROLL ANIMATION
===================================================== */

.animate-item {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .6s ease,
        transform .6s ease;
}


.animate-item.show {
    opacity: 1;

    transform:
        translateY(0);
}
/* =====================================================
   GKCT INFO SOLUTIONS
   MAIN STYLE
===================================================== */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: #172033;

    background: #ffffff;

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


ul {
    list-style: none;
}


.container {
    width: 92%;

    max-width: 1200px;

    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;

    top: 0;

    z-index: 9999;

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid #eeeeee;

    backdrop-filter:
        blur(12px);
}


.nav-container {
    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    line-height: 1;

    min-width: 110px;

    height: 82px;
}


.logo-img {
    display: block;

    max-width: 180px;

    width: auto;

    height: 82px;

    object-fit: contain;

    flex-shrink: 0;
}


.logo-main {
    color: #172033;

    font-size: 27px;

    font-weight: 900;

    letter-spacing: -1px;
}


.logo-sub {
    color: #ef5b25;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-top: 5px;
}


/* NAV */

.main-nav {
    display: flex;

    align-items: center;

    gap: 26px;
}


.main-nav a {
    position: relative;

    color: #283246;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;
}


.main-nav a:hover {
    color: #ef5b25;
}


.main-nav a:not(.nav-contact)::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -9px;

    width: 0;

    height: 2px;

    background: #ef5b25;

    transition: .3s;
}


.main-nav a:not(.nav-contact):hover::after {
    width: 100%;
}


.nav-contact {
    color: #ffffff !important;

    background: #ef5b25;

    padding:
        12px 20px;

    border-radius: 3px;
}


.nav-contact:hover {
    background: #d94914;
}


/* MOBILE BUTTON */

.menu-btn {
    display: none;

    width: 42px;

    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.menu-btn span {
    display: block;

    width: 25px;

    height: 2px;

    background: #172033;

    margin: 5px auto;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    background-image:

        linear-gradient(
            100deg,
            rgba(6,17,38,.94),
            rgba(19,50,88,.72)
        ),

        url("../../uploads/images/hero.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(239,91,37,.18),
            transparent 35%
        );
}


.hero-container {
    position: relative;

    z-index: 2;
}


.hero-content {
    max-width: 780px;

    color: #ffffff;
}


.hero-small-title {
    color: #ff794b;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 25px;
}


.hero h1 {
    font-size:
        clamp(42px,6vw,72px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    font-weight: 800;

    margin-bottom: 28px;
}


.hero p {
    max-width: 650px;

    color: #dce4ee;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;

    gap: 15px;
}


/* =====================================================
   BUTTON
===================================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding:
        13px 27px;

    font-size: 14px;

    font-weight: 700;

    border-radius: 3px;

    transition: .3s;
}


.btn:hover {
    transform:
        translateY(-3px);
}


.btn-orange {
    color: #ffffff;

    background: #ef5b25;
}


.btn-orange:hover {
    background: #d94714;
}


.btn-outline {
    color: #ffffff;

    border:
        1px solid
        rgba(255,255,255,.65);
}


.btn-outline:hover {
    color: #172033;

    background: #ffffff;
}


.btn-dark {
    display: inline-flex;

    color: #ffffff;

    background: #172033;

    padding:
        14px 25px;

    font-size: 14px;

    font-weight: 700;
}


/* =====================================================
   COMMON SECTIONS
===================================================== */

.section-padding {
    padding:
        100px 0;
}


.section-label {
    color: #ef5b25;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 14px;
}


.section-title {
    color: #172033;

    font-size: 42px;

    line-height: 1.2;
}


.center {
    text-align: center;
}


.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}


.section-heading h2 {
    color: #172033;

    font-size:
        clamp(32px,4vw,50px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}


.section-heading p {
    color: #6b7586;

    font-size: 16px;

    line-height: 1.8;
}


.center-heading {
    margin-left: auto;

    margin-right: auto;

    text-align: center;
}


/* =====================================================
   CLIENTS
===================================================== */

.clients {
    padding:
        65px 0;

    background: #f7f8fa;
}


.client-grid {
    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 20px;

    margin-top: 35px;
}


.client-box {
    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border:
        1px solid #e4e7ec;

    color: #7d8797;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: .3s;
}


.client-box:hover {
    color: #ef5b25;

    border-color: #ef5b25;

    transform:
        translateY(-4px);
}


/* =====================================================
   FEEDBACK
===================================================== */

.feedback-section {
    background: #ffffff;
}


.feedback-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;
}


.feedback-card {
    padding: 35px;

    background: #f7f8fa;

    border:
        1px solid #e4e7ec;

    transition: .35s;
}


.feedback-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(20,30,60,.08);
}


.quote {
    color: #ef5b25;

    font-size: 70px;

    font-weight: 900;

    line-height: .5;

    margin-bottom: 30px;
}


.feedback-card p {
    color: #657083;

    font-size: 15px;

    line-height: 1.9;

    min-height: 120px;
}


.feedback-user {
    display: flex;

    flex-direction: column;

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid #e1e4e8;
}


.feedback-user strong {
    color: #172033;

    font-size: 15px;
}


.feedback-user span {
    color: #8993a3;

    font-size: 13px;
}


.center-button {
    text-align: center;

    margin-top: 45px;
}


.read-more {
    color: #ef5b25;

    font-size: 14px;

    font-weight: 800;

    transition: .3s;
}


.read-more:hover {
    color: #172033;
}


/* =====================================================
   CASE STUDIES
===================================================== */

.case-section {
    background: #f7f8fa;
}


.case-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;
}


.case-card {
    background: #ffffff;

    border:
        1px solid #e4e7ec;

    overflow: hidden;

    transition: .35s;
}


.case-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(20,30,60,.09);
}


.case-image {
    height: 230px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #172033,
            #3e628f
        );
}


.case-image span {
    font-size: 24px;

    font-weight: 800;
}


.case-two {
    background:
        linear-gradient(
            135deg,
            #253d59,
            #ef5b25
        );
}


.case-three {
    background:
        linear-gradient(
            135deg,
            #0f1f35,
            #697c9b
        );
}


.case-content {
    padding: 30px;
}


.case-content small {
    color: #ef5b25;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.case-content h3 {
    color: #172033;

    font-size: 22px;

    line-height: 1.3;

    margin:
        12px 0;
}


.case-content p {
    color: #687386;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 20px;
}


.case-content a {
    color: #ef5b25;

    font-size: 14px;

    font-weight: 800;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    background: #ffffff;
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}


.service-card {
    min-height: 430px;

    padding: 35px 28px;

    background: #f7f8fa;

    border:
        1px solid #e3e6eb;

    transition: .35s;
}


.service-card:hover {
    background: #172033;

    transform:
        translateY(-8px);
}


.service-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ef5b25;

    background: #ffffff;

    font-size: 24px;

    margin-bottom: 25px;

    border-radius: 50%;
}


.service-card h3 {
    color: #172033;

    font-size: 21px;

    margin-bottom: 15px;
}


.service-card:hover h3 {
    color: #ffffff;
}


.service-card p {
    color: #687386;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 20px;
}


.service-card:hover p {
    color: #bdc7d5;
}


.service-card li {
    color: #687386;

    font-size: 13px;

    padding:
        8px 0;

    border-bottom:
        1px solid #e1e4e8;
}


.service-card:hover li {
    color: #cbd3df;

    border-color: #344052;
}


.service-card > a {
    display: inline-block;

    color: #ef5b25;

    font-size: 14px;

    font-weight: 800;

    margin-top: 20px;
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    padding:
        75px 0;

    background: #172033;
}


.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);
}


.stat {
    text-align: center;

    padding:
        10px 20px;

    border-right:
        1px solid #313b4e;
}


.stat:last-child {
    border-right: 0;
}


.stat strong {
    display: block;

    color: #ffffff;

    font-size: 48px;

    line-height: 1;

    margin-bottom: 12px;
}


.stat span {
    color: #aeb8c8;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =====================================================
   CAREER
===================================================== */

.career-section {
    background: #f7f8fa;
}


.career-wrapper,
.contact-wrapper {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        65px;

    background: #ffffff;

    border:
        1px solid #e3e6eb;
}


.career-wrapper h2,
.contact-wrapper h2 {
    color: #172033;

    font-size:
        clamp(30px,4vw,45px);

    line-height: 1.15;

    margin-bottom: 12px;
}


.career-wrapper p,
.contact-wrapper p {
    color: #687386;

    font-size: 16px;
}


/* =====================================================
   CONTACT CTA
===================================================== */

.contact-cta {
    background: #ffffff;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #0e1524;

    color: #9ba6b7;

    padding-top: 70px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.4fr;

    gap: 45px;
}


.footer-logo {
    display: inline-block;

    color: #ffffff;

    font-size: 23px;

    font-weight: 800;

    margin-bottom: 20px;
}


.footer-logo span {
    color: #ef5b25;
}


.footer-about p {
    color: #8792a5;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 12px;
}


.footer-column h4 {
    color: #ffffff;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


.footer-column a {
    display: block;

    color: #8c97a9;

    font-size: 14px;

    margin-bottom: 10px;

    transition: .3s;
}


.footer-column a:hover {
    color: #ef5b25;

    transform:
        translateX(4px);
}


.footer-column p {
    color: #8994a6;

    font-size: 14px;

    margin-bottom: 9px;
}


.footer-bottom {
    margin-top: 55px;

    padding:
        22px 0;

    border-top:
        1px solid #252e3d;
}


.footer-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p,
.footer-bottom a {
    color: #758095;

    font-size: 13px;
}


.footer-bottom a {
    margin-left: 20px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px) {

    .main-nav {
        gap: 17px;
    }


    .services-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .client-grid {
        grid-template-columns:
            repeat(3,1fr);
    }


    .footer-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width:800px) {

    .menu-btn {
        display: block;
    }


    .main-nav {
        position: absolute;

        top: 82px;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            15px 5%;

        background: #ffffff;

        border-bottom:
            1px solid #eeeeee;

        box-shadow:
            0 15px 30px
            rgba(0,0,0,.08);
    }


    .main-nav.active {
        display: flex;
    }


    .main-nav a {
        padding: 12px 0;
    }


    .nav-contact {
        text-align: center;

        margin-top: 8px;
    }


    .hero {
        min-height: 650px;
    }


    .hero h1 {
        font-size: 45px;
    }


    .feedback-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }


    .stats-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .stat {
        border-right: 0;

        border-bottom:
            1px solid #313b4e;

        padding:
            30px 15px;
    }


    .career-wrapper,
    .contact-wrapper {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media(max-width:550px) {

    .container {
        width: 90%;
    }


    .section-padding {
        padding:
            70px 0;
    }


    .hero h1 {
        font-size: 37px;

        letter-spacing: -1px;
    }


    .hero p {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .client-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .stats-grid {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-bottom-inner {
        flex-direction: column;

        text-align: center;
    }


    .footer-bottom a {
        margin:
            0 7px;
    }


    .career-wrapper,
    .contact-wrapper {
        padding:
            35px 25px;
    }

}

/* Brand accents shared by all public pages. */
.section-label,
.contact-form-header span,
.footer-bottom a,
.nav-contact {
    color: var(--brand-orange);
}

.btn-orange,
.technology-item:hover,
.why-item > span {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(47, 167, 242, .14);
}

.btn-orange:hover {
    background: #e9850f;
    border-color: #e9850f;
}
