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

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

ul {
    list-style-position: inside;
}

/* =========================================
   PAGE LOADER
   ========================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient( circle at center, rgba(0, 60, 130, 0.24), transparent 38% ), linear-gradient( 135deg, #000000, #020b18, #000000 );
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

    .page-loader.loader-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-content {
    width: min(420px, 82vw);
    text-align: center;
}

.loader-logo {
    display: block;
    width: 100%;
    max-width: 390px;
    height: auto;
    margin: 0 auto 18px;
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    filter: drop-shadow( 0 0 22px rgba(61, 165, 255, 0.42) );
    animation: loaderLogoReveal 0.8s ease forwards;
}

.loader-line {
    width: 210px;
    height: 3px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(61, 165, 255, 0.12);
}

    .loader-line span {
        display: block;
        width: 45%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient( 90deg, transparent, #3da5ff, #ffffff, #3da5ff, transparent );
        box-shadow: 0 0 18px rgba(61, 165, 255, 0.55);
        animation: loaderLineMove 1.15s ease-in-out infinite;
    }

@keyframes loaderLogoReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loaderLineMove {
    0% {
        transform: translateX(-140%);
    }

    100% {
        transform: translateX(320%);
    }
}

/* =========================================
   BACKGROUND ANIMATION
   ========================================= */

.background-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 18% 22%, rgba(13, 110, 253, 0.045), transparent 28%), radial-gradient(circle at 82% 72%, rgba(61, 165, 255, 0.060), transparent 30%), linear-gradient(135deg, #000000 0%, #020814 48%, #000000 100%);
}

    /* Subtle moving circuit grid */
    .background-animation::before {
        content: "";
        position: absolute;
        inset: -18%;
        background-image: linear-gradient(rgba(61, 165, 255, 0.050) 1px, transparent 1px), linear-gradient(90deg, rgba(61, 165, 255, 0.050) 1px, transparent 1px), linear-gradient(rgba(61, 165, 255, 0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(61, 165, 255, 0.028) 1px, transparent 1px);
        background-size: 84px 84px, 84px 84px, 21px 21px, 21px 21px;
        opacity: 0.62;
        transform: rotate(-7deg) scale(1.08);
        animation: circuitGridMove 42s linear infinite;
    }

    /* Thin travelling light line */
    .background-animation::after {
        content: "";
        position: absolute;
        top: -12%;
        left: -40%;
        width: 34%;
        height: 124%;
        background: linear-gradient( 90deg, transparent, rgba(61, 165, 255, 0.045), rgba(61, 165, 255, 0.115), rgba(255, 255, 255, 0.05), transparent );
        filter: blur(14px);
        transform: skewX(-16deg);
        animation: circuitSweep 18s ease-in-out infinite;
    }

    /* Small moving data nodes */
    .background-animation span {
        position: absolute;
        display: block;
        width: 7px;
        height: 7px;
        border: 1px solid rgba(142, 203, 255, 0.55);
        border-radius: 50%;
        background: rgba(61, 165, 255, 0.65);
        box-shadow: 0 0 8px rgba(61, 165, 255, 0.42), 0 0 20px rgba(13, 110, 253, 0.16);
        opacity: 0.76;
        animation: dataNodeMove 18s ease-in-out infinite;
    }

        .background-animation span::before,
        .background-animation span::after {
            content: "";
            position: absolute;
            top: 50%;
            height: 1px;
            background: linear-gradient(90deg, rgba(61, 165, 255, 0.42), transparent);
        }

        .background-animation span::before {
            right: 100%;
            width: 90px;
        }

        .background-animation span::after {
            left: 100%;
            width: 55px;
            transform: rotate(90deg);
            transform-origin: left center;
        }

        .background-animation span:nth-child(1) {
            top: 16%;
            left: 12%;
            animation-delay: -2s;
        }

        .background-animation span:nth-child(2) {
            top: 30%;
            left: 78%;
            width: 6px;
            height: 6px;
            animation-delay: -7s;
            animation-duration: 22s;
        }

        .background-animation span:nth-child(3) {
            top: 68%;
            left: 18%;
            width: 8px;
            height: 8px;
            animation-delay: -11s;
            animation-duration: 24s;
        }

        .background-animation span:nth-child(4) {
            top: 74%;
            left: 84%;
            animation-delay: -15s;
            animation-duration: 20s;
        }

        .background-animation span:nth-child(5) {
            top: 48%;
            left: 50%;
            width: 5px;
            height: 5px;
            animation-delay: -5s;
            animation-duration: 26s;
        }

@keyframes circuitGridMove {
    0% {
        transform: rotate(-7deg) scale(1.08) translate3d(-28px, -20px, 0);
    }

    100% {
        transform: rotate(-7deg) scale(1.08) translate3d(56px, 64px, 0);
    }
}

@keyframes circuitSweep {
    0%, 100% {
        transform: translateX(0) skewX(-16deg);
        opacity: 0;
    }

    18% {
        opacity: 0.55;
    }

    52% {
        transform: translateX(430%) skewX(-16deg);
        opacity: 0.62;
    }

    72% {
        opacity: 0;
    }
}

@keyframes dataNodeMove {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.62;
    }

    35% {
        transform: translate3d(34px, -18px, 0);
        opacity: 0.72;
    }

    70% {
        transform: translate3d(-18px, 24px, 0);
        opacity: 0.52;
    }
}

/* =========================================
   SHARED PAGE LAYERS
   ========================================= */

.hero,
.page-header,
.section,
.footer {
    position: relative;
    z-index: 1;
}


/* Subtle animated technical texture on internal pages */
.page-header,
.section {
    overflow: hidden;
}

    .page-header::before,
    .section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background-image: linear-gradient(115deg, transparent 0%, transparent 46%, rgba(61, 165, 255, 0.050) 50%, transparent 54%, transparent 100%), radial-gradient(circle at 14% 30%, rgba(61, 165, 255, 0.060), transparent 24%), radial-gradient(circle at 86% 72%, rgba(13, 110, 253, 0.050), transparent 22%);
        background-size: 190% 100%, 100% 100%, 100% 100%;
        animation: internalPageTexture 22s ease-in-out infinite;
    }

@keyframes internalPageTexture {
    0%, 100% {
        background-position: 140% 0, 0 0, 0 0;
    }

    50% {
        background-position: -40% 0, 0 0, 0 0;
    }
}

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

.hero {
    min-height: auto;
    padding: 14px 7% 42px;
    display: flex;
    flex-direction: column;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.90), rgba(0, 18, 48, 0.72), rgba(0, 0, 0, 0.88) );
}

.page-header {
    padding: 14px 7% 38px;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.94), rgba(0, 18, 48, 0.80), rgba(0, 0, 0, 0.92) );
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding-bottom: 8px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transform: translateX(-45px);
}

.site-logo {
    display: block;
    width: 360px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow( 0 0 14px rgba(61, 165, 255, 0.18) );
}

/* NAVIGATION CONTAINER */

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(61, 165, 255, 0.16);
    border-radius: 14px;
    background: rgba(5, 14, 28, 0.62);
    box-shadow: 0 0 22px rgba(0, 102, 255, 0.08), inset 0 0 12px rgba(61, 165, 255, 0.03);
    backdrop-filter: blur(10px);
    list-style: none;
}

    .nav-links a {
        position: relative;
        display: block;
        padding: 9px 15px;
        border-radius: 9px;
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 800;
        transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

        .nav-links a:hover {
            color: #8ecbff;
            background: rgba(61, 165, 255, 0.10);
            transform: translateY(-1px);
            box-shadow: inset 0 0 12px rgba(61, 165, 255, 0.06);
        }

        .nav-links a.active {
            color: #ffffff;
            background: linear-gradient( 135deg, rgba(13, 110, 253, 0.88), rgba(78, 140, 255, 0.72) );
            box-shadow: 0 0 16px rgba(61, 165, 255, 0.18);
        }

            .nav-links a.active::after {
                display: none;
            }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(61, 165, 255, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        height: 2px;
        margin: 5px 0;
        border-radius: 999px;
        background: #ffffff;
    }

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

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: flex-start;
    flex: 1;
    gap: 36px;
    padding-top: 18px;
}

.hero-content {
    max-width: 760px;
    padding: 5px 0 22px;
}

.intro {
    margin-bottom: 16px;
    color: #3da5ff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 720px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 2.35rem;
    line-height: 1.14;
    text-shadow: 0 0 24px rgba(61, 165, 255, 0.08);
}

.hero-text {
    max-width: 760px;
    margin-bottom: 20px;
    color: #d6e8ff;
    font-size: 0.98rem;
    line-height: 1.55;
}

.tech-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

    .tech-strip span {
        display: inline-block;
        padding: 6px 13px;
        border: 1px solid rgba(61, 165, 255, 0.35);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.02);
        color: #8ecbff;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.4px;
        box-shadow: 0 0 12px rgba(61, 165, 255, 0.05);
    }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* LAPTOP IMAGE BELOW GET A QUOTE */

.hero-laptop-image {
    position: relative;
    width: 1100px;
    max-width: none;
    height: 520px;
    margin-top: 18px;
    margin-left: -190px;
    overflow: hidden;
    pointer-events: none;
}

    .hero-laptop-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center left;
        opacity: 0.38;
        mix-blend-mode: screen;
        filter: brightness(1.10) saturate(0.95) contrast(1.08) drop-shadow( 0 0 35px rgba(61, 165, 255, 0.10) );
        -webkit-mask-image: linear-gradient( to right, transparent 0%, rgba(0, 0, 0, 0.10) 10%, rgba(0, 0, 0, 0.55) 22%, rgba(0, 0, 0, 1) 38%, rgba(0, 0, 0, 0.95) 58%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.22) 82%, transparent 96% ), linear-gradient( to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 8%, rgba(0, 0, 0, 1) 22%, rgba(0, 0, 0, 0.75) 72%, transparent 100% );
        -webkit-mask-composite: source-in;
        mask-image: linear-gradient( to right, transparent 0%, rgba(0, 0, 0, 0.10) 10%, rgba(0, 0, 0, 0.55) 22%, rgba(0, 0, 0, 1) 38%, rgba(0, 0, 0, 0.95) 58%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.22) 82%, transparent 96% ), linear-gradient( to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 8%, rgba(0, 0, 0, 1) 22%, rgba(0, 0, 0, 0.75) 72%, transparent 100% );
        mask-composite: intersect;
    }

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

.btn,
.action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 24px;
    border: none;
    border-radius: 9px;
    background: linear-gradient( 135deg, #0d6efd, #4e8cff );
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 0 18px rgba(13, 110, 253, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

    .btn:hover,
    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 24px rgba(61, 165, 255, 0.35);
    }

.btn-secondary,
.action-secondary {
    border: 1px solid #3da5ff;
    background: rgba(255, 255, 255, 0.02);
    color: #a6d8ff;
    box-shadow: none;
}

    .btn-secondary:hover,
    .action-secondary:hover {
        background: #3da5ff;
        color: #000000;
        box-shadow: 0 0 24px rgba(61, 165, 255, 0.42);
    }

/* =========================================
   CORE CAPABILITIES PANEL
   ========================================= */

.hero-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-box {
    width: 100%;
    max-width: 440px;
    padding: 24px;
    border: 1px solid rgba(61, 165, 255, 0.42);
    border-radius: 16px;
    background: linear-gradient( 180deg, rgba(12, 24, 42, 0.92), rgba(8, 16, 28, 0.96) );
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.10), inset 0 0 20px rgba(61, 165, 255, 0.03);
    backdrop-filter: blur(10px);
}

.panel-label {
    margin-bottom: 9px;
    color: #3da5ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.panel-box h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.3;
}

.capability-list {
    display: flex;
    flex-direction: column;
}

.capability-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(61, 165, 255, 0.12);
}

    .capability-item:first-child {
        padding-top: 0;
    }

    .capability-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.capability-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(61, 165, 255, 0.32);
    border-radius: 9px;
    background: rgba(13, 110, 253, 0.09);
    color: #3da5ff;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 0 16px rgba(61, 165, 255, 0.12);
}

.capability-item h3 {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 0.92rem;
}

.capability-points {
    margin: 4px 0 0 18px;
    padding: 0;
    color: #c8d8eb;
    font-size: 0.83rem;
    line-height: 1.45;
}

    .capability-points li {
        margin-bottom: 2px;
    }

        .capability-points li::marker {
            color: #3da5ff;
        }

/* =========================================
   INTERNAL PAGE HEADERS
   ========================================= */

.page-hero-content {
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
}

    .page-hero-content h1 {
        margin-bottom: 8px;
        color: #ffffff;
        font-size: clamp( 2.2rem, 4vw, 2.8rem );
        line-height: 1.12;
    }

    .page-hero-content p:last-child {
        max-width: 760px;
        margin: 0 auto;
        color: #d6e8ff;
        font-size: 0.92rem;
    }

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

.section {
    padding: 54px 7%;
    background-color: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(3px);
}

.compact-section {
    padding-top: 48px;
}

.alt-section {
    background-color: rgba(7, 17, 29, 0.88);
}

.section-header {
    margin-bottom: 32px;
    text-align: center;
}

    .section-header h2 {
        margin-bottom: 8px;
        color: #3da5ff;
        font-size: clamp( 1.8rem, 2.5vw, 2.35rem );
        letter-spacing: 0.5px;
    }

    .section-header p {
        max-width: 800px;
        margin: 0 auto;
        color: #c8d8eb;
        font-size: 0.94rem;
    }

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

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

.service-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 155px;
    padding: 18px;
    border: 1px solid #163c68;
    border-radius: 12px;
    background: linear-gradient( 180deg, rgba(11, 22, 36, 0.96), rgba(8, 16, 28, 0.96) );
    box-shadow: 0 0 22px rgba(0, 102, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        border-color: #3da5ff;
        box-shadow: 0 0 28px rgba(61, 165, 255, 0.14);
    }

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(61, 165, 255, 0.45);
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    color: #3da5ff;
    font-size: 1.05rem;
    font-weight: 900;
    box-shadow: 0 0 16px rgba(61, 165, 255, 0.08);
}

.service-content h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
}

.service-content ul {
    padding-left: 18px;
    list-style-position: outside;
}

.service-content li {
    margin-bottom: 2px;
    color: #c8d8eb;
    font-size: 0.82rem;
    line-height: 1.4;
}

    .service-content li::marker {
        color: #c8d8eb;
    }

/* =========================================
   EXPERIENCE PAGE
   ========================================= */

.experience-section {
    padding-top: 48px;
    border-top: 1px solid rgba(61, 165, 255, 0.12);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(61, 165, 255, 0.18);
    border-bottom: 1px solid rgba(61, 165, 255, 0.18);
}

.experience-card {
    min-height: 175px;
    padding: 21px 18px;
    border-right: 1px solid rgba(61, 165, 255, 0.22);
    border-bottom: 1px solid rgba(61, 165, 255, 0.12);
    background: rgba(6, 14, 26, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

    .experience-card:nth-child(5n) {
        border-right: none;
    }

    .experience-card:hover {
        transform: translateY(-3px);
        background: rgba(13, 110, 253, 0.08);
    }

.experience-icon {
    margin-bottom: 12px;
    color: #3da5ff;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}

.experience-card h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.experience-card p {
    color: #c8d8eb;
    font-size: 0.82rem;
    line-height: 1.4;
}

/* =========================================
   WHY WORK WITH US
   ========================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.why-item {
    padding: 14px 17px;
    border: 1px solid #163c68;
    border-radius: 10px;
    background: linear-gradient( 180deg, rgba(11, 22, 36, 0.96), rgba(8, 16, 28, 0.96) );
    color: #d6e8ff;
    font-size: 0.88rem;
    font-weight: 700;
}

    .why-item::before {
        content: "✓";
        margin-right: 9px;
        color: #3da5ff;
        font-weight: 900;
    }

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

.about-box {
    max-width: 820px;
    margin: 0 auto;
    padding: 26px 30px;
    border: 1px solid #16324f;
    border-radius: 14px;
    background: linear-gradient( 180deg, rgba(11, 22, 36, 0.96), rgba(8, 16, 28, 0.96) );
    box-shadow: 0 0 22px rgba(0, 102, 255, 0.06);
}

    .about-box p {
        margin-bottom: 12px;
        color: #d6e8ff;
        font-size: 0.9rem;
        line-height: 1.55;
    }

        .about-box p:last-child {
            margin-bottom: 0;
        }

.about-highlight {
    margin-top: 18px;
    color: #ffffff !important;
    font-size: 1rem !important;
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-page-section {
    padding-top: 48px;
    padding-bottom: 58px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: flex-start;
    gap: 42px;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.contact-details-column h2,
.contact-form-box h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.2;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
}

.contact-detail-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(61, 165, 255, 0.35);
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.10);
    color: #3da5ff;
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: 0 0 18px rgba(61, 165, 255, 0.10);
}

.contact-svg-icon svg,
.whatsapp-contact-icon svg {
    width: 22px;
    height: 22px;
    fill: #3da5ff;
}

.contact-detail-content h3 {
    margin-bottom: 1px;
    color: #ffffff;
    font-size: 0.92rem;
}

.contact-detail-content p,
.contact-detail-content a {
    color: #a8bdd5;
    font-size: 0.86rem;
}

.contact-detail-content a {
    transition: color 0.3s ease;
}

    .contact-detail-content a:hover {
        color: #3da5ff;
    }

.contact-information-box {
    margin-top: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(61, 165, 255, 0.20);
    border-radius: 12px;
    background: rgba(8, 16, 28, 0.70);
}

    .contact-information-box p {
        margin-bottom: 8px;
        color: #c8d8eb;
        font-size: 0.84rem;
        line-height: 1.5;
    }

        .contact-information-box p:last-child {
            margin-bottom: 0;
        }

.contact-trust {
    margin-top: 8px;
    color: #7fbfff !important;
    font-size: 0.8rem !important;
    opacity: 0.75;
}

.contact-form-column {
    justify-self: end;
    width: 100%;
    max-width: 480px;
}

.contact-form-box {
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(61, 165, 255, 0.25);
    border-radius: 14px;
    background: linear-gradient( 180deg, rgba(12, 24, 42, 0.96), rgba(8, 16, 28, 0.98) );
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.10), inset 0 0 20px rgba(61, 165, 255, 0.03);
    backdrop-filter: blur(10px);
}

    .contact-form-box h2 {
        margin-bottom: 18px;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-height: 44px;
        padding: 10px 13px;
        border: 1px solid rgba(61, 165, 255, 0.22);
        border-radius: 9px;
        outline: none;
        background: rgba(2, 9, 19, 0.92);
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.86rem;
        line-height: 1.5;
        transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .form-group textarea {
        min-height: 115px;
        resize: vertical;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #8196ad;
        }

    .form-group select {
        cursor: pointer;
    }

        .form-group select option {
            background: #08101c;
            color: #ffffff;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #3da5ff;
            background: rgba(4, 14, 28, 0.98);
            box-shadow: 0 0 0 3px rgba(61, 165, 255, 0.10);
        }

.contact-submit-button {
    align-self: flex-start;
    min-width: 145px;
    padding: 11px 20px;
    border: none;
    border-radius: 9px;
    background: linear-gradient( 135deg, #0d6efd, #4e8cff );
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(13, 110, 253, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 26px rgba(61, 165, 255, 0.38);
    }

    .contact-submit-button:active {
        transform: translateY(0);
    }

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

.footer {
    padding: 20px 7%;
    border-top: 1px solid #122438;
    background-color: rgba(0, 0, 0, 0.95);
    color: #8fbbe6;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 24px;
    font-size: 0.86rem;
    text-align: center;
}

.footer a {
    color: #9ecbff;
}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border-radius: 999px;
    background: linear-gradient( 135deg, #0d6efd, #4e8cff );
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.40);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .floating-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 32px rgba(61, 165, 255, 0.55);
    }

.floating-whatsapp-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

    .floating-whatsapp-icon svg {
        width: 21px;
        height: 21px;
        fill: currentColor;
    }

/* =========================================
   RESPONSIVE - LARGE TABLETS
   ========================================= */

@media (max-width: 1400px) {
    .experience-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .experience-card:nth-child(5n) {
        border-right: 1px solid rgba(61, 165, 255, 0.22);
    }

    .experience-card:nth-child(4n) {
        border-right: none;
    }
}

@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-content: flex-start;
        width: 100%;
        margin-top: 30px;
    }

    .panel-box {
        max-width: 680px;
    }

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

    .hero-laptop-image {
        width: 900px;
    }
}

@media (max-width: 1050px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact-form-column {
        justify-self: stretch;
        max-width: 100%;
    }
}

/* =========================================
   RESPONSIVE - TABLETS AND MOBILE
   ========================================= */

@media (max-width: 900px) {
    .page-loader {
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .loader-content {
        width: min(260px, 70vw);
    }

    .loader-logo {
        max-width: 240px;
        margin-bottom: 12px;
    }

    .loader-line {
        width: 150px;
        height: 2px;
    }

    .hero,
    .page-header {
        padding: 14px 5% 34px;
    }

    .navbar {
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 0;
    }

    .logo-link {
        transform: none;
    }

    .site-logo {
        width: 225px;
    }

    .menu-toggle {
        display: block;
        width: 42px;
        height: 42px;
        padding: 8px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
        margin-top: 10px;
        padding: 7px;
        border-radius: 11px;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li {
            width: 100%;
            border-bottom: 1px solid rgba(61, 165, 255, 0.10);
        }

            .nav-links li:last-child {
                border-bottom: none;
            }

        .nav-links a {
            display: block;
            width: 100%;
            padding: 10px 12px;
            font-size: 0.88rem;
            text-align: center;
        }

    .hero-layout {
        display: block;
        padding-top: 24px;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .intro {
        margin-bottom: 12px;
        font-size: 0.67rem;
        line-height: 1.5;
        letter-spacing: 1.8px;
        white-space: normal;
    }

    .hero-content h1 {
        width: 100%;
        max-width: none;
        margin-bottom: 14px;
        font-size: 1.75rem;
        line-height: 1.16;
        overflow-wrap: break-word;
    }

    .hero-text {
        width: 100%;
        max-width: none;
        margin-bottom: 17px;
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .tech-strip {
        gap: 7px;
        margin-bottom: 18px;
    }

        .tech-strip span {
            padding: 5px 10px;
            font-size: 0.7rem;
        }

    .hero-buttons {
        width: 100%;
    }

    .btn,
    .action-btn {
        width: auto;
        max-width: 100%;
        padding: 10px 18px;
        font-size: 0.82rem;
    }

    .hero-laptop-image {
        width: calc(100% + 10%);
        max-width: none;
        height: 280px;
        margin-top: 18px;
        margin-left: -5%;
    }

        .hero-laptop-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center left;
        }

    .hero-panel {
        justify-content: stretch;
        width: 100%;
        margin-top: 24px;
    }

    .panel-box {
        width: 100%;
        max-width: none;
        padding: 18px;
        border-radius: 13px;
    }

    .panel-label {
        margin-bottom: 7px;
        font-size: 0.64rem;
        letter-spacing: 1.6px;
    }

    .panel-box h2 {
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .capability-item {
        grid-template-columns: 32px 1fr;
        gap: 10px;
        padding: 10px 0;
    }

    .capability-icon {
        width: 30px;
        height: 30px;
        font-size: 0.76rem;
    }

    .capability-item h3 {
        font-size: 0.82rem;
    }

    .capability-points {
        margin-left: 15px;
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .page-hero-content {
        margin-top: 18px;
        padding: 0 2%;
    }

        .page-hero-content h1 {
            margin-bottom: 7px;
            font-size: 1.7rem;
            line-height: 1.15;
        }

        .page-hero-content p:last-child {
            font-size: 0.8rem;
            line-height: 1.5;
        }

    .section {
        padding: 38px 5%;
    }

    .compact-section,
    .experience-section,
    .contact-page-section {
        padding-top: 34px;
    }

    .section-header {
        margin-bottom: 24px;
    }

        .section-header h2 {
            margin-bottom: 6px;
            font-size: 1.55rem;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 0.8rem;
            line-height: 1.5;
        }

    .service-grid,
    .why-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        grid-template-columns: 38px 1fr;
        gap: 11px;
        min-height: 0;
        padding: 14px;
        border-radius: 10px;
    }

    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .service-content h3 {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .service-content ul {
        padding-left: 15px;
    }

    .service-content li {
        font-size: 0.74rem;
        line-height: 1.4;
    }

    .experience-grid {
        border-top: none;
    }

    .experience-card,
    .experience-card:nth-child(2n),
    .experience-card:nth-child(4n),
    .experience-card:nth-child(5n) {
        min-height: 0;
        padding: 16px;
        border-right: none;
        border: 1px solid rgba(61, 165, 255, 0.17);
        border-radius: 10px;
    }

    .experience-icon {
        margin-bottom: 8px;
        font-size: 1.15rem;
    }

    .experience-card h3 {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .experience-card p {
        font-size: 0.74rem;
        line-height: 1.42;
    }

    .why-item {
        padding: 12px 14px;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .about-box {
        width: 100%;
        max-width: none;
        padding: 18px;
        border-radius: 11px;
    }

        .about-box p {
            margin-bottom: 10px;
            font-size: 0.78rem;
            line-height: 1.52;
        }

    .about-highlight {
        margin-top: 14px;
        font-size: 0.85rem !important;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: none;
    }

    .contact-details-column h2,
    .contact-form-box h2 {
        margin-bottom: 16px;
        font-size: 1.3rem;
    }

    .contact-details-list {
        gap: 14px;
    }

    .contact-detail-item {
        grid-template-columns: 40px 1fr;
        gap: 11px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
        font-size: 0.82rem;
    }

    .contact-svg-icon svg,
    .whatsapp-contact-icon svg {
        width: 19px;
        height: 19px;
    }

    .contact-detail-content h3 {
        font-size: 0.82rem;
    }

    .contact-detail-content p,
    .contact-detail-content a {
        font-size: 0.76rem;
        overflow-wrap: anywhere;
    }

    .contact-information-box {
        margin-top: 18px;
        padding: 13px 14px;
    }

        .contact-information-box p {
            font-size: 0.74rem;
        }

    .contact-form-column {
        justify-self: stretch;
        max-width: none;
    }

    .contact-form-box {
        padding: 18px;
        border-radius: 12px;
    }

    .contact-form {
        gap: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 42px;
        padding: 9px 11px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 105px;
    }

    .contact-submit-button {
        width: 100%;
        min-width: 0;
        padding: 10px 16px;
        font-size: 0.82rem;
    }

    .footer {
        padding: 18px 58px 18px 5%;
    }

    .footer-content {
        flex-direction: column;
        gap: 5px;
        font-size: 0.72rem;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        padding: 10px;
    }

        .floating-whatsapp span:last-child {
            display: none;
        }
}

/* =========================================
   RESPONSIVE - SMALL PHONES
   ========================================= */

@media (max-width: 480px) {
    .hero,
    .page-header {
        padding-right: 4.5%;
        padding-left: 4.5%;
    }

    .site-logo {
        width: 180px;
    }

    .menu-toggle {
        width: 39px;
        height: 39px;
    }

    .intro {
        font-size: 0.61rem;
        letter-spacing: 1.4px;
    }

    .hero-content h1 {
        font-size: 1.48rem;
        line-height: 1.18;
    }

    .hero-text {
        font-size: 0.76rem;
    }

    .btn,
    .action-btn {
        padding: 9px 15px;
        font-size: 0.76rem;
    }

    .hero-laptop-image {
        width: calc(100% + 9%);
        height: 230px;
        margin-left: -4.5%;
    }

    .panel-box {
        padding: 15px;
    }

    .page-hero-content h1 {
        font-size: 1.45rem;
    }

    .section {
        padding: 32px 4.5%;
    }

    .section-header h2 {
        font-size: 1.35rem;
    }

    .service-card {
        grid-template-columns: 34px 1fr;
        padding: 12px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }

    .service-content h3,
    .experience-card h3 {
        font-size: 0.84rem;
    }

    .service-content li,
    .experience-card p,
    .about-box p {
        font-size: 0.7rem;
    }

    .contact-form-box,
    .about-box {
        padding: 15px;
    }

        .contact-details-column h2,
        .contact-form-box h2 {
            font-size: 1.15rem;
        }
}

/* =========================================
   FINAL MOBILE SIZE REFINEMENT
   ========================================= */

@media (max-width: 480px) {
    .hero,
    .page-header {
        padding-top: 12px;
        padding-bottom: 28px;
    }

    .site-logo {
        width: 165px;
    }

    .hero-layout {
        padding-top: 18px;
    }

    .intro {
        margin-bottom: 9px;
        font-size: 0.57rem;
        line-height: 1.45;
        letter-spacing: 1.25px;
    }

    .hero-content h1 {
        margin-bottom: 12px;
        font-size: 1.34rem;
        line-height: 1.18;
    }

    .hero-text {
        margin-bottom: 14px;
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .hero-buttons {
        margin-bottom: 0;
    }

    .btn,
    .action-btn {
        padding: 8px 14px;
        font-size: 0.72rem;
        border-radius: 8px;
    }

    .hero-laptop-image {
        width: calc(100% + 9%);
        height: 195px;
        margin-top: 12px;
        margin-left: -4.5%;
    }

    .hero-panel {
        margin-top: 18px;
    }

    .panel-box {
        padding: 14px;
        border-radius: 11px;
    }

    .panel-label {
        font-size: 0.57rem;
        letter-spacing: 1.3px;
    }

    .panel-box h2 {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .capability-item {
        grid-template-columns: 29px 1fr;
        gap: 9px;
        padding: 9px 0;
    }

    .capability-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .capability-item h3 {
        font-size: 0.76rem;
    }

    .capability-points {
        margin-left: 13px;
        font-size: 0.66rem;
        line-height: 1.4;
    }

    .page-hero-content {
        margin-top: 14px;
    }

        .page-hero-content h1 {
            font-size: 1.3rem;
        }

        .page-hero-content p:last-child {
            font-size: 0.72rem;
        }

    .section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .section-header {
        margin-bottom: 18px;
    }

        .section-header h2 {
            font-size: 1.2rem;
        }

        .section-header p {
            font-size: 0.72rem;
        }

    .service-grid,
    .experience-grid,
    .why-grid {
        gap: 10px;
    }

    .service-card {
        grid-template-columns: 31px 1fr;
        gap: 9px;
        padding: 11px;
    }

    .service-icon {
        width: 30px;
        height: 30px;
        font-size: 0.76rem;
    }

    .service-content h3,
    .experience-card h3 {
        font-size: 0.8rem;
    }

    .service-content li,
    .experience-card p,
    .about-box p {
        font-size: 0.68rem;
        line-height: 1.42;
    }

    .experience-card {
        padding: 13px;
    }

    .experience-icon {
        margin-bottom: 7px;
        font-size: 1rem;
    }

    .why-item {
        padding: 10px 12px;
        font-size: 0.71rem;
    }

    .about-box,
    .contact-form-box {
        padding: 14px;
    }

        .contact-details-column h2,
        .contact-form-box h2 {
            margin-bottom: 13px;
            font-size: 1.05rem;
        }

    .contact-details-list {
        gap: 12px;
    }

    .contact-detail-item {
        grid-template-columns: 36px 1fr;
        gap: 9px;
    }

    .contact-detail-icon {
        width: 34px;
        height: 34px;
    }

    .contact-detail-content h3 {
        font-size: 0.76rem;
    }

    .contact-detail-content p,
    .contact-detail-content a {
        font-size: 0.7rem;
    }

    .contact-information-box p {
        font-size: 0.68rem;
    }

    .footer-content {
        font-size: 0.67rem;
    }
}

/* =========================================
   CONTACT FORM SUBMISSION
   ========================================= */

.hidden-botcheck {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-response {
    min-height: 18px;
    margin-top: 2px;
    font-size: 0.78rem;
    line-height: 1.45;
}

    .form-response.success {
        color: #66e39b;
    }

    .form-response.error {
        color: #ff7c7c;
    }

.contact-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
    box-shadow: none;
}

/* =========================================
   DISABLE PAGE LOADER ON TABLETS AND MOBILE
   ========================================= */

@media (max-width: 900px) {
    .page-loader {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* =========================================
   MOBILE PERFORMANCE IMPROVEMENTS
   ========================================= */

@media (max-width: 900px) {
    .nav-links,
    .panel-box,
    .contact-form-box,
    .section {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .background-animation::before {
        background-size: 62px 62px, 62px 62px, 18px 18px, 18px 18px;
        opacity: 0.42;
        animation-duration: 56s;
    }

    .background-animation::after {
        filter: blur(12px);
        animation-duration: 32s;
    }

    .background-animation span {
        opacity: 0.62;
        animation-duration: 30s;
    }

        .background-animation span::before {
            width: 56px;
        }

        .background-animation span::after {
            width: 34px;
        }

    .page-header::before,
    .section::before {
        opacity: 0.84;
        animation-duration: 30s;
    }

    .hero-laptop-image img {
        filter: brightness(1.05) saturate(0.95);
        mix-blend-mode: normal;
    }
}

/* =========================================
   PREMIUM ANIMATED BUTTONS
   ========================================= */

.btn,
.action-btn,
.contact-submit-button,
.floating-whatsapp,
.nav-links a.active {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(142, 203, 255, 0.55);
    background: linear-gradient( 135deg, #075ecf 0%, #2383ff 45%, #4d91ff 100% );
    background-size: 200% 200%;
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(61, 165, 255, 0.08), 0 6px 20px rgba(13, 110, 253, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -3px 8px rgba(0, 35, 100, 0.30);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: premiumButtonGradient 4s ease-in-out infinite;
}

    /* Animated gradient layer */

    .btn::before,
    .action-btn::before,
    .contact-submit-button::before,
    .floating-whatsapp::before,
    .nav-links a.active::before {
        content: "";
        position: absolute;
        inset: -80%;
        z-index: -2;
        pointer-events: none;
        background: conic-gradient( from 0deg, transparent, rgba(255, 255, 255, 0.30), rgba(61, 165, 255, 0.65), transparent, rgba(0, 102, 255, 0.50), rgba(255, 255, 255, 0.25), transparent );
        animation: premiumButtonRotate 7s linear infinite;
    }

    /* Glass highlight */

    .btn::after,
    .action-btn::after,
    .contact-submit-button::after,
    .floating-whatsapp::after,
    .nav-links a.active::after {
        content: "";
        position: absolute;
        top: 3px;
        right: 12%;
        left: 12%;
        height: 38%;
        z-index: -1;
        pointer-events: none;
        border-radius: 999px;
        background: linear-gradient( to bottom, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05) );
        filter: blur(1px);
        opacity: 0.65;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    /* Hover state */

    .btn:hover,
    .action-btn:hover,
    .contact-submit-button:hover,
    .floating-whatsapp:hover,
    .nav-links a.active:hover {
        transform: translateY(-2px) scale(1.02);
        border-color: rgba(255, 255, 255, 0.78);
        color: #ffffff;
        background: linear-gradient( 135deg, #0b68e6 0%, #3891ff 48%, #69aaff 100% );
        box-shadow: 0 0 0 1px rgba(61, 165, 255, 0.15), 0 9px 28px rgba(13, 110, 253, 0.46), 0 0 20px rgba(61, 165, 255, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -3px 8px rgba(0, 35, 100, 0.28);
    }

        .btn:hover::after,
        .action-btn:hover::after,
        .contact-submit-button:hover::after,
        .floating-whatsapp:hover::after,
        .nav-links a.active:hover::after {
            opacity: 0.9;
            transform: scaleX(1.08);
        }

    /* Click state */

    .btn:active,
    .action-btn:active,
    .contact-submit-button:active,
    .floating-whatsapp:active,
    .nav-links a.active:active {
        transform: translateY(0) scale(0.97);
        box-shadow: 0 3px 12px rgba(13, 110, 253, 0.30), inset 0 3px 8px rgba(0, 25, 75, 0.35);
    }

    /* Disabled Send Message button */

    .contact-submit-button:disabled {
        cursor: not-allowed;
        opacity: 0.62;
        transform: none;
        animation: none;
        box-shadow: 0 3px 12px rgba(13, 110, 253, 0.16);
    }

        .contact-submit-button:disabled::before {
            animation: none;
        }

/* Ensure inactive navigation links remain unchanged */

.nav-links a:not(.active)::before,
.nav-links a:not(.active)::after {
    display: none;
}

/* Keep active navigation text above effects */

.nav-links a.active {
    z-index: 1;
}

/* Button animations */

@keyframes premiumButtonRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes premiumButtonGradient {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

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

@media (max-width: 900px) {
    .btn,
    .action-btn,
    .contact-submit-button,
    .floating-whatsapp,
    .nav-links a.active {
        animation-duration: 6s;
    }

        .btn::before,
        .action-btn::before,
        .contact-submit-button::before,
        .floating-whatsapp::before,
        .nav-links a.active::before {
            animation-duration: 12s;
        }
}

/* Reduce animation for accessibility */

@media (prefers-reduced-motion: reduce) {
    .background-animation::before,
    .background-animation::after,
    .background-animation span,
    .page-header::before,
    .section::before,
    .btn,
    .action-btn,
    .contact-submit-button,
    .floating-whatsapp,
    .nav-links a.active,
    .btn::before,
    .action-btn::before,
    .contact-submit-button::before,
    .floating-whatsapp::before,
    .nav-links a.active::before {
        animation: none;
    }
}

/* Restore floating WhatsApp positioning */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
}

@media (max-width: 900px) {
    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
    }
}

/* =========================================
   SLIMMER PREMIUM BUTTONS
   ========================================= */

/* Slimmer navigation container */

.nav-links {
    gap: 4px;
    padding: 5px;
    border-radius: 12px;
}

    /* Slimmer navigation buttons */

    .nav-links a {
        padding: 7px 13px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

        /* Slimmer active navigation button */

        .nav-links a.active {
            padding: 7px 14px;
            border-radius: 8px;
        }

/* Slimmer standard buttons */

.btn,
.action-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 0.86rem;
}

/* Slimmer contact form button */

.contact-submit-button {
    min-width: 135px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
}

/* Slimmer floating WhatsApp button */

.floating-whatsapp {
    padding: 10px 15px;
    gap: 8px;
    font-size: 0.84rem;
}

    /* Reduce the glass highlight height */

    .btn::after,
    .action-btn::after,
    .contact-submit-button::after,
    .floating-whatsapp::after,
    .nav-links a.active::after {
        top: 2px;
        height: 30%;
    }

/* =========================================
   MOBILE BUTTON REFINEMENT
   ========================================= */

@media (max-width: 900px) {
    .nav-links {
        padding: 5px;
    }

        .nav-links a,
        .nav-links a.active {
            padding: 8px 11px;
            font-size: 0.84rem;
        }

    .btn,
    .action-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .contact-submit-button {
        padding: 9px 15px;
        font-size: 0.8rem;
    }

    .floating-whatsapp {
        padding: 9px;
    }
}
