/*
Theme Name: ARJ Tech Solutions
Theme URI: https://arjgrouppvtltd.com/
Author: ARJ Group Pvt Ltd
Description: ARJ Tech Solutions WordPress Theme
Version: 1.0.1
Text Domain: arj-tech-solutions
*/

/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f6f8fb;
    color: #0a1e40;

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1200px, calc(100% - 80px));
    margin: auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255,255,255,.93);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(10,30,64,.08);

    transition: .3s;
}

.nav-container {
    width: min(1350px, calc(100% - 70px));

    height: 88px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    display: flex;

    align-items: center;
}

.logo img {
    width: 110px;

    height: auto;

    display: block;
}

.nav-menu {
    display: flex;

    align-items: center;

    gap: 36px;
}

.nav-menu a {
    color: #687386;

    font-size: 12px;

    font-weight: 600;

    transition: .3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0a1e40;
}

.nav-cta {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    padding: 14px 20px;

    background: #0a1e40;

    color: white;

    font-size: 11px;

    font-weight: 700;

    transition: .3s;
}

.nav-cta:hover {
    background: #d5b13a;

    color: #0a1e40;
}

.menu-button {
    display: none;

    border: none;

    background: transparent;

    color: #0a1e40;

    font-size: 25px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f7f9fb 50%,
            #edf1f5 100%
        );
}

.hero-pattern {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(10,30,64,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(10,30,64,.035) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-glow {
    position: absolute;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background: rgba(213,177,58,.13);

    filter: blur(100px);

    right: -150px;

    top: 100px;
}

.hero-container {
    width: min(1350px, calc(100% - 100px));

    margin: 100px auto 0;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 60px;

    position: relative;

    z-index: 2;
}


/* HERO CONTENT */

.hero-tag {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #697487;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 28px;
}

.hero-tag span {
    width: 28px;

    height: 2px;

    background: #d5b13a;
}

.hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(55px, 6vw, 88px);

    line-height: .95;

    letter-spacing: -5px;

    color: #0a1e40;

    font-weight: 800;
}

.hero h1 em {
    font-style: normal;

    color: #c9a52f;
}

.hero-content > p {
    max-width: 600px;

    margin-top: 32px;

    color: #6b7789;

    font-size: 15px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 38px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    padding: 17px 22px;

    font-size: 11px;

    font-weight: 700;

    transition: .3s;
}

.btn-primary {
    background: #0a1e40;

    color: white;
}

.btn-primary:hover {
    background: #d5b13a;

    color: #0a1e40;

    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #d7dde5;

    color: #4f5c70;
}

.btn-secondary:hover {
    border-color: #0a1e40;

    color: #0a1e40;
}


/* MINI STATS */

.hero-mini-stats {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 65px;
}

.hero-mini-stats > div:not(.mini-line) {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.hero-mini-stats strong {
    font-size: 12px;

    color: #0a1e40;
}

.hero-mini-stats span {
    color: #7e8998;

    font-size: 8px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.mini-line {
    width: 1px;

    height: 30px;

    background: #dce0e6;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {
    height: 650px;

    position: relative;

    display: grid;

    place-items: center;
}

.hero-logo-card {
    width: 430px;

    height: 500px;

    position: relative;

    z-index: 4;

    padding: 28px;

    background: rgba(255,255,255,.82);

    border: 1px solid rgba(10,30,64,.1);

    box-shadow:
        0 40px 100px rgba(10,30,64,.12),
        inset 0 0 50px rgba(255,255,255,.6);

    backdrop-filter: blur(20px);

    transform: rotate(4deg);

    transition: .5s;
}

.hero-logo-card:hover {
    transform: rotate(1deg) translateY(-8px);
}

.logo-card-top {
    display: flex;

    justify-content: space-between;

    color: #8993a2;

    font-size: 8px;

    letter-spacing: 2px;
}

.main-logo-wrapper {
    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%,-50%);

    width: 310px;

    height: 310px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 20px 70px rgba(10,30,64,.1),
        0 0 0 1px rgba(10,30,64,.05);
}

.main-logo-wrapper img {
    width: 220px;

    height: 220px;

    object-fit: contain;
}

.logo-card-bottom {
    position: absolute;

    left: 28px;

    right: 28px;

    bottom: 25px;

    display: flex;

    justify-content: space-between;

    color: #8c95a3;

    font-size: 8px;

    letter-spacing: 2px;
}


/* ORBITS */

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(10,30,64,.08);

    border-radius: 50%;
}

.orbit-one {
    width: 580px;

    height: 580px;
}

.orbit-two {
    width: 690px;

    height: 290px;

    transform: rotate(-25deg);
}

.orbit-three {
    width: 480px;

    height: 480px;

    transform: rotate(45deg);
}

.hero-logo-glow {
    position: absolute;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background: rgba(213,177,58,.15);

    filter: blur(70px);
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    z-index: 8;

    padding: 20px 23px;

    background: #0a1e40;

    color: white;

    box-shadow:
        0 25px 60px rgba(10,30,64,.18);
}

.floating-card small {
    display: block;

    color: #d5b13a;

    font-size: 7px;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.floating-card strong {
    font-family: "Manrope";

    font-size: 19px;

    line-height: 1.1;
}

.floating-one {
    left: 5px;

    bottom: 90px;
}

.floating-two {
    right: -5px;

    top: 110px;

    background: white;

    color: #0a1e40;

    border: 1px solid #e1e5eb;
}

.floating-two small {
    color: #b08d17;
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;

    left: 50px;

    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #8b95a3;

    font-size: 8px;

    letter-spacing: 2px;
}

.hero-bottom div {
    width: 70px;

    height: 1px;

    background: #bbc2cb;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 140px 0;
}

.section-label {
    color: #c09b25;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 28px;
}


/* =====================================================
   ABOUT
===================================================== */

.intro {
    background: white;
}

.intro-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 100px;
}

.intro h2,
.companies-heading h2,
.why > .container > h2 {
    font-family: "Manrope";

    font-size: clamp(45px,5vw,70px);

    line-height: 1;

    letter-spacing: -4px;
}

.intro h2 span,
.companies-heading h2 span,
.why > .container > h2 span {
    display: block;

    color: #a2aab6;
}

.intro-text {
    color: #6b7789;

    font-size: 14px;

    line-height: 1.9;
}

.intro-text p + p {
    margin-top: 20px;
}

.text-link {
    display: inline-flex;

    gap: 20px;

    margin-top: 30px;

    color: #0a1e40;

    font-size: 11px;

    font-weight: 700;

    padding-bottom: 9px;

    border-bottom: 1px solid #d5b13a;
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    background: #0a1e40;

    color: white;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);
}

.stat-box {
    min-height: 190px;

    padding: 35px 30px;

    border-right: 1px solid rgba(255,255,255,.1);

    display: flex;

    justify-content: space-between;
}

.stat-number {
    color: #68768d;

    font-size: 10px;
}

.stat-box > div {
    display: flex;

    flex-direction: column;
}

.stat-box strong {
    font-family: "Manrope";

    font-size: 55px;

    line-height: 1;
}

.gold {
    color: #d5b13a;
}

.stat-box small {
    margin-top: 12px;

    color: #8794a8;

    font-size: 8px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =====================================================
   COMPANIES
===================================================== */

.companies {
    background: #f6f8fb;
}

.companies-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 70px;
}

.companies-heading > p {
    max-width: 390px;

    color: #707c8c;

    font-size: 13px;

    line-height: 1.8;
}

.companies-grid {
    margin-top: 75px;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    border-top: 1px solid #dce1e7;

    border-left: 1px solid #dce1e7;
}

.company-card {
    min-height: 400px;

    padding: 35px;

    position: relative;

    background: white;

    border-right: 1px solid #dce1e7;

    border-bottom: 1px solid #dce1e7;

    transition: .45s;

    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 30px 70px rgba(10,30,64,.12);
}

.featured-company {
    background:
        linear-gradient(
            145deg,
            white,
            #f8fafc
        );
}

.company-top {
    display: flex;

    justify-content: space-between;

    color: #9aa3af;

    font-size: 8px;

    letter-spacing: 2px;
}

.company-main-content {
    margin-top: 55px;

    display: flex;

    gap: 30px;
}

.company-logo-box {
    width: 105px;

    height: 105px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    padding: 12px;

    background: white;

    border: 1px solid #e0e5eb;

    transition: .4s;
}

.company-card:hover .company-logo-box {
    border-color: #d5b13a;

    box-shadow:
        0 12px 30px rgba(10,30,64,.08);
}

.company-logo-box img {
    width: 100%;

    height: 100%;

    object-fit: contain;
}

.company-info {
    flex: 1;
}

.company-category {
    color: #a17d0e;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;
}

.company-info h3,
.company-placeholder h3 {
    margin-top: 14px;

    font-family: "Manrope";

    font-size: 27px;

    line-height: 1.1;

    color: #0a1e40;
}

.company-info p,
.company-placeholder p {
    max-width: 390px;

    margin-top: 18px;

    color: #727e8e;

    font-size: 12px;

    line-height: 1.7;
}

.company-footer {
    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #8993a0;

    font-size: 8px;

    letter-spacing: 2px;
}

.company-arrow {
    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    border: 1px solid #dce1e7;

    color: #0a1e40;

    font-size: 15px;

    transition: .3s;
}

.company-card:hover .company-arrow {
    background: #0a1e40;

    color: white;

    border-color: #0a1e40;
}


/* PLACEHOLDER COMPANIES */

.company-placeholder {
    margin-top: 60px;

    display: flex;

    gap: 25px;
}

.placeholder-icon {
    width: 65px;

    height: 65px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 1px dashed #ccd2da;

    color: #c6a533;

    font-size: 28px;

    font-weight: 300;
}


/* =====================================================
   VISION
===================================================== */

.vision {
    position: relative;

    overflow: hidden;

    background: #0a1e40;

    color: white;
}

.vision-watermark {
    position: absolute;

    right: -100px;

    top: 50%;

    transform: translateY(-50%);

    font-family: "Manrope";

    font-size: 40vw;

    line-height: 1;

    font-weight: 800;

    color: rgba(255,255,255,.025);
}

.vision-container {
    position: relative;

    z-index: 2;
}

.vision .section-label {
    color: #d5b13a;
}

.vision h2 {
    font-family: "Manrope";

    font-size: clamp(50px,7vw,95px);

    line-height: .95;

    letter-spacing: -5px;
}

.vision h2 span {
    color: #718096;
}

.vision-container > p {
    max-width: 570px;

    margin-top: 38px;

    color: #9aa7bb;

    font-size: 14px;

    line-height: 1.8;
}

.vision-values {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    margin-top: 70px;

    border-top: 1px solid rgba(255,255,255,.1);
}

.vision-values div {
    min-height: 110px;

    padding: 25px;

    border-right: 1px solid rgba(255,255,255,.1);

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.vision-values strong {
    color: #d5b13a;

    font-size: 10px;
}

.vision-values span {
    color: #c2cbd7;

    font-size: 12px;
}


/* =====================================================
   WHY
===================================================== */

.why {
    background: white;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    margin-top: 80px;

    border-top: 1px solid #dce1e7;
}

.why-card {
    min-height: 290px;

    padding: 35px;

    border-right: 1px solid #dce1e7;
}

.why-card > span {
    color: #c5a12b;

    font-size: 10px;
}

.why-card h3 {
    margin-top: 55px;

    font-family: "Manrope";

    font-size: 23px;
}

.why-card p {
    margin-top: 15px;

    color: #707b8b;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   CTA
===================================================== */

.contact-cta {
    padding: 150px 0;

    background:
        linear-gradient(
            120deg,
            #d5b13a,
            #f0d775
        );

    color: #0a1e40;

    overflow: hidden;

    position: relative;
}

.contact-cta h2 {
    max-width: 950px;

    font-family: "Manrope";

    font-size: clamp(50px,7vw,95px);

    line-height: .95;

    letter-spacing: -5px;
}

.contact-cta h2 span {
    color: rgba(10,30,64,.42);
}

.contact-cta p {
    max-width: 520px;

    margin: 35px 0;

    color: rgba(10,30,64,.65);

    font-size: 14px;

    line-height: 1.8;
}

.btn-dark {
    display: inline-flex;

    align-items: center;

    gap: 23px;

    padding: 18px 23px;

    background: #0a1e40;

    color: white;

    font-size: 11px;

    font-weight: 700;

    transition: .3s;
}

.btn-dark:hover {
    background: white;

    color: #0a1e40;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 80px 0 30px;

    background: #06152e;

    color: white;
}

.footer-top {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img {
    width: 115px;

    background: white;
}

.footer-brand p {
    margin-top: 20px;

    color: #8290a5;

    font-size: 12px;

    line-height: 1.8;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-column > span {
    margin-bottom: 10px;

    color: #d5b13a;

    font-size: 8px;

    letter-spacing: 2px;
}

.footer-column a {
    color: #8b98ac;

    font-size: 11px;

    transition: .3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    color: #596980;

    font-size: 9px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1000px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .nav-menu.mobile-open {

        display: flex;

        position: absolute;

        top: 88px;

        left: 0;

        width: 100%;

        padding: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        background: white;

        border-bottom: 1px solid #e2e6eb;

    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 500px;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .companies-heading {
        display: block;
    }

    .companies-heading > p {
        margin-top: 30px;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr;
    }

}


@media (max-width: 700px) {

    .container {
        width: calc(100% - 40px);
    }

    .nav-container,
    .hero-container {
        width: calc(100% - 40px);
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 51px;

        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-mini-stats {
        gap: 12px;
    }

    .hero-mini-stats span {
        font-size: 7px;
    }

    .hero-visual {
        height: 410px;

        transform: scale(.76);

        margin: -50px -60px;
    }

    .hero-logo-card {
        width: 390px;

        height: 460px;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .company-main-content {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stat-box {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .vision-values {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

}
/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}