/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    min-height: 85px;
    margin: auto;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container {
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-image {
    max-width: 65px;
    max-height: 95px;
    object-fit: contain;
}

.company-name-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.company-name-image {
    max-width: 280px;
    max-height: 55px;
    object-fit: contain;
}


/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .main-navigation a {
        color: #374151;
        font-size: 15px;
        font-weight: 600;
        transition: color .2s ease;
    }

        .main-navigation a:hover {
            color: #0066cc;
        }

.nav-contact {
    background: #0066cc;
    color: #ffffff !important;
    padding: 11px 20px;
    border-radius: 6px;
}

    .nav-contact:hover {
        background: #0052a3;
    }


/* MOBILE */

.mobile-menu-button {
    display: none;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.mobile-navigation {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 10px 25px;
}

    .mobile-navigation a {
        padding: 13px 0;
        color: #374151;
        font-weight: 600;
        border-bottom: 1px solid #f1f5f9;
    }


/* =====================================================
   HERO
===================================================== */

.hero-section {
    min-height: 620px;
    padding: 90px 0;
    background: linear-gradient( 135deg, #ffffff 0%, #eef5ff 100% );
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-label {
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.12;
    color: #111827;
    margin-bottom: 25px;
}

    .hero-content h1 span {
        display: block;
        color: #0066cc;
    }

.hero-content p {
    max-width: 580px;
    color: #5b6472;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* BUTTONS */

.btn {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 7px;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #0052a3;
        color: #ffffff;
        transform: translateY(-1px);
    }

.btn-outline {
    background: #ffffff;
    color: #0066cc;
    border: 1px solid #0066cc;
}

    .btn-outline:hover {
        background: #0066cc;
        color: #ffffff;
    }


/* HERO IMAGE */

.hero-image-box {
    height: 420px;
    background: #ffffff;
    border: 2px solid #dbeafe;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.hero-image {
    width: 100%;
    height: 100%;
   }


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

    .section-heading span,
    .section-label {
        display: inline-block;
        color: #0066cc;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .section-heading h2 {
        font-size: 38px;
        line-height: 1.25;
        color: #111827;
        margin-bottom: 12px;
    }

    .section-heading p {
        max-width: 700px;
        margin: auto;
        color: #6b7280;
        font-size: 16px;
        line-height: 1.7;
    }


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 38px 32px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: #c7ddf7;
        box-shadow: 0 18px 45px rgba(0, 102, 204, .10);
    }

.service-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0066cc;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 21px;
    line-height: 1.35;
    color: #111827;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

.service-card a {
    margin-top: auto;
    color: #0066cc;
    font-size: 14px;
    font-weight: 700;
}

    .service-card a span {
        margin-left: 5px;
    }


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-box {
    height: 400px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.about-image {
    width: 100%;
    height: 100%;
    
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.about-content p {
    color: #626b78;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 25px 15px;
}

.why-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0066cc;
    font-size: 15px;
    font-weight: 700;
}

.why-card h3 {
    color: #111827;
    margin-bottom: 10px;
}

.why-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.contact-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.contact-content > span {
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-content h2 {
    font-size: 34px;
    color: #111827;
    margin: 10px 0;
}

.contact-content p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #111827;
    color: #ffffff;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px 55px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
}


/* FOOTER COMPANY */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-logo {
    width: 55px;
    max-height: 55px;
    object-fit: contain;
}

.footer-brand span {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
}

.footer-company p {
    color: #9ca3af;
    max-width: 330px;
    line-height: 1.8;
    font-size: 14px;
}


/* FOOTER LINKS */

.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

    .footer-links a {
        color: #9ca3af;
        font-size: 14px;
        transition: color .2s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
        }


/* FOOTER OFFICES */

.footer-office {
    border-left: 1px solid #273244;
    padding-left: 25px;
}

.office-title {
    color: #60a5fa;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.footer-office h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-office p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.8;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #273244;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: #9ca3af;
    font-size: 13px;
}

    .footer-bottom a:hover {
        color: #ffffff;
    }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-box {
        height: 380px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .header-container {
        min-height: 70px;
        padding: 8px 18px;
    }

    .logo-container {
        width: 55px;
    }

    .company-name-image {
        max-width: 180px;
    }

    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-image-box {
        height: 280px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 35px 22px;
    }

    .contact-buttons {
        width: 100%;
        flex-direction: column;
    }

        .contact-buttons .btn {
            text-align: center;
        }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 25px;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-company p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        align-items: center;
    }

    .footer-office {
        border-left: none;
        border-top: 1px solid #273244;
        padding-left: 0;
        padding-top: 25px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}
/* =====================================================
   SOLUTIONS PAGE
===================================================== */

.solutions-hero {
    padding: 110px 0;
    background: linear-gradient( 135deg, #ffffff 0%, #eef5ff 100% );
}

.solutions-hero-content {
    max-width: 850px;
}

.solutions-hero h1 {
    font-size: 58px;
    line-height: 1.12;
    color: #111827;
    margin-bottom: 25px;
}

    .solutions-hero h1 span {
        display: block;
        color: #0066cc;
    }

.solutions-hero p {
    max-width: 720px;
    color: #5b6472;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* INTRO */

.solutions-intro {
    padding: 90px 0 30px;
}


/* SOLUTION LIST */

.solutions-list {
    padding: 50px 0 100px;
}

.solution-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 90px 0;
    border-bottom: 1px solid #e5e7eb;
}

    .solution-block:last-child {
        border-bottom: none;
    }

    .solution-block.reverse .solution-content {
        order: 2;
    }

    .solution-block.reverse .solution-visual {
        order: 1;
    }


/* CONTENT */

.solution-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #eaf3ff;
    color: #0066cc;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 25px;
}

.solution-label {
    display: block;
    color: #0066cc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.solution-content h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 20px;
}

.solution-content p {
    color: #626b78;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.solution-lead {
    color: #374151 !important;
    font-size: 19px !important;
    font-weight: 600;
}


/* FEATURES */

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
    margin: 30px 0;
}

    .solution-features div {
        color: #4b5563;
        font-size: 14px;
    }

    .solution-features strong {
        color: #0066cc;
        margin-right: 8px;
    }

.solution-link {
    display: inline-block;
    color: #0066cc;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

    .solution-link span {
        margin-left: 6px;
    }


/* VISUAL */

.solution-visual {
    min-height: 430px;
    border-radius: 22px;
    background: #f5f9ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* CUSTOM VISUAL */

.visual-card {
    width: 75%;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0, 60, 120, .12);
}

.visual-top {
    display: flex;
    gap: 7px;
    margin-bottom: 25px;
}

    .visual-top span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #dbeafe;
    }

.visual-lines div {
    height: 13px;
    background: #eef5ff;
    border-radius: 5px;
    margin-bottom: 15px;
}

    .visual-lines div:nth-child(1) {
        width: 80%;
    }

    .visual-lines div:nth-child(2) {
        width: 60%;
    }

    .visual-lines div:nth-child(3) {
        width: 90%;
    }

    .visual-lines div:nth-child(4) {
        width: 70%;
    }


/* PRODUCT VISUAL */

.product-window {
    width: 80%;
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 25px 60px rgba(0, 60, 120, .12);
}

.product-header {
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.product-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .product-stats div {
        padding: 18px;
        background: #f5f9ff;
        border-radius: 10px;
    }

    .product-stats small {
        display: block;
        color: #6b7280;
        font-size: 10px;
        margin-bottom: 8px;
    }

    .product-stats strong {
        color: #0066cc;
        font-size: 24px;
    }

.product-chart {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 10px;
    margin-top: 30px;
}

    .product-chart span {
        flex: 1;
        background: #0066cc;
        opacity: .75;
        border-radius: 5px 5px 0 0;
    }

        .product-chart span:nth-child(1) {
            height: 35%;
        }

        .product-chart span:nth-child(2) {
            height: 50%;
        }

        .product-chart span:nth-child(3) {
            height: 45%;
        }

        .product-chart span:nth-child(4) {
            height: 70%;
        }

        .product-chart span:nth-child(5) {
            height: 65%;
        }

        .product-chart span:nth-child(6) {
            height: 90%;
        }


/* AI VISUAL */

.ai-visual {
    background: radial-gradient( circle, #eaf3ff 0%, #f5f9ff 60%, #ffffff 100% );
}

.ai-orb {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-core {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 0 50px rgba(0, 102, 204, .3);
    z-index: 5;
}

.ai-ring {
    position: absolute;
    border: 1px solid #93c5fd;
    border-radius: 50%;
}

.ring-one {
    width: 150px;
    height: 150px;
}

.ring-two {
    width: 205px;
    height: 205px;
}

.ring-three {
    width: 260px;
    height: 260px;
}


/* =====================================================
   APPROACH
===================================================== */

.approach-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.approach-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.approach-number {
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.approach-card h3 {
    color: #111827;
    margin-bottom: 12px;
}

.approach-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   CTA
===================================================== */

.solutions-cta {
    padding: 100px 0;
    background: #ffffff;
}

.solutions-cta-box {
    text-align: center;
    background: #eef5ff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 70px 30px;
}

    .solutions-cta-box > span {
        color: #0066cc;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .solutions-cta-box h2 {
        max-width: 700px;
        margin: 15px auto;
        color: #111827;
        font-size: 42px;
        line-height: 1.2;
    }

    .solutions-cta-box p {
        max-width: 650px;
        margin: 0 auto 30px;
        color: #6b7280;
        line-height: 1.7;
    }


/* =====================================================
   SOLUTIONS RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .solutions-hero h1 {
        font-size: 46px;
    }

    .solution-block {
        grid-template-columns: 1fr;
        gap: 45px;
    }

        .solution-block.reverse .solution-content {
            order: 1;
        }

        .solution-block.reverse .solution-visual {
            order: 2;
        }

    .approach-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .solutions-hero {
        padding: 70px 0;
    }

        .solutions-hero h1 {
            font-size: 38px;
        }

        .solutions-hero p {
            font-size: 16px;
        }

    .solution-block {
        padding: 65px 0;
    }

    .solution-content h2 {
        font-size: 34px;
    }

    .solution-features {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        min-height: 330px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .solutions-cta-box {
        padding: 50px 20px;
    }

        .solutions-cta-box h2 {
            font-size: 32px;
        }
}
/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page-hero {
    padding: 110px 0;
    background: linear-gradient( 135deg, #ffffff 0%, #eef5ff 100% );
}

.about-page-hero-content {
    max-width: 850px;
}

.about-page-hero h1 {
    font-size: 58px;
    line-height: 1.12;
    color: #111827;
    margin-bottom: 25px;
}

    .about-page-hero h1 span {
        display: block;
        color: #0066cc;
    }

.about-page-hero p {
    max-width: 720px;
    color: #5b6472;
    font-size: 18px;
    line-height: 1.8;
}


/* =====================================================
   WHO WE ARE
===================================================== */

.about-who-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.about-page-image {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
}

    .about-page-image img {
        width: 100%;
        height: 100%;
      
    }

.about-who-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 22px;
}

.about-who-content p {
    color: #626b78;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 16px;
}


/* =====================================================
   MISSION / VISION
===================================================== */

.mission-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
}

.mission-number {
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.mission-card > span {
    color: #0066cc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.mission-card h2 {
    color: #111827;
    font-size: 30px;
    line-height: 1.25;
    margin: 15px 0;
}

.mission-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}


/* =====================================================
   BELIEFS
===================================================== */

.belief-section {
    padding: 100px 0;
    background: #ffffff;
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.belief-card {
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all .25s ease;
}

    .belief-card:hover {
        transform: translateY(-6px);
        border-color: #c7ddf7;
        box-shadow: 0 15px 40px rgba(0, 102, 204, .08);
    }

.belief-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0066cc;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.belief-card h3 {
    color: #111827;
    margin-bottom: 10px;
}

.belief-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 14px;
}


/* =====================================================
   APPROACH
===================================================== */

.about-approach-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.about-process {
    max-width: 900px;
    margin: auto;
}

.process-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

    .process-item:last-child {
        border-bottom: none;
    }

.process-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.process-item h3 {
    color: #111827;
    font-size: 20px;
    margin-bottom: 8px;
}

.process-item p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 14px;
}


/* =====================================================
   PRESENCE
===================================================== */

.presence-section {
    padding: 100px 0;
    background: #ffffff;
}

.presence-box {
    background: #111827;
    border-radius: 22px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presence-content h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.presence-content p {
    color: #9ca3af;
    line-height: 1.8;
    max-width: 500px;
}

.presence-offices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.presence-office {
    border-left: 1px solid #374151;
    padding-left: 25px;
}

    .presence-office .office-title {
        color: #60a5fa;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .presence-office h3 {
        color: #ffffff;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .presence-office p {
        color: #9ca3af;
        font-size: 14px;
        line-height: 1.8;
    }


/* =====================================================
   ABOUT CTA
===================================================== */

.about-cta {
    padding: 100px 0;
    background: #f7f8fa;
}

.about-cta-box {
    text-align: center;
    background: #eef5ff;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    padding: 70px 30px;
}

    .about-cta-box > span {
        color: #0066cc;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .about-cta-box h2 {
        max-width: 700px;
        margin: 15px auto;
        color: #111827;
        font-size: 42px;
        line-height: 1.2;
    }

    .about-cta-box p {
        max-width: 650px;
        margin: 0 auto 30px;
        color: #6b7280;
        line-height: 1.7;
    }


/* =====================================================
   ABOUT PAGE RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .about-page-hero h1 {
        font-size: 46px;
    }

    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .belief-grid {
        grid-template-columns: 1fr 1fr;
    }

    .presence-box {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .about-page-hero {
        padding: 70px 0;
    }

        .about-page-hero h1 {
            font-size: 38px;
        }

        .about-page-hero p {
            font-size: 16px;
        }

    .about-who-section {
        padding: 70px 0;
    }

    .about-page-image {
        height: 300px;
    }

    .about-who-content h2 {
        font-size: 34px;
    }

    .mission-section,
    .belief-section,
    .about-approach-section,
    .presence-section,
    .about-cta {
        padding: 70px 0;
    }

    .mission-card {
        padding: 30px;
    }

    .belief-grid {
        grid-template-columns: 1fr;
    }

    .presence-box {
        padding: 35px 25px;
    }

    .presence-content h2 {
        font-size: 32px;
    }

    .presence-offices {
        grid-template-columns: 1fr;
    }

    .presence-office {
        border-left: none;
        border-top: 1px solid #374151;
        padding-left: 0;
        padding-top: 20px;
    }

    .about-cta-box {
        padding: 50px 20px;
    }

        .about-cta-box h2 {
            font-size: 32px;
        }
}
/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page-hero {
    padding: 110px 0;
    background: linear-gradient( 135deg, #ffffff 0%, #eef5ff 100% );
}

.contact-page-hero-content {
    max-width: 850px;
}

.contact-page-hero h1 {
    font-size: 58px;
    line-height: 1.12;
    color: #111827;
    margin-bottom: 25px;
}

    .contact-page-hero h1 span {
        display: block;
        color: #0066cc;
    }

.contact-page-hero p {
    max-width: 720px;
    color: #5b6472;
    font-size: 18px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT MAIN
===================================================== */

.contact-main-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.contact-information h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.contact-information > p {
    color: #6b7280;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
}


/* CONTACT DETAILS */

.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: #eaf3ff;
    color: #0066cc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.contact-detail span {
    display: block;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.contact-detail a,
.contact-detail p {
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

    .contact-detail a:hover {
        color: #0066cc;
    }


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-box {
    background: #f7f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 45px;
}

.contact-form-heading {
    margin-bottom: 30px;
}

    .contact-form-heading > span {
        color: #0066cc;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .contact-form-heading h2 {
        color: #111827;
        font-size: 28px;
        margin-top: 10px;
    }


/* FORM */

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        color: #374151;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        padding: 13px 15px;
        background: #ffffff;
        color: #111827;
        font-family: inherit;
        font-size: 14px;
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-group textarea {
        resize: vertical;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, .10);
        }

.contact-submit {
    border: none;
    cursor: pointer;
    margin-top: 5px;
}


/* =====================================================
   OFFICES
===================================================== */

.contact-offices-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.contact-office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-office-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 40px;
}

.office-card-label {
    color: #0066cc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.contact-office-card h3 {
    color: #111827;
    font-size: 25px;
    margin-bottom: 15px;
}

.contact-office-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.contact-final-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-final-box {
    text-align: center;
    background: #111827;
    border-radius: 22px;
    padding: 70px 30px;
}

    .contact-final-box > span {
        color: #60a5fa;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .contact-final-box h2 {
        max-width: 700px;
        margin: 15px auto 30px;
        color: #ffffff;
        font-size: 42px;
        line-height: 1.2;
    }


/* =====================================================
   CONTACT RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .contact-page-hero h1 {
        font-size: 46px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


@media (max-width: 600px) {

    .contact-page-hero {
        padding: 70px 0;
    }

        .contact-page-hero h1 {
            font-size: 38px;
        }

        .contact-page-hero p {
            font-size: 16px;
        }

    .contact-main-section,
    .contact-offices-section,
    .contact-final-section {
        padding: 70px 0;
    }

    .contact-information h2 {
        font-size: 34px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-office-grid {
        grid-template-columns: 1fr;
    }

    .contact-office-card {
        padding: 30px;
    }

    .contact-final-box {
        padding: 50px 20px;
    }

        .contact-final-box h2 {
            font-size: 32px;
        }
}