/* =====================================================
   CAREER PAGE
===================================================== */

:root {
    --brand-orange: #ff9418;
    --brand-blue: #2fa7f2;
    --brand-navy: #111827;
    --brand-muted: #697487;
}

/* =====================================================
   FLOATING SUPPORT
===================================================== */

.whatsapp-float,
.chatbot-toggle {
    position: fixed;
    z-index: 1000;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .2);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.chatbot-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(17, 24, 39, .26);
}

.whatsapp-float {
    left: 24px;
    padding: 12px 18px 12px 12px;
    background: #20b85a;
    border-radius: 30px;
}

.chatbot-toggle {
    right: 24px;
    padding: 12px 18px 12px 12px;
    background: #172033;
    border-radius: 30px;
    font: inherit;
}

.floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.floating-label {
    font-size: 13px;
    font-weight: 700;
}

.chatbot-panel {
    position: fixed;
    right: 24px;
    bottom: 86px;
    z-index: 1001;
    width: min(360px, calc(100vw - 32px));
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e6eb;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .2);
}

.chatbot-panel[hidden] {
    display: none;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    color: #ffffff;
    background: #172033;
}

.chatbot-header strong,
.chatbot-header span {
    display: block;
}

.chatbot-header span {
    margin-top: 3px;
    color: #bdc6d3;
    font-size: 11px;
}

.chatbot-header button {
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 25px;
    cursor: pointer;
}

.chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 260px;
    padding: 16px;
    overflow-y: auto;
}

.chatbot-message {
    max-width: 85%;
    padding: 9px 11px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.45;
}

.chatbot-message-bot {
    align-self: flex-start;
    color: #172033;
    background: #f1f4f7;
}

.chatbot-message-user {
    align-self: flex-end;
    color: #ffffff;
    background: #ef5b25;
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 12px;
}

.chatbot-quick-replies button {
    padding: 7px 9px;
    border: 1px solid #dfe3e8;
    color: #172033;
    background: #ffffff;
    font-size: 11px;
    cursor: pointer;
}

.chatbot-form {
    display: flex;
    gap: 8px;
    padding: 12px 16px 16px;
    border-top: 1px solid #edf0f2;
}

.chatbot-form input {
    min-width: 0;
    flex: 1;
    padding: 10px;
    border: 1px solid #dfe3e8;
    font: inherit;
    font-size: 12px;
}

.chatbot-form button {
    padding: 0 13px;
    border: 0;
    color: #ffffff;
    background: #ef5b25;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media(max-width: 600px) {
    .whatsapp-float,
    .chatbot-toggle {
        bottom: 16px;
    }

    .whatsapp-float {
        left: 14px;
    }

    .chatbot-toggle,
    .chatbot-panel {
        right: 14px;
    }

    .floating-label {
        display: none;
    }

    .whatsapp-float,
    .chatbot-toggle {
        padding: 8px;
    }
}

.career-intro {
    background: #ffffff;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}

.footer-social a:hover {
    border-color: #ef5b25;
    color: #ffffff;
    background: #ef5b25;
    transform: translateY(-2px);
}

.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/home1.jpeg");

    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;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
    transition: .3s;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.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: linear-gradient(130deg, #172033, #ef5b25);
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
}

.blog-content {
    padding: 24px 22px 20px;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-category {
    display: inline-block;
    color: #ef5b25;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date,
.blog-author {
    color: #8a94a3;
    font-size: 12px;
    font-weight: 600;
}

.blog-content h3 {
    color: #172033;
    font-size: 22px;
    line-height: 1.35;
    margin: 14px 0 12px;
}

.blog-content p {
    color: #697487;
    font-size: 14px;
    line-height: 1.8;
    min-height: 82px;
    margin: 0;
}

.blog-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid #e8ebef;
}

.blog-bottom a {
    color: #ef5b25;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.blog-toolbar {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 30px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ebedf0;
    border-radius: 16px;
    box-shadow: 0 10px 18px rgba(23, 32, 51, 0.03);
}

.blog-filter-group,
.blog-search-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
    flex: 1;
}

.blog-filter-group label,
.blog-search-group label {
    color: #172033;
    font-size: 13px;
    font-weight: 700;
}

.blog-filter-group select,
.blog-search-group input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d9dfe7;
    border-radius: 10px;
    background: #f9fafb;
    color: #172033;
    font-size: 14px;
}

.blog-filter-group select:focus,
.blog-search-group input:focus {
    outline: none;
    border-color: #ef5b25;
    box-shadow: 0 0 0 3px rgba(239, 91, 37, 0.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-orange {
    background: #ef5b25;
    color: #fff;
}

.btn-outline {
    border-color: #d9dfe7;
    background: #fff;
    color: #172033;
}

.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/DataScience.jpeg");

    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/contactus.jpeg");

    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 {
    position: relative;
    min-height: 350px;

    background:
        linear-gradient(
            135deg,
            #273a55,
            #142035
        );

    display: flex;

    align-items: center;

    justify-content: center;
}

.office-map iframe {
    display: block;
    width: 100%;
    min-height: 350px;
    height: 100%;
    border: 0;
}

.map-link {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 9px 12px;
    color: #172033;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(17, 24, 39, .18);
}

.map-link:hover {
    color: #ffffff;
    background: #ef5b25;
}

.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/aboutus.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
        ),
        url("../../uploads/images/aboutus.jpeg") center / cover no-repeat;
}


.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;
}

.strength-section {
    background: linear-gradient(135deg, #f4fbff 0%, #fff8ed 100%);
}

.core-business-section {
    background: #ffffff;
}

.core-business-section .section-heading > p {
    color: #697487;
}

.core-business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.core-business-card {
    padding: 28px 22px;
    background: #f8fbfd;
    border-top: 5px solid #2fa7f2;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .07);
}

.core-business-manpower {
    border-top-color: #ff9418;
}

.core-business-education {
    border-top-color: #24b47e;
}

.core-business-food {
    border-top-color: #ef5b25;
}

.core-business-card > span {
    display: block;
    margin-bottom: 18px;
    color: #1479c9;
    font-size: 13px;
    font-weight: 800;
}

.core-business-manpower > span {
    color: #e9850f;
}

.core-business-education > span {
    color: #16845f;
}

.core-business-food > span {
    color: #d94914;
}

.core-business-card h3 {
    min-height: 52px;
    margin-bottom: 12px;
    color: #172033;
    font-size: 19px;
    line-height: 1.35;
}

.core-business-card p {
    min-height: 118px;
    margin-bottom: 18px;
    color: #697487;
    font-size: 13px;
    line-height: 1.7;
}

.core-business-card a {
    color: #1479c9;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.core-business-card a:hover {
    color: #ef5b25;
}

.partners-section {
    background: linear-gradient(135deg, #f4fbff 0%, #fff8ed 100%);
}

.business-clients-section {
    background: #ffffff;
}

.business-clients-section .section-heading > p {
    color: #697487;
}

.business-clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.business-client-card {
    padding: 26px 22px;
    background: #f8fbfd;
    border-left: 5px solid #2fa7f2;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
}

.business-client-tuition,
.business-client-medical {
    border-left-color: #ff9418;
}

.business-client-hotel,
.business-client-academy {
    border-left-color: #24b47e;
}

.business-client-technology {
    border-left-color: #ef5b25;
}

.business-client-card > span {
    display: block;
    margin-bottom: 16px;
    color: #1479c9;
    font-size: 12px;
    font-weight: 800;
}

.business-client-card h3 {
    margin-bottom: 10px;
    color: #172033;
    font-size: 18px;
    line-height: 1.35;
}

.business-client-card p {
    margin: 0;
    color: #697487;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .business-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .business-clients-grid {
        grid-template-columns: 1fr;
    }
}

.partners-section .section-heading > p {
    color: #697487;
}

.business-partner-services-section {
    background: linear-gradient(135deg, #f4fbff 0%, #fff8ed 100%);
}

.business-partner-services-section .section-heading > p {
    color: #697487;
}

.business-partner-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.business-partner-service-card {
    padding: 28px 22px;
    background: #ffffff;
    border-top: 5px solid #ef5b25;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .07);
}

.business-partner-service-academy {
    border-top-color: #24b47e;
}

.business-partner-service-medical {
    border-top-color: #ff9418;
}

.business-partner-service-card > span {
    display: block;
    margin-bottom: 18px;
    color: #d94914;
    font-size: 13px;
    font-weight: 800;
}

.business-partner-service-academy > span {
    color: #16845f;
}

.business-partner-service-medical > span {
    color: #d87500;
}

.business-partner-service-card h3 {
    margin-bottom: 12px;
    color: #172033;
    font-size: 20px;
    line-height: 1.35;
}

.business-partner-service-card p {
    margin: 0;
    color: #697487;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .business-partner-services-grid {
        grid-template-columns: 1fr;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    padding: 28px 20px;
    background: #ffffff;
    border: 1px solid #e2e6eb;
    border-top: 5px solid #2fa7f2;
    text-align: center;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .06);
}

.partner-card-upasana {
    border-top-color: #ff9418;
}

.partner-card-ocac {
    border-top-color: #24b47e;
}

.partner-card-lk {
    border-top-color: #ef5b25;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 110px;
    margin: 0 auto 20px;
    border: 1px solid #d7eaf5;
    border-radius: 6px;
    background: #f6fcff;
}

.partner-logo img {
    display: block;
    width: auto;
    max-width: 80%;
    height: 88px;
    object-fit: contain;
}

.partner-card-upasana .partner-logo {
    border-color: #ff9418;
    background: #fff4df;
}

.partner-card-ocac .partner-logo {
    border-color: #24b47e;
    background: #e8f8f1;
}

.partner-card-lk .partner-logo {
    border-color: #ef5b25;
    background: #fff0ea;
}

.partner-card h3 {
    min-height: 42px;
    margin-bottom: 8px;
    color: #172033;
    font-size: 17px;
    line-height: 1.3;
}

.partner-card p {
    margin: 0;
    color: #697487;
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card h3 {
        min-height: 0;
    }
}

@media (max-width: 1000px) {
    .core-business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .core-business-grid {
        grid-template-columns: 1fr;
    }

    .core-business-card h3,
    .core-business-card p {
        min-height: 0;
    }
}

.strength-section .section-heading > p {
    max-width: 850px;
    margin: 0 auto;
    color: #697487;
    line-height: 1.8;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.strength-item {
    padding: 22px 18px;
    color: #172033;
    background: #ffffff;
    border-top: 4px solid #2fa7f2;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.strength-item:nth-child(2n) {
    border-top-color: #ff9418;
}

.strength-item:nth-child(3n) {
    border-top-color: #24b47e;
}

@media (max-width: 800px) {
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .strength-grid {
        grid-template-columns: 1fr;
    }
}

.vision-mission-goals {
    background: linear-gradient(135deg, #f4fbff 0%, #fff8ed 100%);
}

.direction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.direction-card {
    min-height: 270px;
    padding: 30px 26px;
    background: #ffffff;
    border-top: 5px solid #2fa7f2;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .07);
}

.direction-card-mission {
    border-top-color: #ff9418;
}

.direction-card-goals {
    border-top-color: #24b47e;
}

.direction-number {
    display: block;
    margin-bottom: 22px;
    color: #1479c9;
    font-size: 13px;
    font-weight: 800;
}

.direction-card-mission .direction-number {
    color: #e9850f;
}

.direction-card-goals .direction-number {
    color: #16845f;
}

.direction-card h3 {
    margin-bottom: 15px;
    color: #172033;
    font-size: 25px;
}

.direction-card p {
    margin: 0;
    color: #697487;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 800px) {
    .direction-grid {
        grid-template-columns: 1fr;
    }

    .direction-card {
        min-height: 0;
    }
}


/* =====================================================
   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;
}

.nav-dropdown {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.nav-dropdown-toggle {
    display: block;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: -18px;
    z-index: 20;
    display: none;
    width: 245px;
    padding: 8px;
    background: #ffffff;
    border-top: 3px solid #2fa7f2;
    box-shadow: 0 14px 30px rgba(17, 24, 39, .14);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: block;
}

.nav-submenu a {
    display: block;
    padding: 10px 12px;
    color: #283246;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
}

.nav-submenu a::after {
    display: none;
}

.nav-submenu a:hover {
    color: #ffffff;
    background: #2fa7f2;
}


.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/fullstackJava.jpg");

    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 h3 a {
    color: inherit;
    text-decoration: none;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card:hover h3 a {
    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: #ffffff;

    padding-top: 70px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.4fr;

    gap: 45px;
}


.footer-logo {
    display: inline-block;

    color: #ff9418;

    font-size: 23px;

    font-weight: 800;

    margin-bottom: 20px;

    text-decoration: none;

    transition: .2s ease;
}


.footer-logo span {
    background: linear-gradient(135deg, #2fa7f2, #69d5ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo:hover {
    color: #ffb84d;
}


.footer-about p {
    color: #ffffff;

    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: #ffffff;

    font-size: 14px;

    margin-bottom: 10px;

    transition: .3s;
}


.footer-column a:hover {
    color: #ef5b25;

    transform:
        translateX(4px);
}


.footer-column p {
    color: #ffffff;

    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: #ffffff;

    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;
}

body {
    background: #f4fbff;
}

.site-header {
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #2fa7f2, #69d5ff, #ff9418) 1;
}

.logo-main,
.footer-logo span {
    background: linear-gradient(135deg, #1479c9, #53c8f5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-sub {
    color: #ef5b25;
}

.section-label {
    color: #1479c9;
}

.section-title::after,
.hero-small-title::after {
    background: linear-gradient(90deg, #2fa7f2, #ff9418);
}

.clients,
.services-section,
.feedback-section,
.gallery-section,
.office-section,
.career-form-section {
    background: linear-gradient(135deg, #f4fbff 0%, #fff8ed 100%);
}

.client-box,
.service-card,
.case-card,
.feedback-card,
.team-card,
.gallery-item {
    border-top: 4px solid #2fa7f2;
}

.client-box:nth-child(2n),
.service-card:nth-child(3n),
.team-card:nth-child(3n) {
    border-top-color: #ff9418;
}

.client-box:nth-child(3n),
.service-card:nth-child(3n + 1),
.team-card:nth-child(3n + 1) {
    border-top-color: #24b47e;
}

.stat,
.why-item,
.technology-item {
    border-left-color: #2fa7f2;
}

.footer {
    background: linear-gradient(135deg, #081d38, #123e63 65%, #155d79);
}

.footer-column h4 {
    color: #ffffff;
}

.business-areas {
    background: linear-gradient(135deg, #f4fbff 0%, #fff8ed 100%);
}

/* =====================================================
   LEGAL PAGES
===================================================== */

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 112px;
    color: #ffffff;
    background: #102d49;
}

.legal-hero::after {
    position: absolute;
    top: -120px;
    right: 8%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(112, 214, 208, .28);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(112, 214, 208, .04), 0 0 0 56px rgba(112, 214, 208, .03);
    content: "";
    pointer-events: none;
}

.legal-hero .section-label {
    position: relative;
    z-index: 1;
    color: #70d6d0;
}

.legal-hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(44px, 5.5vw, 76px);
    line-height: 1.05;
}

.legal-hero p {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: #d7e4e8;
    font-size: 18px;
    line-height: 1.75;
}

.legal-content {
    background: #f3f8f8;
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 780px);
    justify-content: space-between;
    gap: 80px;
}

.legal-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 20px 0 20px 20px;
    border-left: 3px solid #ff9418;
    color: #1479c9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.6;
}

.legal-sidebar small {
    color: #8993a3;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.legal-copy section {
    padding: 28px 34px 30px;
    margin-bottom: 14px;
    background: #ffffff;
    border-left: 3px solid #2fa7f2;
    box-shadow: 0 8px 24px rgba(16, 45, 73, .04);
}

.legal-copy section:nth-child(2n) {
    border-left-color: #ff9418;
}

.legal-copy section:nth-child(3n) {
    border-left-color: #24b47e;
}

.legal-copy section:last-child {
    margin-bottom: 0;
}

.legal-copy h2 {
    margin-bottom: 12px;
    color: #172033;
    font-size: 24px;
    line-height: 1.2;
}

.legal-copy p {
    color: #697487;
    font-size: 15px;
    line-height: 1.85;
}

.legal-copy a {
    color: #1479c9;
    font-weight: 700;
}

@media (max-width: 700px) {
    .legal-hero { padding: 72px 0 78px; }
    .legal-hero::after { right: -220px; width: 360px; height: 360px; }
    .legal-layout { grid-template-columns: 1fr; gap: 35px; }
    .legal-sidebar { position: static; padding: 0 0 20px 18px; border-bottom: 0; }
    .legal-copy section { padding: 24px 22px 25px; }
}

/* =====================================================
   HOME PAGE
===================================================== */

.home-page {
    color: #172033;
    background: #ffffff;
}

.home-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("../../uploads/images/fullstackJava.jpeg");
    background-size: cover;
    background-position: center;
}

.home-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(7, 20, 39, .96) 0%, rgba(9, 37, 62, .87) 55%, rgba(9, 37, 62, .45) 100%);
}

.home-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 80px;
    align-items: end;
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-hero-copy {
    max-width: 780px;
    color: #ffffff;
}

.home-hero .section-label {
    color: #70d6d0;
}

.home-hero h1 {
    max-width: 760px;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: 0;
}

.home-hero-copy > p {
    max-width: 620px;
    margin-bottom: 34px;
    color: #dce7ee;
    font-size: 18px;
    line-height: 1.75;
}

.home-hero-note {
    align-self: end;
    padding: 22px 0 0 24px;
    border-left: 1px solid #ff9418;
}

.home-note-line {
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 18px;
    background: #ff9418;
}

.home-hero-note p {
    color: #dce7ee;
    font-size: 13px;
    line-height: 1.8;
}

.home-intro {
    background: #ffffff;
}

.home-intro-grid,
.home-approach-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: start;
}

.home-intro h2,
.home-section-heading h2,
.home-approach h2,
.home-cta h2 {
    margin: 0;
    color: #172033;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: 0;
}

.home-intro-copy {
    max-width: 610px;
}

.home-intro-copy p,
.home-approach-grid > div > p {
    margin-bottom: 18px;
    color: #697487;
    font-size: 16px;
    line-height: 1.85;
}

.text-link,
.home-service-link {
    color: #1479c9;
    font-size: 14px;
    font-weight: 800;
}

.text-link span,
.home-service-link span {
    margin-left: 8px;
    transition: margin-left .2s ease;
}

.text-link:hover span,
.home-service-card:hover .home-service-link span {
    margin-left: 13px;
}

.home-services {
    background: #f3f8f8;
}

.home-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}

.home-section-heading > p {
    margin: 0 0 4px;
    color: #697487;
    font-size: 15px;
    line-height: 1.8;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-service-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 25px;
    color: #ffffff;
    background: #102d49;
    border-top: 4px solid #2fa7f2;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-service-card:hover {
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(16, 45, 73, .18);
}

.home-service-people { background: #173f4b; border-top-color: #ff9418; }
.home-service-learning { background: #245247; border-top-color: #70d6d0; }
.home-service-food { background: #643d2d; border-top-color: #ffb44a; }

.home-service-number {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-service-mark {
    margin: 50px 0 28px;
    color: rgba(255, 255, 255, .24);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-service-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.2;
}

.home-service-card p {
    margin-bottom: 24px;
    color: #d7e4e8;
    font-size: 14px;
    line-height: 1.7;
}

.home-service-link {
    margin-top: auto;
    color: #ffffff;
}

.home-approach {
    background: #ffffff;
}

.home-implementation {
    background: #f3f8f8;
}

.home-implementation-list {
    border-top: 1px solid #cbdcdd;
}

.home-implementation-item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 100px;
    gap: 26px;
    align-items: center;
    padding: 23px 0;
    border-bottom: 1px solid #cbdcdd;
}

.home-implementation-item > span {
    color: #ef5b25;
    font-size: 13px;
    font-weight: 800;
}

.home-implementation-item h3 {
    margin-bottom: 5px;
    color: #172033;
    font-size: 21px;
}

.home-implementation-item p {
    color: #697487;
    font-size: 14px;
    line-height: 1.6;
}

.home-implementation-item strong {
    justify-self: end;
    color: #1479c9;
    font-size: 12px;
    letter-spacing: 2px;
}

.home-testimonials {
    background: #ffffff;
}

.home-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-testimonial {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #f7f9f9;
    border-left: 4px solid #2fa7f2;
}

.home-testimonial:nth-child(2) { border-left-color: #ff9418; }
.home-testimonial:nth-child(3) { border-left-color: #24b47e; }

.home-quote {
    height: 32px;
    color: #ef5b25;
    font-size: 58px;
    font-weight: 900;
    line-height: .7;
}

.home-testimonial p {
    flex: 1;
    margin: 20px 0 22px;
    color: #536174;
    font-size: 15px;
    line-height: 1.75;
}

.home-testimonial strong {
    color: #172033;
    font-size: 14px;
}

.home-testimonial small {
    margin-top: 4px;
    color: #8993a3;
    font-size: 12px;
}

.home-blog {
    background: #f3f8f8;
}

.home-blog-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 42px;
}

.home-blog h2 {
    margin: 0;
    color: #172033;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.1;
}

.home-blog-heading .btn span,
.home-blog-card a span {
    margin-left: 8px;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-blog-card {
    min-height: 205px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #d9e4e5;
    border-top: 4px solid #2fa7f2;
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-blog-card:nth-child(2) { border-top-color: #ff9418; }
.home-blog-card:nth-child(3) { border-top-color: #24b47e; }
.home-blog-card:nth-child(4) { border-top-color: #70d6d0; }

.home-blog-card:first-child {
    background: #102d49;
    border-color: #102d49;
    border-top-color: #ff9418;
}

.home-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(16, 45, 73, .12);
}

.home-blog-card > span {
    color: #1479c9;
    font-size: 12px;
    font-weight: 800;
}

.home-blog-card:first-child > span { color: #70d6d0; }

.home-blog-card h3 {
    margin: 35px 0 24px;
    color: #172033;
    font-size: 20px;
    line-height: 1.3;
}

.home-blog-card:first-child h3 { color: #ffffff; }

.home-blog-card a {
    margin-top: auto;
    color: #1479c9;
    font-size: 13px;
    font-weight: 800;
}

.home-blog-card:first-child a { color: #ffb44a; }

.home-rating {
    margin-bottom: 18px;
    color: #ef5b25;
    font-size: 14px;
    letter-spacing: 2px;
}

.home-rating span { color: #cdd6da; }

.home-approach-grid > div > p {
    max-width: 500px;
    margin-top: 25px;
}

.home-steps {
    border-top: 1px solid #dfe7e8;
}

.home-step {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #dfe7e8;
}

.home-step > span {
    color: #ef5b25;
    font-size: 13px;
    font-weight: 800;
}

.home-step h3 {
    margin-bottom: 5px;
    color: #172033;
    font-size: 21px;
}

.home-step p {
    color: #697487;
    font-size: 14px;
}

.home-cta {
    background: #102d49;
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-cta .section-label { color: #70d6d0; }
.home-cta h2 { color: #ffffff; }
.home-cta p { margin-top: 14px; color: #d7e4e8; font-size: 16px; }
.home-cta .btn { flex-shrink: 0; }
.home-cta .btn span { margin-left: 8px; }

@media (max-width: 900px) {
    .home-hero-layout,
    .home-intro-grid,
    .home-approach-grid { grid-template-columns: 1fr; gap: 45px; }
    .home-hero { min-height: 620px; }
    .home-hero-note { max-width: 330px; }
    .home-section-heading { grid-template-columns: 1fr; gap: 20px; }
    .home-service-grid { grid-template-columns: repeat(2, 1fr); }
    .home-testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 550px) {
    .home-hero { min-height: 0; }
    .home-hero-layout { padding-top: 70px; padding-bottom: 70px; }
    .home-hero h1 { font-size: 42px; }
    .home-hero-copy > p { font-size: 16px; }
    .home-hero-note { padding-top: 18px; }
    .home-service-grid { grid-template-columns: 1fr; }
    .home-service-card { min-height: 300px; }
    .home-implementation-item { grid-template-columns: 40px minmax(0, 1fr); gap: 15px; }
    .home-implementation-item strong { grid-column: 2; justify-self: start; }
    .home-blog-heading { align-items: flex-start; flex-direction: column; }
    .home-blog-grid { grid-template-columns: 1fr; }
    .home-cta-inner { align-items: flex-start; flex-direction: column; }
}

.business-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.business-area-card {
    display: block;
    padding: 28px 22px;
    background: #ffffff;
    border-top: 4px solid #2fa7f2;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .07);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.business-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(17, 24, 39, .12);
}

.business-area-card:nth-child(2) {
    border-top-color: #ff9418;
}

.business-area-card:nth-child(3) {
    border-top-color: #24b47e;
}

.business-area-card:nth-child(4) {
    border-top-color: #ef5b25;
}

.business-area-number {
    display: block;
    margin-bottom: 18px;
    color: #1479c9;
    font-size: 13px;
    font-weight: 800;
}

.business-area-card h3 {
    margin-bottom: 12px;
    color: #172033;
    font-size: 19px;
    line-height: 1.3;
}

.business-area-card p {
    margin: 0;
    color: #697487;
    font-size: 13px;
    line-height: 1.7;
}

.business-area-link {
    display: inline-block;
    margin-top: 18px;
    color: #1479c9;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.business-area-link:hover {
    color: #ef5b25;
}

@media (max-width: 1100px) {
    .business-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .nav-submenu {
        position: static;
        display: block;
        width: auto;
        margin: -2px 0 8px 14px;
        padding: 0 0 0 12px;
        border-top: 0;
        border-left: 3px solid #2fa7f2;
        box-shadow: none;
    }

    .nav-submenu a {
        padding: 8px 10px;
    }
}

@media (max-width: 600px) {
    .business-areas-grid {
        grid-template-columns: 1fr;
    }
}

.service-detail-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #092c52, #1479c9 60%, #53c8f5);
}

.service-detail-hero-manpower {
    background: linear-gradient(120deg, #5a2809, #d9651e 60%, #ffb84d);
}

.service-detail-hero-education {
    background: linear-gradient(120deg, #064b42, #0f9d78 60%, #69d5b1);
}

.service-detail-hero-food {
    background: linear-gradient(120deg, #6b2417, #d94b2b 60%, #ff9e5e);
}

.service-detail-hero-content {
    max-width: 780px;
    padding: 80px 0;
    color: #ffffff;
}

.service-detail-hero-content .section-label {
    color: #ffffff;
}

.service-detail-hero-content h1 {
    margin: 18px 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
}

.service-detail-hero-content p {
    max-width: 680px;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.75;
}

.service-detail-section {
    background: #ffffff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: start;
}

.service-detail-grid h2 {
    max-width: 560px;
    margin: 12px 0 22px;
    color: #172033;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.service-detail-grid p {
    max-width: 620px;
    color: #697487;
    font-size: 15px;
    line-height: 1.85;
}

.service-detail-list {
    padding: 30px;
    border-top: 4px solid #2fa7f2;
    background: #f4fbff;
}

.service-detail-list h3 {
    margin-bottom: 18px;
    color: #172033;
    font-size: 21px;
}

.service-detail-list ul {
    margin: 0;
    padding-left: 20px;
    color: #697487;
    line-height: 2;
}

.service-detail-cta {
    background: linear-gradient(135deg, #fff8ed, #f4fbff);
}

.service-detail-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.service-detail-cta h2 {
    max-width: 650px;
    color: #172033;
    font-size: clamp(26px, 4vw, 42px);
}

.service-detail-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.service-detail-related-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #dfe7f0;
    border-radius: 999px;
    background: #ffffff;
    color: #143c66;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.service-detail-related-links a:hover {
    border-color: #1479c9;
    background: #f2f9ff;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .service-detail-grid,
    .service-detail-cta .container {
        grid-template-columns: 1fr;
        display: grid;
        gap: 30px;
    }

    .service-detail-hero-content {
        padding: 65px 0;
    }
}
