/* =========================================================
   HiTek Synergies Private Limited
   Main Website Stylesheet
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {

    --navy-dark: #020817;
    --navy: #061226;
    --navy-light: #0a1b35;

    --blue-dark: #0057d9;
    --blue: #008cff;
    --blue-light: #00c8ff;

    --cyan: #00e5ff;
    --cyan-light: #48f2ff;

    --white: #ffffff;
    --text-dark: #07162f;
    --text-light: #dcecff;
    --text-muted: #91a6c2;

    --border: rgba(0, 194, 255, 0.20);
    --border-light: rgba(0, 194, 255, 0.35);

    --card-bg: rgba(7, 25, 50, 0.82);

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    --blue-glow:
        0 0 20px rgba(0, 174, 255, 0.35);

    --cyan-glow:
        0 0 35px rgba(0, 229, 255, 0.35);

    --transition:
        all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --container:
        1200px;

}


/* =========================================================
   02. RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--navy-dark);

    color:
        var(--white);

    line-height:
        1.6;

    overflow-x:
        hidden;

}


img {
    max-width: 100%;
    display: block;
}


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


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    border: none;
    cursor: pointer;
}


ul {
    list-style: none;
}


/* =========================================================
   03. CONTAINER
========================================================= */

.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin:
        0 auto;

}


/* =========================================================
   04. PRELOADER
========================================================= */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #092650 0%,
            #030b1b 45%,
            #01040b 100%
        );

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;

}


#preloader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-container {

    width: 120px;

    height: 120px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.loader-ring {

    position: absolute;

    width: 110px;

    height: 110px;

    border-radius: 50%;

    border: 2px solid transparent;

    border-top-color:
        var(--cyan);

    border-right-color:
        var(--blue);

    animation:
        loaderSpin 1.2s linear infinite;

    box-shadow:
        0 0 25px rgba(0, 211, 255, 0.35);

}


.loader-logo {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    overflow: hidden;

}


.loader-logo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


#preloader p {

    margin-top: 25px;

    color:
        var(--cyan);

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


@keyframes loaderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   05. HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    background:
        rgba(2, 8, 23, 0.72);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid transparent;

    transition:
        var(--transition);

}


.site-header.scrolled {

    background:
        rgba(2, 8, 23, 0.94);

    border-bottom-color:
        var(--border);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.25);

}


.nav-container {

    min-height:
        76px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    flex-shrink:
        0;

}


.brand img {

    width:
        46px;

    height:
        46px;

    object-fit:
        contain;

    border-radius:
        50%;

    filter:
        drop-shadow(
            0 0 8px rgba(0, 194, 255, 0.45)
        );

    transition:
        var(--transition);

}


.brand:hover img {

    transform:
        rotate(8deg)
        scale(1.08);

    filter:
        drop-shadow(
            0 0 16px rgba(0, 229, 255, 0.85)
        );

}


.brand-text {

    display:
        flex;

    flex-direction:
        column;

    line-height:
        1;

}


.brand-name {

    font-size:
        17px;

    font-weight:
        700;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            var(--cyan)
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

}


.brand-subtitle {

    font-size:
        8px;

    margin-top:
        5px;

    color:
        var(--text-muted);

    letter-spacing:
        1.3px;

    text-transform:
        uppercase;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        27px;

}


.nav-link {

    position:
        relative;

    color:
        #c8d7e9;

    font-size:
        13px;

    font-weight:
        500;

    padding:
        28px 0;

    transition:
        var(--transition);

}


.nav-link::after {

    content: "";

    position:
        absolute;

    bottom:
        19px;

    left:
        50%;

    width:
        0;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    transform:
        translateX(-50%);

    box-shadow:
        0 0 10px var(--cyan);

    transition:
        var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color:
        var(--cyan);

}


.nav-link:hover::after,
.nav-link.active::after {

    width:
        100%;

}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-btn {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        11px 18px;

    border-radius:
        7px;

    color:
        white;

    font-size:
        12px;

    font-weight:
        600;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    box-shadow:
        0 0 18px rgba(0, 184, 255, 0.25);

    transition:
        var(--transition);

}


.header-btn i {

    transition:
        transform 0.3s ease;

}


.header-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 0 30px rgba(0, 211, 255, 0.55);

}


.header-btn:hover i {

    transform:
        translateX(4px);

}


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

.mobile-menu-btn {

    width:
        42px;

    height:
        42px;

    display:
        none;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        5px;

    background:
        rgba(0, 154, 255, 0.08);

    border:
        1px solid var(--border);

    border-radius:
        7px;

}


.mobile-menu-btn span {

    width:
        20px;

    height:
        2px;

    background:
        var(--cyan);

    transition:
        var(--transition);

}


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

.hero-section {

    position:
        relative;

    min-height:
        720px;

    padding-top:
        76px;

    display:
        flex;

    align-items:
        center;

    overflow:
        hidden;

    background:

        radial-gradient(
            circle at 78% 50%,
            rgba(0, 136, 255, 0.18),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(0, 229, 255, 0.06),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #020816,
            #041329 55%,
            #020a17
        );

}


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

.hero-section::before {

    content: "";

    position:
        absolute;

    inset:
        0;

    background-image:

        linear-gradient(
            rgba(0, 178, 255, 0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(0, 178, 255, 0.035) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

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

    pointer-events:
        none;

}


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

.hero-circuit-bg {

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    opacity:
        0.8;

}


.circuit-line {

    position:
        absolute;

    height:
        1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue),
            var(--cyan),
            transparent
        );

    animation:
        circuitMove 5s linear infinite;

}


.line-1 {

    width:
        360px;

    top:
        24%;

    right:
        2%;

}


.line-2 {

    width:
        240px;

    top:
        31%;

    right:
        5%;

    animation-delay:
        1s;

}


.line-3 {

    width:
        310px;

    top:
        68%;

    right:
        8%;

    animation-delay:
        2s;

}


.line-4 {

    width:
        190px;

    top:
        76%;

    left:
        3%;

    animation-delay:
        1.5s;

}


.line-5 {

    width:
        260px;

    top:
        20%;

    left:
        0;

    animation-delay:
        3s;

}


@keyframes circuitMove {

    0% {

        transform:
            translateX(-40px);

        opacity:
            0.15;

    }

    50% {

        opacity:
            0.9;

    }

    100% {

        transform:
            translateX(40px);

        opacity:
            0.15;

    }

}


/* =========================================================
   CIRCUIT DOTS
========================================================= */

.circuit-dot {

    position:
        absolute;

    width:
        5px;

    height:
        5px;

    border-radius:
        50%;

    background:
        var(--cyan);

    box-shadow:
        0 0 12px var(--cyan);

    animation:
        dotPulse 2s ease-in-out infinite;

}


.dot-1 {
    top: 23%;
    right: 15%;
}


.dot-2 {
    top: 31%;
    right: 25%;
    animation-delay: .4s;
}


.dot-3 {
    top: 42%;
    right: 4%;
    animation-delay: .8s;
}


.dot-4 {
    top: 55%;
    right: 15%;
    animation-delay: 1.2s;
}


.dot-5 {
    top: 66%;
    right: 28%;
    animation-delay: 1.6s;
}


.dot-6 {
    top: 74%;
    left: 20%;
    animation-delay: .7s;
}


.dot-7 {
    top: 30%;
    left: 10%;
    animation-delay: 1.4s;
}


.dot-8 {
    top: 65%;
    left: 7%;
    animation-delay: 2s;
}


@keyframes dotPulse {

    0%,
    100% {

        transform:
            scale(0.7);

        opacity:
            0.4;

    }

    50% {

        transform:
            scale(1.5);

        opacity:
            1;

    }

}


/* =========================================================
   PARTICLES
========================================================= */

.particles {

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

}


.particles span {

    position:
        absolute;

    width:
        3px;

    height:
        3px;

    border-radius:
        50%;

    background:
        var(--cyan);

    box-shadow:
        0 0 10px var(--cyan);

    animation:
        particleFloat 7s linear infinite;

}


.particles span:nth-child(1) {
    left: 15%;
    top: 30%;
    animation-delay: 0s;
}

.particles span:nth-child(2) {
    left: 25%;
    top: 70%;
    animation-delay: 1s;
}

.particles span:nth-child(3) {
    left: 38%;
    top: 20%;
    animation-delay: 2s;
}

.particles span:nth-child(4) {
    left: 48%;
    top: 75%;
    animation-delay: 3s;
}

.particles span:nth-child(5) {
    left: 62%;
    top: 25%;
    animation-delay: 1.5s;
}

.particles span:nth-child(6) {
    left: 72%;
    top: 70%;
    animation-delay: 2.5s;
}

.particles span:nth-child(7) {
    left: 83%;
    top: 40%;
    animation-delay: 4s;
}

.particles span:nth-child(8) {
    left: 90%;
    top: 75%;
    animation-delay: 3.5s;
}

.particles span:nth-child(9) {
    left: 55%;
    top: 55%;
    animation-delay: 2.2s;
}

.particles span:nth-child(10) {
    left: 30%;
    top: 48%;
    animation-delay: 4.5s;
}


@keyframes particleFloat {

    0% {

        transform:
            translateY(30px);

        opacity:
            0;

    }

    20% {

        opacity:
            1;

    }

    80% {

        opacity:
            1;

    }

    100% {

        transform:
            translateY(-90px);

        opacity:
            0;

    }

}


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

.hero-container {

    position:
        relative;

    z-index:
        3;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    gap:
        50px;

}


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

.hero-content {

    max-width:
        600px;

}


.hero-small-title {

    display:
        inline-block;

    margin-bottom:
        12px;

    color:
        var(--cyan);

    font-size:
        13px;

    font-weight:
        600;

    letter-spacing:
        2px;

}


.hero-content h1 {

    margin-bottom:
        20px;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height:
        0.98;

    letter-spacing:
        -3px;

    font-weight:
        800;

}


.hero-content h1 span {

    display:
        block;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan),
            #ffffff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

    background-size:
        200% auto;

    animation:
        gradientText 4s linear infinite;

}


@keyframes gradientText {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }

}


.hero-content > p {

    max-width:
        520px;

    margin-bottom:
        30px;

    color:
        var(--text-muted);

    font-size:
        16px;

}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-bottom:
        45px;

}


.primary-btn,
.secondary-btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    min-height:
        48px;

    padding:
        0 22px;

    border-radius:
        6px;

    font-size:
        13px;

    font-weight:
        600;

    transition:
        var(--transition);

}


.primary-btn {

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    box-shadow:
        0 0 20px rgba(0, 184, 255, 0.25);

}


.primary-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 8px 35px rgba(0, 200, 255, 0.5);

}


.primary-btn i {

    transition:
        transform 0.3s ease;

}


.primary-btn:hover i {

    transform:
        translateX(5px);

}


.secondary-btn {

    color:
        var(--text-light);

    border:
        1px solid rgba(0, 209, 255, 0.5);

    background:
        rgba(0, 150, 255, 0.04);

}


.secondary-btn:hover {

    color:
        white;

    border-color:
        var(--cyan);

    background:
        rgba(0, 200, 255, 0.12);

    box-shadow:
        0 0 25px rgba(0, 200, 255, 0.22);

    transform:
        translateY(-4px);

}


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

.hero-services {

    display:
        flex;

    align-items:
        center;

    gap:
        0;

}


.hero-service-item {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        0 18px;

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

    color:
        #b6c9df;

    font-size:
        9px;

    text-transform:
        uppercase;

    letter-spacing:
        0.3px;

}


.hero-service-item:first-child {

    padding-left:
        0;

}


.hero-service-item:last-child {

    border-right:
        none;

}


.hero-service-icon {

    width:
        35px;

    height:
        35px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(0, 214, 255, 0.45);

    border-radius:
        50%;

    color:
        var(--cyan);

    background:
        rgba(0, 160, 255, 0.07);

    transition:
        var(--transition);

}


.hero-service-item:hover
.hero-service-icon {

    color:
        white;

    background:
        var(--blue);

    border-color:
        var(--cyan);

    transform:
        translateY(-5px);

    box-shadow:
        0 0 20px rgba(0, 200, 255, 0.45);

}


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

.hero-visual {

    position:
        relative;

    height:
        570px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.hero-glow {

    position:
        absolute;

    width:
        470px;

    height:
        470px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 185, 255, 0.23),
            transparent 68%
        );

    filter:
        blur(15px);

    animation:
        glowPulse 4s ease-in-out infinite;

}


@keyframes glowPulse {

    0%,
    100% {

        transform:
            scale(0.9);

        opacity:
            0.6;

    }

    50% {

        transform:
            scale(1.08);

        opacity:
            1;

    }

}


/* =========================================================
   ORBITS
========================================================= */

.logo-orbit {

    position:
        absolute;

    border:
        1px solid rgba(0, 209, 255, 0.38);

    border-radius:
        50%;

}


.orbit-one {

    width:
        460px;

    height:
        460px;

    animation:
        orbitRotate 18s linear infinite;

}


.orbit-two {

    width:
        410px;

    height:
        410px;

    border-style:
        dashed;

    animation:
        orbitRotateReverse 13s linear infinite;

}


.orbit-three {

    width:
        520px;

    height:
        520px;

    border-color:
        rgba(0, 128, 255, 0.18);

    animation:
        orbitRotate 25s linear infinite;

}


@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes orbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   ORBIT DOTS
========================================================= */

.orbit-dot {

    position:
        absolute;

    width:
        10px;

    height:
        10px;

    border-radius:
        50%;

    background:
        var(--cyan);

    box-shadow:
        0 0 15px var(--cyan),
        0 0 35px rgba(0, 205, 255, 0.6);

}


.orbit-dot-1 {

    top:
        15%;

    left:
        50%;

    animation:
        orbitFloat1 5s linear infinite;

}


.orbit-dot-2 {

    top:
        28%;

    right:
        8%;

    animation:
        orbitFloat2 6s linear infinite;

}


.orbit-dot-3 {

    bottom:
        17%;

    right:
        15%;

    animation:
        orbitFloat3 7s linear infinite;

}


.orbit-dot-4 {

    bottom:
        11%;

    left:
        25%;

    animation:
        orbitFloat4 6s linear infinite;

}


.orbit-dot-5 {

    top:
        33%;

    left:
        7%;

    animation:
        orbitFloat5 5.5s linear infinite;

}


.orbit-dot-6 {

    top:
        10%;

    right:
        25%;

    animation:
        orbitFloat6 8s linear infinite;

}


@keyframes orbitFloat1 {

    0% {
        transform: rotate(0deg) translateX(230px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(230px) rotate(-360deg);
    }

}


@keyframes orbitFloat2 {

    0% {
        transform: rotate(0deg) translateX(205px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(205px) rotate(-360deg);
    }

}


@keyframes orbitFloat3 {

    0% {
        transform: rotate(0deg) translateX(250px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(250px) rotate(-360deg);
    }

}


@keyframes orbitFloat4 {

    0% {
        transform: rotate(0deg) translateX(215px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(215px) rotate(-360deg);
    }

}


@keyframes orbitFloat5 {

    0% {
        transform: rotate(0deg) translateX(205px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(205px) rotate(-360deg);
    }

}


@keyframes orbitFloat6 {

    0% {
        transform: rotate(0deg) translateX(250px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(250px) rotate(-360deg);
    }

}


/* =========================================================
   MAIN HERO LOGO
========================================================= */

.hero-logo-wrapper {

    position:
        relative;

    z-index:
        5;

    width:
        330px;

    height:
        330px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

}


.hero-logo {

    position:
        relative;

    z-index:
        3;

    width:
        315px;

    height:
        315px;

    object-fit:
        contain;

    filter:
        drop-shadow(
            0 0 25px rgba(0, 188, 255, 0.55)
        );

    animation:
        logoFloat 4s ease-in-out infinite;

}


@keyframes logoFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


.logo-pulse {

    position:
        absolute;

    inset:
        12px;

    border:
        1px solid rgba(0, 229, 255, 0.45);

    border-radius:
        50%;

    animation:
        logoPulse 2.5s ease-out infinite;

}


@keyframes logoPulse {

    0% {

        transform:
            scale(0.85);

        opacity:
            0.8;

    }

    100% {

        transform:
            scale(1.25);

        opacity:
            0;

    }

}


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

.hero-bottom-glow {

    position:
        absolute;

    bottom:
        -80px;

    left:
        50%;

    width:
        70%;

    height:
        150px;

    transform:
        translateX(-50%);

    background:
        rgba(0, 190, 255, 0.16);

    filter:
        blur(70px);

}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {

    opacity:
        0;

    transform:
        translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.active {

    opacity:
        1;

    transform:
        translateY(0);

}


.reveal-left {

    opacity:
        0;

    transform:
        translateX(-50px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;

}


.reveal-left.active {

    opacity:
        1;

    transform:
        translateX(0);

}


.reveal-right {

    opacity:
        0;

    transform:
        translateX(50px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;

}


.reveal-right.active {

    opacity:
        1;

    transform:
        translateX(0);

}


/* =========================================================
   SECTION COMMON
========================================================= */

section {

    position:
        relative;

}


.section-heading {

    max-width:
        720px;

    margin:
        0 auto 55px;

    text-align:
        center;

}


.section-label {

    display:
        inline-block;

    margin-bottom:
        12px;

    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

}


.section-heading h2 {

    color:
        var(--text-dark);

    font-size:
        clamp(30px, 4vw, 44px);

    line-height:
        1.15;

    font-weight:
        800;

}


.section-heading h2 span {

    color:
        var(--blue);

}


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

.about-section {

    padding:
        110px 0;

    background:
        #f3f8fc;

    color:
        var(--text-dark);

}


.about-container {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    gap:
        80px;

}


.about-content {

    max-width:
        570px;

}


.about-content .section-label {

    color:
        var(--blue);

}


.about-content h2 {

    margin-bottom:
        20px;

    font-size:
        clamp(32px, 4vw, 46px);

    line-height:
        1.12;

}


.about-content h2 span {

    color:
        var(--blue);

}


.about-content > p {

    color:
        #64748b;

    font-size:
        15px;

    margin-bottom:
        25px;

}


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

.about-features {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        12px;

    margin-bottom:
        30px;

}


.about-feature {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    color:
        #263b55;

    font-size:
        13px;

}


.about-feature i {

    color:
        var(--blue);

    transition:
        var(--transition);

}


.about-feature:hover i {

    color:
        var(--cyan);

    transform:
        scale(1.2);

}


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

.about-image {

    position:
        relative;

}


.image-glow {

    position:
        absolute;

    inset:
        -20px;

    background:
        rgba(0, 166, 255, 0.18);

    filter:
        blur(45px);

    z-index:
        0;

}


.about-image-frame {

    position:
        relative;

    z-index:
        2;

    min-height:
        390px;

    border-radius:
        14px;

    overflow:
        hidden;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(0, 170, 255, 0.35),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #03152c,
            #061f40
        );

    border:
        1px solid rgba(0, 165, 255, 0.4);

    box-shadow:
        var(--shadow);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    transition:
        var(--transition);

}


.about-image-frame:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--cyan);

    box-shadow:
        0 25px 60px rgba(0, 139, 255, 0.25);

}


.about-placeholder {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        15px;

    color:
        var(--cyan);

}


.about-placeholder i {

    font-size:
        100px;

    filter:
        drop-shadow(
            0 0 25px rgba(0, 220, 255, 0.5)
        );

}


.about-placeholder span {

    font-size:
        20px;

    font-weight:
        700;

    letter-spacing:
        1px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    padding:
        110px 0;

    background:
        var(--navy-dark);

    overflow:
        hidden;

}


.services-section .section-heading h2 {

    color:
        white;

}


.services-section .section-label {

    color:
        var(--cyan);

}


.services-grid {

    display:
        grid;

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

    gap:
        20px;

}


.service-card {

    position:
        relative;

    padding:
        32px 28px;

    min-height:
        280px;

    border:
        1px solid var(--border);

    border-radius:
        12px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 31, 62, 0.9),
            rgba(3, 16, 34, 0.92)
        );

    overflow:
        hidden;

    transition:
        var(--transition);

}


.service-card::before {

    content: "";

    position:
        absolute;

    width:
        180px;

    height:
        180px;

    right:
        -80px;

    top:
        -80px;

    border-radius:
        50%;

    background:
        rgba(0, 204, 255, 0.08);

    transition:
        var(--transition);

}


.service-card::after {

    content: "";

    position:
        absolute;

    bottom:
        0;

    left:
        0;

    width:
        0;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    transition:
        var(--transition);

}


.service-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(0, 220, 255, 0.65);

    box-shadow:
        0 20px 50px rgba(0, 166, 255, 0.15);

}


.service-card:hover::before {

    transform:
        scale(2);

}


.service-card:hover::after {

    width:
        100%;

}


.service-icon {

    width:
        65px;

    height:
        65px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        25px;

    border:
        1px solid rgba(0, 211, 255, 0.35);

    border-radius:
        12px;

    color:
        var(--cyan);

    background:
        rgba(0, 163, 255, 0.08);

    font-size:
        25px;

    transition:
        var(--transition);

}


.service-card:hover .service-icon {

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    border-color:
        var(--cyan);

    transform:
        rotate(-5deg)
        scale(1.08);

    box-shadow:
        0 0 25px rgba(0, 205, 255, 0.4);

}


.service-card h3 {

    margin-bottom:
        10px;

    font-size:
        19px;

}


.service-card p {

    margin-bottom:
        18px;

    color:
        var(--text-muted);

    font-size:
        13px;

}


.card-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    color:
        var(--cyan);

    font-size:
        12px;

    font-weight:
        600;

    transition:
        var(--transition);

}


.card-link i {

    transition:
        transform 0.3s ease;

}


.card-link:hover {

    color:
        white;

}


.card-link:hover i {

    transform:
        translateX(5px);

}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {

    padding:
        100px 0;

    background:
        #f4f9fc;

}


.why-grid {

    display:
        grid;

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

    gap:
        30px;

}


.why-card {

    text-align:
        center;

    padding:
        20px;

}


.why-icon {

    width:
        70px;

    height:
        70px;

    margin:
        0 auto 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        var(--blue);

    background:
        rgba(0, 133, 255, 0.07);

    border:
        1px solid rgba(0, 133, 255, 0.2);

    font-size:
        25px;

    transition:
        var(--transition);

}


.why-card:hover .why-icon {

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    transform:
        translateY(-8px);

    box-shadow:
        0 12px 30px rgba(0, 140, 255, 0.25);

}


.why-card h3 {

    margin-bottom:
        10px;

    color:
        var(--text-dark);

    font-size:
        16px;

}


.why-card p {

    color:
        #70839a;

    font-size:
        13px;

}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {

    padding:
        110px 0;

    background:
        var(--navy-dark);

}


.solutions-section .section-heading h2 {

    color:
        white;

}


.solutions-section .section-label {

    color:
        var(--cyan);

}


.solutions-grid {

    display:
        grid;

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

    gap:
        20px;

}


.solution-card {

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        10px;

    background:
        #071a32;

    transition:
        var(--transition);

}


.solution-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--cyan);

    box-shadow:
        0 20px 50px rgba(0, 170, 255, 0.15);

}


.solution-image {

    height:
        180px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:

        radial-gradient(
            circle,
            rgba(0, 200, 255, 0.2),
            transparent 65%
        ),

        linear-gradient(
            135deg,
            #061c39,
            #020b1a
        );

    color:
        var(--cyan);

    font-size:
        65px;

    border-bottom:
        1px solid var(--border);

    transition:
        var(--transition);

}


.solution-card:hover .solution-image {

    color:
        white;

    background:

        radial-gradient(
            circle,
            rgba(0, 220, 255, 0.4),
            transparent 65%
        ),

        linear-gradient(
            135deg,
            #063b70,
            #021328
        );

}


.solution-content {

    padding:
        22px;

}


.solution-content h3 {

    margin-bottom:
        8px;

    font-size:
        17px;

}


.solution-content p {

    color:
        var(--text-muted);

    font-size:
        12px;

}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {

    padding:
        100px 0;

    background:
        #f3f8fc;

}


.industries-grid {

    display:
        grid;

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

    gap:
        15px;

}


.industry-card {

    min-height:
        150px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        15px;

    border:
        1px solid #dce8f2;

    border-radius:
        10px;

    background:
        white;

    color:
        var(--text-dark);

    transition:
        var(--transition);

}


.industry-card i {

    font-size:
        28px;

    color:
        var(--blue);

    transition:
        var(--transition);

}


.industry-card span {

    font-size:
        12px;

    font-weight:
        600;

}


.industry-card:hover {

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    border-color:
        var(--cyan);

    transform:
        translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 150, 255, 0.25);

}


.industry-card:hover i {

    color:
        white;

    transform:
        scale(1.15);

}


/* =========================================================
   BLOG
========================================================= */

.blog-section {

    padding:
        110px 0;

    background:
        var(--navy-dark);

}


.blog-section .section-heading h2 {

    color:
        white;

}


.blog-section .section-label {

    color:
        var(--cyan);

}


.blog-grid {

    display:
        grid;

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

    gap:
        25px;

}


.blog-card {

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        12px;

    background:
        #061a33;

    transition:
        var(--transition);

}


.blog-card:hover {

    transform:
        translateY(-10px);

    border-color:
        var(--cyan);

}


.blog-image {

    height:
        200px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        linear-gradient(
            135deg,
            #05295a,
            #031025
        );

    color:
        var(--cyan);

    font-size:
        65px;

}


.blog-content {

    padding:
        25px;

}


.blog-content > span {

    color:
        var(--cyan);

    font-size:
        11px;

    font-weight:
        600;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

}


.blog-content h3 {

    margin:
        10px 0 18px;

    font-size:
        18px;

    line-height:
        1.35;

}


.blog-content a {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    color:
        var(--cyan);

    font-size:
        12px;

    font-weight:
        600;

}


.blog-content a i {

    transition:
        transform 0.3s ease;

}


.blog-content a:hover i {

    transform:
        translateX(5px);

}


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

.cta-section {

    position:
        relative;

    padding:
        45px 0;

    overflow:
        hidden;

    background:
        linear-gradient(
            110deg,
            #0757e8,
            #009fff,
            #00cfff
        );

}


.cta-section::before {

    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(255,255,255,0.15),
            transparent 30%
        );

}


.cta-container {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        center;

    gap:
        25px;

}


.cta-icon {

    width:
        65px;

    height:
        65px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(255,255,255,0.35);

    border-radius:
        50%;

    color:
        white;

    font-size:
        23px;

    background:
        rgba(255,255,255,0.08);

}


.cta-content {

    flex:
        1;

}


.cta-content h2 {

    margin-bottom:
        5px;

    font-size:
        24px;

}


.cta-content p {

    font-size:
        13px;

    opacity:
        0.88;

}


.cta-btn {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        14px 22px;

    border-radius:
        6px;

    background:
        #021126;

    color:
        white;

    font-size:
        12px;

    font-weight:
        600;

    transition:
        var(--transition);

}


.cta-btn:hover {

    background:
        white;

    color:
        var(--blue);

    transform:
        translateY(-4px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);

}


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

.site-footer {

    background:
        #020916;

    color:
        white;

}


.footer-container {

    display:
        grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1fr
        1.4fr;

    gap:
        45px;

    padding:
        75px 0 55px;

}


.footer-brand {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    margin-bottom:
        20px;

}


.footer-brand img {

    width:
        50px;

    height:
        50px;

    object-fit:
        contain;

}


.footer-brand div {

    display:
        flex;

    flex-direction:
        column;

}


.footer-brand strong {

    font-size:
        17px;

}


.footer-brand small {

    color:
        var(--cyan);

    font-size:
        8px;

    letter-spacing:
        1px;

}


.footer-company > p {

    max-width:
        260px;

    color:
        #7890ac;

    font-size:
        12px;

    line-height:
        1.8;

}


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

.footer-column {

    display:
        flex;

    flex-direction:
        column;

    gap:
        10px;

}


.footer-column h3 {

    margin-bottom:
        10px;

    color:
        white;

    font-size:
        14px;

}


.footer-column > a {

    width:
        fit-content;

    color:
        #7f94ad;

    font-size:
        12px;

    transition:
        var(--transition);

}


.footer-column > a:hover {

    color:
        var(--cyan);

    transform:
        translateX(5px);

}


.contact-column a {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        9px;

}


.contact-column i {

    margin-top:
        3px;

    color:
        var(--cyan);

}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links {

    display:
        flex;

    gap:
        8px;

    margin-top:
        18px;

}


.social-links a {

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(0, 198, 255, 0.25);

    border-radius:
        50%;

    color:
        #91a6bf;

    font-size:
        12px;

    transition:
        var(--transition);

}


.social-links a:hover {

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    border-color:
        var(--cyan);

    transform:
        translateY(-4px);

    box-shadow:
        0 0 18px rgba(0, 210, 255, 0.4);

}


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

.footer-bottom {

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

}


.footer-bottom .container {

    min-height:
        65px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

}


.footer-bottom p {

    color:
        #627993;

    font-size:
        10px;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position:
        fixed;

    right:
        25px;

    bottom:
        25px;

    z-index:
        999;

    width:
        45px;

    height:
        45px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    box-shadow:
        0 0 20px rgba(0, 190, 255, 0.3);

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(20px);

    transition:
        var(--transition);

}


.back-to-top.show {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0);

}


.back-to-top:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 0 30px rgba(0, 220, 255, 0.55);

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    color:
        white;

    background:
        var(--blue);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width:
        8px;

}


::-webkit-scrollbar-track {

    background:
        #020817;

}


::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--blue),
            var(--cyan)
        );

    border-radius:
        10px;

}


::-webkit-scrollbar-thumb:hover {

    background:
        var(--cyan);

}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {


    .main-nav {

        gap:
            16px;

    }


    .nav-link {

        font-size:
            12px;

    }


    .hero-container {

        gap:
            20px;

    }


    .hero-logo {

        width:
            280px;

        height:
            280px;

    }


    .hero-logo-wrapper {

        width:
            300px;

        height:
            300px;

    }


    .orbit-one {

        width:
            400px;

        height:
            400px;

    }


    .orbit-two {

        width:
            360px;

        height:
            360px;

    }


    .orbit-three {

        width:
            450px;

        height:
            450px;

    }


    .footer-container {

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

    }


}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {


    .main-nav {

        position:
            fixed;

        top:
            76px;

        right:
            -100%;

        width:
            280px;

        min-height:
            calc(100vh - 76px);

        padding:
            30px;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            0;

        background:
            rgba(2, 12, 29, 0.98);

        border-left:
            1px solid var(--border);

        transition:
            right 0.4s ease;

    }


    .main-nav.open {

        right:
            0;

    }


    .nav-link {

        width:
            100%;

        padding:
            14px 0;

    }


    .nav-link::after {

        bottom:
            5px;

        left:
            0;

        transform:
            none;

    }


    .mobile-menu-btn {

        display:
            flex;

    }


    .header-btn {

        display:
            none;

    }


    .hero-section {

        min-height:
            auto;

        padding-top:
            130px;

        padding-bottom:
            80px;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        text-align:
            center;

    }


    .hero-content {

        max-width:
            700px;

        margin:
            0 auto;

    }


    .hero-content > p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .hero-buttons {

        justify-content:
            center;

    }


    .hero-services {

        justify-content:
            center;

    }


    .hero-visual {

        height:
            500px;

        margin-top:
            10px;

    }


    .about-container {

        grid-template-columns:
            1fr;

        gap:
            50px;

    }


    .about-content {

        max-width:
            100%;

    }


    .services-grid,
    .solutions-grid {

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

    }


    .why-grid {

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

    }


    .industries-grid {

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

    }


    .blog-grid {

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

    }


}

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

.footer-address {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #7f94ad;

    font-size: 11px;

    line-height: 1.7;

    margin-top: 5px;

}


.footer-address i {

    margin-top: 4px;

    flex-shrink: 0;

    color: var(--cyan);

}


.footer-address strong {

    display: inline-block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 12px;

}

/* =========================================================
   RESPONSIVE — 650px
========================================================= */

@media (max-width: 650px) {


    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .brand img {

        width:
            40px;

        height:
            40px;

    }


    .brand-name {

        font-size:
            15px;

    }


    .hero-content h1 {

        font-size:
            48px;

        letter-spacing:
            -2px;

    }


    .hero-content > p {

        font-size:
            14px;

    }


    .hero-buttons {

        flex-direction:
            column;

    }


    .primary-btn,
    .secondary-btn {

        width:
            100%;

        max-width:
            260px;

    }


    .hero-services {

        flex-wrap:
            wrap;

        gap:
            12px;

    }


    .hero-service-item {

        border:
            none;

        padding:
            5px;

        flex-direction:
            column;

    }


    .hero-visual {

        height:
            390px;

    }


    .hero-logo {

        width:
            220px;

        height:
            220px;

    }


    .hero-logo-wrapper {

        width:
            240px;

        height:
            240px;

    }


    .orbit-one {

        width:
            300px;

        height:
            300px;

    }


    .orbit-two {

        width:
            270px;

        height:
            270px;

    }


    .orbit-three {

        width:
            330px;

        height:
            330px;

    }


    .hero-glow {

        width:
            330px;

        height:
            330px;

    }


    .about-section,
    .services-section,
    .solutions-section,
    .blog-section {

        padding:
            75px 0;

    }


    .why-section,
    .industries-section {

        padding:
            75px 0;

    }


    .about-features {

        grid-template-columns:
            1fr;

    }


    .services-grid,
    .solutions-grid,
    .blog-grid {

        grid-template-columns:
            1fr;

    }


    .why-grid {

        grid-template-columns:
            1fr;

    }


    .industries-grid {

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

    }


    .cta-container {

        flex-direction:
            column;

        text-align:
            center;

    }


    .cta-content {

        flex:
            none;

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

        gap:
            35px;

    }


    .footer-company {

        grid-column:
            1 / -1;

    }


    .footer-bottom .container {

        flex-direction:
            column;

        justify-content:
            center;

        padding:
            15px 0;

        text-align:
            center;

    }


}


/* =========================================================
   RESPONSIVE — 420px
========================================================= */

@media (max-width: 420px) {


    .brand-text {

        display:
            none;

    }


    .hero-content h1 {

        font-size:
            42px;

    }


    .hero-small-title {

        font-size:
            10px;

        letter-spacing:
            1.4px;

    }


    .hero-service-item span {

        font-size:
            8px;

    }


    .footer-container {

        grid-template-columns:
            1fr;

    }


    .footer-company {

        grid-column:
            auto;

    }


    .industries-grid {

        grid-template-columns:
            1fr 1fr;

    }


}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;

    }

}

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

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
    color: #7f94ad;
    font-size: 11px;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.footer-address i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--cyan);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-address span {
    display: block;
}

.footer-address strong {
    display: inline-block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.footer-address:hover {
    transform: translateX(4px);
    color: #b7c9dc;
}

.footer-address:hover i {
    color: #ffffff;
    transform: scale(1.15);
    filter: drop-shadow(0 0 7px rgba(0, 229, 255, 0.8));
}


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

.footer-bottom {
    border-top: 1px solid rgba(0, 229, 255, 0.12);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #71869d;
    font-size: 11px;
    line-height: 1.6;
}

.footer-bottom a {
    position: relative;
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 7px rgba(0, 229, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
}

.footer-bottom a:hover::after {
    width: 100%;
}


/* =========================================================
   FOOTER MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .footer-address {
        font-size: 10.5px;
    }

    .footer-address strong {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    .footer-address {
        gap: 9px;
        font-size: 10px;
    }

    .footer-address i {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}

/* =========================================================
   CTA / HEAD OFFICE MAP — FINAL CLEAN LAYOUT
   LEFT  = CTA TEXT + BUTTON
   RIGHT = HEAD OFFICE MAP
========================================================= */

.cta-section {
    position: relative;
    padding: 45px 0;
    overflow: hidden;
    background: linear-gradient(110deg, #0757e8, #009fff, #00cfff);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 10% 50%,
        rgba(255, 255, 255, 0.15),
        transparent 30%
    );
    pointer-events: none;
}

/* Main two-column container */
.cta-section .cta-container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    column-gap: 55px;
    row-gap: 30px;
}

/* LEFT SIDE */
.cta-content {
    width: 100%;
    max-width: 560px;
    margin: 0;
    text-align: left;
}

.cta-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: white;
    font-size: 23px;
    background: rgba(255, 255, 255, 0.08);
}

.cta-content h2 {
    margin-bottom: 8px;
    color: white;
    font-size: 28px;
    line-height: 1.25;
}

.cta-content p {
    margin-bottom: 22px;
    color: white;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 6px;
    background: #021126;
    color: white;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn:hover {
    background: white;
    color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* RIGHT SIDE — HEAD OFFICE MAP ONLY */
.cta-map {
    width: 100%;
    max-width: 500px;
    margin: 0 0 0 auto;
}

.cta-map h3 {
    margin: 0 0 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.cta-map h3 i {
    margin-right: 7px;
}

.cta-map iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* TABLET */
@media (max-width: 900px) {
    .cta-section .cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cta-content {
        max-width: 650px;
        margin: 0 auto;
        text-align: center;
    }

    .cta-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-map {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .cta-map h3 {
        text-align: center;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-section .cta-container {
        width: min(calc(100% - 28px), var(--container));
        gap: 25px;
    }

    .cta-content h2 {
        font-size: 23px;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }

    .cta-map iframe {
        height: 210px;
        border-radius: 10px;
    }
}

/* VERY SMALL SCREENS */
@media (max-width: 420px) {
    .cta-map iframe {
        height: 190px;
    }

    .cta-map h3 {
        font-size: 16px;
    }
}

/* =========================
   FOOTER ADDRESS SPACING
========================= */

.footer-address {
    margin-top: 5px !important;
    gap: 5px !important;
    line-height: 1.20 !important;
}

.footer-address + .footer-address {
    margin-top: 4px !important;
}

.footer-address strong {
    margin-bottom: 2px !important;
}


/* =========================================================
   REVIEWS MODULE
========================================================= */

.reviews-section {
    position: relative;
    padding: 105px 0;
    background: linear-gradient(180deg, rgba(5, 18, 38, 0.96), rgba(3, 13, 29, 1));
    overflow: hidden;
}

.reviews-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 30px;
    border-radius: 50%;
    background: rgba(0, 188, 255, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.reviews-intro {
    max-width: 720px;
    margin: 18px auto 0;
    text-align: center;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(11, 35, 63, 0.92), rgba(5, 20, 40, 0.94));
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 25px 65px rgba(0, 188, 255, 0.12);
}

.review-quote {
    font-size: 34px;
    line-height: 1;
    opacity: .8;
    margin-bottom: 15px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.review-stars i {
    font-size: 14px;
}

.review-text {
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    min-height: 105px;
    margin: 0 0 25px;
}

.review-author {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
}

.review-author strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.review-author span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,0.58);
    font-size: 13px;
}

.review-loading,
.review-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 35px;
    color: rgba(255,255,255,0.58);
}

.review-loading i {
    margin-right: 8px;
}

.reviews-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.reviews-page {
    min-height: 100vh;
    padding: 145px 0 90px;
}

.review-page-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.review-page-heading h1 {
    margin: 10px 0 15px;
}

.review-page-heading p {
    color: rgba(255,255,255,0.66);
    line-height: 1.8;
}

.review-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: start;
}

.review-panel {
    padding: 34px;
    border: 1px solid rgba(0,229,255,0.13);
    border-radius: 20px;
    background: rgba(7, 25, 47, 0.88);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.review-panel h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.review-panel > p {
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
}

.review-form {
    margin-top: 25px;
}

.review-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}

.review-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-field.full {
    grid-column: 1 / -1;
}

.review-field label {
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    font-weight: 600;
}

.review-field input,
.review-field textarea,
.review-field select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 10px;
    padding: 13px 14px;
    background: rgba(2,12,27,0.8);
    color: #fff;
    outline: none;
    font: inherit;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.review-field textarea {
    min-height: 150px;
    resize: vertical;
}

.review-field input:focus,
.review-field textarea:focus,
.review-field select:focus {
    border-color: rgba(0,229,255,0.55);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}

.review-field small {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
}

.review-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.review-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.review-rating label {
    cursor: pointer;
    font-size: 25px;
    color: rgba(255,255,255,0.18);
    transition: color .2s ease, transform .2s ease;
}

.review-rating label:hover,
.review-rating label:hover ~ label,
.review-rating input:checked ~ label {
    color: #ffd166;
}

.review-rating label:hover {
    transform: scale(1.08);
}

.review-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.55;
}

.review-consent input {
    margin-top: 3px;
    accent-color: #00d9ff;
}

.review-form-message {
    display: none;
    padding: 13px 15px;
    border-radius: 9px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
}

.review-form-message.show {
    display: block;
}

.review-form-message.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #a8f0c4;
}

.review-form-message.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #ffb0a8;
}

.review-info-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.review-info-list li {
    display: flex;
    gap: 13px;
    margin-bottom: 19px;
    color: rgba(255,255,255,0.68);
    line-height: 1.55;
}

.review-info-list i {
    margin-top: 4px;
    min-width: 18px;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-grid,
    .review-form-grid {
        grid-template-columns: 1fr;
    }

    .review-field.full {
        grid-column: auto;
    }

    .review-card,
    .review-panel {
        padding: 24px;
    }

    .review-text {
        min-height: 0;
    }

    .reviews-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .reviews-actions a {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
    }

    .reviews-page {
        padding-top: 120px;
    }
}

/* Admin */
.admin-body {
    min-height: 100vh;
    background: #03101f;
}

.admin-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.admin-topbar h1 {
    margin: 0;
    font-size: 28px;
}

.admin-card {
    background: rgba(8, 27, 49, .92);
    border: 1px solid rgba(0,229,255,.12);
    border-radius: 16px;
    padding: 22px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: rgba(255,255,255,.65);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.admin-table td {
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.admin-status {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: capitalize;
}

.admin-status.pending { background: rgba(241,196,15,.12); color: #f7d774; }
.admin-status.approved { background: rgba(46,204,113,.12); color: #8ee7ad; }
.admin-status.rejected,
.admin-status.hidden { background: rgba(231,76,60,.12); color: #ffaaa1; }

.admin-actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.admin-actions form {
    margin: 0;
}

.admin-btn {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background: rgba(255,255,255,.05);
    color: #fff;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 12px;
}

.admin-btn:hover {
    border-color: rgba(0,229,255,.35);
}

.admin-login {
    max-width: 430px;
    margin: 90px auto;
    padding: 32px;
    background: rgba(8,27,49,.95);
    border: 1px solid rgba(0,229,255,.14);
    border-radius: 18px;
}

.admin-login img {
    width: 72px;
    display: block;
    margin: 0 auto 18px;
}

.admin-login h1 {
    text-align: center;
    margin-bottom: 24px;
}

.admin-form-field {
    margin-bottom: 16px;
}

.admin-form-field label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.admin-form-field input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.12);
    background: #020d1d;
    color: #fff;
    font: inherit;
}

.admin-notice {
    padding: 12px 14px;
    border-radius: 9px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
    background: rgba(0,188,255,.08);
    border: 1px solid rgba(0,188,255,.2);
    color: rgba(255,255,255,.75);
}
