/* =========================================================
   HIMSCRIPT SERVICES PAGE
   BRAND PALETTE

   #3e4f67  = Slate Blue
   #c2995a  = Premium Gold
   #fefefe  = Off White
   #0c1d31  = Deep Navy
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Segoe UI", Arial, sans-serif;

    background: #fefefe;

    color: #0c1d31;

    overflow-x: hidden;
}

a {
    transition: all 0.3s ease;
}


/* =========================================================
   NAVIGATION
========================================================= */

.hm-services-navbar {
    position: relative;
    z-index: 1000;

    padding: 15px 0;

    background: #0c1d31;

    border-bottom: 1px solid rgba(194,153,90,0.15);
}


.hm-services-logo {
    color: #fefefe !important;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 1px;
}


.hm-services-logo span {
    color: #c2995a;
}


.hm-services-navbar .nav-link {
    margin-left: 20px;

    color: rgba(254,254,254,0.7) !important;

    font-size: 11px;

    font-weight: 700;
}


.hm-services-navbar .nav-link:hover,
.hm-services-navbar .nav-item.active .nav-link {
    color: #c2995a !important;
}


.hm-contact-nav {
    padding: 9px 18px !important;

    border: 1px solid #c2995a;

    color: #c2995a !important;
}


.hm-contact-nav:hover {
    background: #c2995a;

    color: #0c1d31 !important;
}


.hm-menu-icon {
    color: #c2995a;

    font-size: 20px;
}


//* =========================================
   HIMscript NEW SERVICES HERO
========================================= */

.hm-new-hero {
    position: relative;
    min-height: 720px;
    padding: 110px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(194, 153, 90, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0c1d31 0%,
            #172b42 55%,
            #3e4f67 100%
        );

    color: #fefefe;
}


/* =========================================
   BACKGROUND GRID
========================================= */

.hm-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(254, 254, 254, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(254, 254, 254, 0.035) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    opacity: 0.5;

    animation: gridMove 18s linear infinite;
}


@keyframes gridMove {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(45px, 45px);
    }

}


/* =========================================
   GLOW EFFECTS
========================================= */

.hm-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #c2995a;

    filter: blur(120px);

    opacity: 0.10;

    pointer-events: none;
}


.hm-glow-one {
    top: -100px;
    right: 15%;
}


.hm-glow-two {
    bottom: -120px;
    left: 5%;
}


/* =========================================
   FLOATING SYMBOLS
========================================= */

.hm-floating-symbol {
    position: absolute;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(194, 153, 90, 0.35);

    background: rgba(254, 254, 254, 0.04);

    color: #c2995a;

    border-radius: 12px;

    backdrop-filter: blur(10px);

    animation: floatingSymbol 5s ease-in-out infinite;

    z-index: 2;
}


.symbol-a {
    top: 18%;
    left: 5%;
}


.symbol-b {
    top: 72%;
    left: 45%;
    animation-delay: 1s;
}


.symbol-c {
    top: 22%;
    right: 4%;
    animation-delay: 2s;
}


@keyframes floatingSymbol {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(5deg);
    }

}


/* =========================================
   HERO LABEL
========================================= */

.hm-hero-label {

    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: #c2995a;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    animation: fadeUp 1s ease both;
}


.label-line {
    display: inline-block;

    width: 35px;
    height: 1px;

    background: #c2995a;
}


/* =========================================
   MAIN TITLE
========================================= */

.hm-new-title {
    margin: 0;

    line-height: 0.95;

    font-weight: 700;
}


.title-small {
    display: block;

    color: #fefefe;

    font-size: 30px;

    letter-spacing: 1px;

    margin-bottom: 12px;
}


.title-main {
    display: block;

    color: #fefefe;

    font-size: clamp(65px, 7vw, 105px);

    letter-spacing: -4px;

    font-weight: 800;
}


.title-accent {
    display: block;

    color: #c2995a;

    font-size: clamp(45px, 5vw, 72px);

    margin-top: 12px;

    font-family: Georgia, serif;

    font-style: italic;

    letter-spacing: -2px;
}


/* =========================================
   HERO TEXT
========================================= */

.hm-new-lead {

    max-width: 650px;

    margin-top: 35px;
    margin-bottom: 15px;

    color: rgba(254, 254, 254, 0.92);

    font-size: 20px;

    line-height: 1.7;
}


.hm-new-lead strong {
    color: #c2995a;
}


.hm-new-description {

    max-width: 620px;

    color: rgba(254, 254, 254, 0.62);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 30px;
}


/* =========================================
   BUTTONS
========================================= */

.hm-new-actions {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-bottom: 45px;
}


.hm-gold-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 15px 25px;

    background: #c2995a;

    color: #0c1d31 !important;

    border: 1px solid #c2995a;

    font-weight: 700;

    text-decoration: none !important;

    transition: all 0.35s ease;

    box-shadow: 0 10px 30px rgba(194, 153, 90, 0.18);
}


.hm-gold-btn i {
    transition: transform 0.3s ease;
}


.hm-gold-btn:hover {

    background: #fefefe;

    border-color: #fefefe;

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}


.hm-gold-btn:hover i {
    transform: translateX(5px);
}


.hm-text-btn {

    color: #fefefe !important;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.hm-text-btn i {

    color: #c2995a;

    margin-left: 8px;

    transition: transform 0.3s ease;
}


.hm-text-btn:hover {
    color: #c2995a !important;
}


.hm-text-btn:hover i {
    transform: translateX(7px);
}


/* =========================================
   TRUST ITEMS
========================================= */

.hm-mini-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 10px;
}


.trust-item > i {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(194, 153, 90, 0.45);

    border-radius: 50%;

    color: #c2995a;

    font-size: 13px;
}


.trust-item strong {

    display: block;

    font-size: 11px;

    letter-spacing: 0.5px;
}


.trust-item small {

    display: block;

    color: rgba(254, 254, 254, 0.45);

    font-size: 9px;

    margin-top: 2px;
}


/* =========================================
   TRANSCRIPTION VISUAL
========================================= */

.hm-transcription-visual {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

    perspective: 1000px;
}


/* =========================================
   AUDIO WAVE
========================================= */

.hm-wave-container {

    position: absolute;

    top: 20px;
    right: -5px;

    width: 360px;

    padding: 15px 18px;

    background: rgba(12, 29, 49, 0.78);

    border: 1px solid rgba(194, 153, 90, 0.28);

    border-radius: 10px;

    backdrop-filter: blur(12px);

    z-index: 4;
}


.wave-label {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 10px;

    color: #c2995a;

    font-size: 9px;

    letter-spacing: 1px;
}


.wave-label small {

    color: rgba(254, 254, 254, 0.45);

    font-size: 9px;
}


.hm-wave {

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 4px;
}


.hm-wave span {

    width: 3px;

    height: 12px;

    background: #c2995a;

    border-radius: 5px;

    animation: waveform 1s ease-in-out infinite;
}


.hm-wave span:nth-child(2) {
    animation-delay: .1s;
}

.hm-wave span:nth-child(3) {
    animation-delay: .2s;
}

.hm-wave span:nth-child(4) {
    animation-delay: .3s;
}

.hm-wave span:nth-child(5) {
    animation-delay: .4s;
}

.hm-wave span:nth-child(6) {
    animation-delay: .5s;
}

.hm-wave span:nth-child(7) {
    animation-delay: .6s;
}

.hm-wave span:nth-child(8) {
    animation-delay: .7s;
}

.hm-wave span:nth-child(9) {
    animation-delay: .8s;
}

.hm-wave span:nth-child(10) {
    animation-delay: .9s;
}


@keyframes waveform {

    0%,
    100% {
        height: 10px;
    }

    50% {
        height: 38px;
    }

}


/* =========================================
   DOCUMENT CARD
========================================= */

.hm-document-card {

    position: relative;

    width: 360px;

    min-height: 420px;

    padding: 20px;

    background: #fefefe;

    color: #0c1d31;

    border-radius: 4px;

    transform: rotateY(-8deg) rotateX(3deg);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(194, 153, 90, 0.25);

    z-index: 2;

    animation: documentFloat 6s ease-in-out infinite;
}


@keyframes documentFloat {

    0%,
    100% {
        transform: rotateY(-8deg) rotateX(3deg) translateY(0);
    }

    50% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-12px);
    }

}


/* =========================================
   DOCUMENT HEADER
========================================= */

.document-top {

    display: flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 15px;

    border-bottom: 1px solid #ddd;
}


.document-logo {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0c1d31;

    color: #c2995a;

    border-radius: 6px;
}


.document-top strong {

    display: block;

    font-size: 13px;

    letter-spacing: 1px;
}


.document-top strong span {
    color: #c2995a;
}


.document-top small {

    display: block;

    font-size: 7px;

    letter-spacing: 2px;

    color: #777;

    margin-top: 2px;
}


.document-status {

    margin-left: auto;

    color: #5a7657;

    font-size: 7px;

    font-weight: 700;
}


/* =========================================
   DOCUMENT CONTENT
========================================= */

.document-content {

    padding-top: 20px;
}


.document-line {

    width: 100%;

    height: 5px;

    background: #dfe3e7;

    border-radius: 5px;

    margin-bottom: 8px;
}


.document-line.short {
    width: 65%;
}


.document-line.line-heading {

    width: 45%;

    height: 8px;

    background: #0c1d31;
}


.document-space {
    height: 20px;
}


.speaker-line {

    display: flex;

    justify-content: space-between;

    margin-bottom: 7px;

    color: #c2995a;

    font-size: 8px;

    font-weight: 700;
}


.speaker-line b {

    color: #999;

    font-weight: 400;
}


.document-content p {

    color: #59616b;

    font-size: 10px;

    line-height: 1.7;

    margin-bottom: 18px;
}


/* =========================================
   DOCUMENT FOOTER
========================================= */

.document-footer {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 15px;

    padding-top: 10px;

    border-top: 1px solid #ddd;

    display: flex;

    justify-content: space-between;

    color: #777;

    font-size: 8px;
}


.document-footer i {

    color: #c2995a;

    margin-right: 4px;
}


/* =========================================
   SERVICE CARDS
========================================= */

.hm-service-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    min-width: 160px;

    background: rgba(12, 29, 49, 0.90);

    border: 1px solid rgba(194, 153, 90, 0.35);

    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);

    z-index: 5;

    transition: all 0.35s ease;
}


.hm-service-card:hover {

    transform: translateY(-8px) scale(1.03);

    border-color: #c2995a;
}


.service-icon {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(194, 153, 90, 0.12);

    color: #c2995a;

    border-radius: 6px;
}


.hm-service-card strong {

    display: block;

    color: #fefefe;

    font-size: 12px;
}


.hm-service-card small {

    display: block;

    color: rgba(254, 254, 254, 0.45);

    font-size: 8px;

    margin-top: 2px;
}


.legal-card {

    left: -15px;
    top: 170px;

    animation: cardFloat 5s ease-in-out infinite;
}


.business-card {

    right: -25px;
    top: 290px;

    animation: cardFloat 5s ease-in-out infinite 1s;
}


.general-card {

    left: 10px;
    bottom: 55px;

    animation: cardFloat 5s ease-in-out infinite 2s;
}


@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================
   FADE ANIMATION
========================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .hm-new-hero {

        padding: 80px 0;

        text-align: center;
    }


    .hm-hero-label {

        justify-content: center;
    }


    .hm-new-lead,
    .hm-new-description {

        margin-left: auto;
        margin-right: auto;
    }


    .hm-new-actions {

        justify-content: center;
    }


    .hm-mini-trust {

        justify-content: center;
    }


    .hm-transcription-visual {

        margin-top: 70px;

        min-height: 540px;
    }


    .hm-floating-symbol {

        display: none;
    }

}


@media (max-width: 767px) {

    .hm-new-hero {

        min-height: auto;

        padding: 70px 0 60px;
    }


    .title-small {
        font-size: 22px;
    }


    .title-main {

        font-size: 58px;

        letter-spacing: -3px;
    }


    .title-accent {

        font-size: 42px;
    }


    .hm-new-lead {

        font-size: 17px;
    }


    .hm-new-actions {

        flex-direction: column;

        gap: 18px;

        margin-bottom: 35px;
    }


    .hm-mini-trust {

        flex-direction: column;

        align-items: center;
    }


    .hm-transcription-visual {

        min-height: 500px;

        transform: scale(0.88);

        margin-top: 30px;

        margin-left: -6%;
        margin-right: -6%;
    }


    .hm-wave-container {

        width: 300px;

        right: 0;
    }


    .hm-document-card {

        width: 315px;
    }


    .legal-card {

        left: -5px;
    }


    .business-card {

        right: -5px;
    }


    .general-card {

        left: 0;
    }

}


@media (max-width: 480px) {

    .title-main {
        font-size: 50px;
    }


    .title-accent {
        font-size: 36px;
    }


    .hm-transcription-visual {

        transform: scale(0.75);

        margin-left: -13%;
        margin-right: -13%;

        min-height: 450px;
    }

}

/* =========================================================
   SERVICE INTRO
========================================================= */

.hm-service-intro {
    padding: 90px 0 55px;

    background: #fefefe;
}


.hm-section-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #c2995a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.hm-section-label span {
    width: 28px;
    height: 1px;

    background: #c2995a;
}


.hm-section-title {
    margin-bottom: 18px;

    color: #0c1d31;

    font-size: 39px;

    font-weight: 800;

    line-height: 1.2;
}


.hm-section-title span {
    color: #c2995a;
}


.hm-service-intro p {
    color: #687587;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   SERVICE NAVIGATION
========================================================= */

.hm-service-navigation {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 45px;
}


.hm-service-navigation a {
    min-width: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 18px;

    border: 1px solid rgba(62,79,103,0.15);

    background: #fefefe;

    color: #3e4f67;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


.hm-service-navigation a i {
    color: #c2995a;
}


.hm-service-navigation a:hover,
.hm-service-navigation a.active {
    background: #0c1d31;

    border-color: #0c1d31;

    color: #fefefe;

    transform: translateY(-3px);
}


/* =========================================================
   COMMON SERVICE SECTION
========================================================= */

.hm-service-section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;
}


.hm-service-section .container {
    position: relative;

    z-index: 3;
}


.hm-service-number {
    margin-bottom: 10px;

    color: rgba(194,153,90,0.35);

    font-size: 65px;

    font-weight: 900;

    line-height: 0.9;
}


.hm-service-kicker {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: #c2995a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.hm-service-kicker i {
    font-size: 14px;
}


.hm-service-section h2 {
    max-width: 750px;

    margin-bottom: 22px;

    color: #fefefe;

    font-size: 42px;

    font-weight: 800;

    line-height: 1.2;
}


.hm-service-section h2 span {
    color: #c2995a;
}


.hm-service-lead {
    max-width: 750px;

    color: #fefefe !important;

    font-size: 17px !important;

    font-weight: 600;

    line-height: 1.7 !important;
}


.hm-service-section p {
    max-width: 750px;

    color: rgba(254,254,254,0.62);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   LEGAL SECTION
========================================================= */

.hm-legal-section {
    min-height: 950px;

    background:
        linear-gradient(
            110deg,
            rgba(12,29,49,0.98),
            rgba(12,29,49,0.94)
        );
}


.hm-legal-section::before {
    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    right: -400px;
    top: 50px;

    border: 1px solid rgba(194,153,90,0.12);

    border-radius: 50%;

    animation: hmRotate 30s linear infinite;
}


.hm-parallax-overlay {
    position: absolute;

    inset: -50px;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(62,79,103,0.5),
            transparent 38%
        );

    pointer-events: none;
}


.hm-floating-service-symbol {
    position: absolute;

    display: flex;

    align-items: center;
    justify-content: center;

    color: rgba(194,153,90,0.12);

    font-size: 70px;

    animation: hmFloat 6s ease-in-out infinite;
}


.legal-symbol-one {
    top: 10%;

    left: 5%;

    font-family: Georgia, serif;
}


.legal-symbol-two {
    right: 6%;

    bottom: 15%;

    font-size: 50px;

    animation-delay: 2s;
}


/* =========================================================
   LEGAL VISUAL
========================================================= */

.hm-service-visual {
    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.hm-service-icon-large {
    position: absolute;

    width: 180px;
    height: 180px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(194,153,90,0.3);

    border-radius: 50%;

    color: #c2995a;

    font-size: 65px;

    animation: hmPulse 4s ease-in-out infinite;
}


.hm-service-stamp {
    position: absolute;

    top: 55px;
    right: 0;

    padding: 9px 13px;

    border: 1px solid rgba(194,153,90,0.4);

    background: #0c1d31;

    color: #c2995a;

    font-size: 8px;

    font-weight: 800;

    transform: rotate(7deg);
}


.hm-service-stamp i {
    margin-right: 5px;
}


.hm-service-document {
    position: relative;

    z-index: 2;

    width: 290px;

    padding: 28px;

    background: #fefefe;

    color: #0c1d31;

    box-shadow: 20px 30px 60px rgba(0,0,0,0.3);

    transform: rotate(-3deg);

    transition: all 0.5s ease;
}


.hm-service-document:hover {
    transform: rotate(0deg) translateY(-10px);
}


.document-top {
    display: flex;

    justify-content: space-between;

    margin-bottom: 25px;

    font-size: 10px;

    font-weight: 800;
}


.document-top span span {
    color: #c2995a;
}


.document-top i {
    color: #c2995a;
}


.document-title {
    margin-bottom: 20px;

    color: #3e4f67;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.document-line {
    width: 75%;
    height: 5px;

    margin-bottom: 8px;

    background: #e7eaed;
}


.document-line.large {
    width: 100%;
}


.document-line.medium {
    width: 55%;
}


.document-speaker {
    display: flex;

    justify-content: space-between;

    margin: 25px 0 10px;

    color: #3e4f67;

    font-size: 8px;
}


.document-speaker span {
    color: #c2995a;
}


.document-check {
    margin-top: 20px;

    padding: 10px;

    background: rgba(194,153,90,0.1);

    color: #3e4f67;

    font-size: 8px;

    font-weight: 800;
}


.document-check i {
    margin-right: 5px;

    color: #c2995a;
}


/* =========================================================
   FEATURES
========================================================= */

.hm-service-features {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}


.hm-service-features span {
    padding: 9px 12px;

    border: 1px solid rgba(194,153,90,0.25);

    color: #fefefe;

    font-size: 9px;

    font-weight: 700;
}


.hm-service-features i {
    margin-right: 5px;

    color: #c2995a;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.hm-list-row {
    margin-top: 80px;
}


.hm-list-heading {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin-bottom: 28px;

    color: #c2995a;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 3px;
}


.hm-list-heading span {
    width: 35px;
    height: 1px;

    background: #c2995a;
}


.hm-service-list {
    margin: 0;
    padding: 0;

    list-style: none;
}


.hm-service-list li {
    padding: 12px 14px;

    border-bottom: 1px solid rgba(254,254,254,0.08);

    color: #3e4f67;

    font-size: 14px;

    transition: all 0.3s ease;
}


.hm-service-list li:hover {
    padding-left: 20px;

    background: rgba(194,153,90,0.06);

    color: #c2995a;
}


.hm-service-list i {
    margin-right: 7px;

    color: #c2995a;
}


.hm-service-note,
.hm-business-note {
    margin-top: 45px;

    padding: 14px 18px;

    border: 1px solid rgba(194,153,90,0.18);

    background: rgba(194,153,90,0.05);

    color: rgba(254,254,254,0.7);

    font-size: 16px;

    text-align: center;
}


.hm-service-note i,
.hm-business-note i {
    margin-right: 7px;

    color: #c2995a;
}


/* =========================================================
   BUSINESS SECTION
========================================================= */

.hm-business-section {
    background: #f7f8fa;

    color: #0c1d31;
}


.hm-business-background {
    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    top: 100px;

    border: 1px solid rgba(62,79,103,0.08);

    border-radius: 50%;
}


.hm-business-section h2 {
    color: #0c1d31;
}


.hm-business-section p {
    color: #687587;
}


.hm-business-section .hm-service-lead {
    color: #3e4f67 !important;
}


.hm-business-section .hm-service-features span {
    color: #3e4f67;

    border-color: rgba(62,79,103,0.15);
}


.business-symbol-one {
    top: 15%;
    left: 4%;

    font-size: 55px;
}


.business-symbol-two {
    right: 5%;
    bottom: 10%;

    font-size: 55px;
}


/* =========================================================
   BUSINESS VISUAL
========================================================= */

.hm-business-visual {
    position: relative;

    min-height: 470px;
}


.hm-business-circle {
    position: absolute;

    width: 210px;
    height: 210px;

    top: 100px;
    left: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #c2995a;

    border-radius: 50%;

    background: #0c1d31;

    color: #c2995a;

    font-size: 55px;

    transform: translateX(-50%);

    animation: hmPulse 4s ease-in-out infinite;
}


.hm-business-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 190px;

    padding: 13px;

    background: #fefefe;

    border-left: 3px solid #c2995a;

    box-shadow: 0 15px 35px rgba(12,29,49,0.1);

    transition: all 0.4s ease;
}


.hm-business-card:hover {
    transform: translateX(8px);
}


.hm-business-card i {
    color: #c2995a;

    font-size: 19px;
}


.hm-business-card strong {
    display: block;

    color: #0c1d31;

    font-size: 9px;
}


.hm-business-card small {
    color: #7b8795;

    font-size: 8px;
}


.card-top {
    top: 45px;
    right: 0;
}


.card-middle {
    top: 245px;
    left: 0;
}


.card-bottom {
    right: 0;
    bottom: 35px;
}


/* =========================================================
   BUSINESS NOTE
========================================================= */

.hm-business-note {
    color: #687587;

    background: rgba(62,79,103,0.04);
}


.hm-business-note i {
    color: #c2995a;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.hm-general-section {
    background:
        linear-gradient(
            120deg,
            #3e4f67,
            #0c1d31
        );
}


.hm-general-grid {
    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(194,153,90,0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(194,153,90,0.12) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    transform: perspective(500px) rotateX(60deg) scale(1.5);

    transform-origin: center bottom;
}


.general-symbol-one {
    top: 12%;
    right: 5%;

    font-size: 55px;
}


.general-symbol-two {
    bottom: 12%;
    left: 6%;

    font-size: 50px;
}


/* =========================================================
   GENERAL VISUAL
========================================================= */

.hm-general-visual {
    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.hm-microphone {
    position: relative;

    z-index: 3;

    width: 150px;
    height: 150px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #c2995a;

    border-radius: 50%;

    background: #0c1d31;

    color: #c2995a;

    font-size: 60px;

    box-shadow:
        0 0 0 20px rgba(194,153,90,0.04),
        0 20px 60px rgba(0,0,0,0.25);

    animation: hmPulse 4s ease-in-out infinite;
}


.hm-sound-wave {
    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    width: 390px;
    height: 200px;
}


.hm-sound-wave span {
    width: 4px;

    height: 30px;

    background: #c2995a;

    border-radius: 5px;

    animation: hmWave 1.2s ease-in-out infinite alternate;
}


.hm-sound-wave span:nth-child(2) {
    animation-delay: 0.1s;
}

.hm-sound-wave span:nth-child(3) {
    animation-delay: 0.2s;
}

.hm-sound-wave span:nth-child(4) {
    animation-delay: 0.3s;
}

.hm-sound-wave span:nth-child(5) {
    animation-delay: 0.4s;
}

.hm-sound-wave span:nth-child(6) {
    animation-delay: 0.5s;
}

.hm-sound-wave span:nth-child(7) {
    animation-delay: 0.6s;
}

.hm-sound-wave span:nth-child(8) {
    animation-delay: 0.5s;
}

.hm-sound-wave span:nth-child(9) {
    animation-delay: 0.4s;
}

.hm-sound-wave span:nth-child(10) {
    animation-delay: 0.3s;
}

.hm-sound-wave span:nth-child(11) {
    animation-delay: 0.2s;
}

.hm-sound-wave span:nth-child(12) {
    animation-delay: 0.1s;
}


.hm-general-label {
    position: absolute;

    bottom: 50px;

    padding: 9px 14px;

    border: 1px solid rgba(194,153,90,0.3);

    background: #0c1d31;

    color: #c2995a;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   PROMISE SECTION
========================================================= */

.hm-service-promise {
    padding: 100px 0;

    background: #0c1d31;
}


.hm-service-promise .hm-section-title {
    color: #fefefe;
}


.hm-promise-intro {
    color: rgba(254,254,254,0.58);

    font-size: 13px;

    line-height: 1.8;
}


.hm-promise-card {
    height: 100%;

    padding: 32px 25px;

    border: 1px solid rgba(194,153,90,0.15);

    background: #3e4f67;

    transition: all 0.4s ease;
}


.hm-promise-card:hover {
    transform: translateY(-9px);

    border-color: #c2995a;

    background: #35465d;
}


.hm-promise-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: rgba(194,153,90,0.1);

    color: #c2995a;

    font-size: 19px;

    transition: all 0.3s ease;
}


.hm-promise-card:hover .hm-promise-icon {
    background: #c2995a;

    color: #0c1d31;

    transform: rotate(-5deg);
}


.hm-promise-card h4 {
    color: #fefefe;

    font-size: 18px;
}


.hm-promise-card p {
    margin: 0;

    color: rgba(254,254,254,0.58);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.hm-services-cta {
    position: relative;

    padding: 100px 0;

    background: #fefefe;

    overflow: hidden;
}


.hm-cta-decoration {
    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    right: -100px;

    border: 1px solid rgba(194,153,90,0.15);

    border-radius: 50%;
}


.hm-cta-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border: 1px solid #c2995a;

    border-radius: 50%;

    color: #c2995a;

    font-size: 23px;
}


.hm-services-cta h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 40px;

    font-weight: 800;
}


.hm-services-cta h2 span {
    color: #c2995a;
}


.hm-services-cta p {
    max-width: 750px;

    margin: 0 auto 30px;

    color: #687587;

    font-size: 13px;

    line-height: 1.9;
}


.hm-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}


.hm-cta-primary,
.hm-cta-secondary {
    display: inline-flex;

    align-items: center;

    padding: 14px 22px;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


.hm-cta-primary {
    background: #0c1d31;

    color: #fefefe;
}


.hm-cta-primary i {
    margin-left: 8px;
}


.hm-cta-primary:hover {
    background: #c2995a;

    color: #0c1d31;

    text-decoration: none;
}


.hm-cta-secondary {
    border: 1px solid rgba(62,79,103,0.2);

    color: #3e4f67;
}


.hm-cta-secondary:hover {
    background: #3e4f67;

    color: #fefefe;

    text-decoration: none;
}


/* =========================================================
   FOOTER
========================================================= */

.hm-services-footer {
    padding: 25px 0;

    background: #081522;

    color: #fefefe;
}


.hm-footer-logo {
    color: #fefefe;

    font-size: 21px;

    font-weight: 800;

    text-decoration: none;
}


.hm-footer-logo span {
    color: #c2995a;
}


.hm-footer-logo:hover {
    color: #fefefe;

    text-decoration: none;
}


.hm-services-footer p {
    margin: 4px 0 0;

    color: rgba(254,254,254,0.45);

    font-size: 9px;
}


.hm-footer-links {
    margin-bottom: 5px;
}


.hm-footer-links a {
    margin-left: 15px;

    color: rgba(254,254,254,0.5);

    font-size: 9px;

    text-decoration: none;
}


.hm-footer-links a:hover {
    color: #c2995a;
}


.hm-services-footer small {
    color: rgba(254,254,254,0.3);

    font-size: 8px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes hmFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }

}


@keyframes hmPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

}


@keyframes hmRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes hmRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


@keyframes hmWave {

    0% {
        height: 20px;
    }

    50% {
        height: 85px;
    }

    100% {
        height: 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hm-services-hero {
        padding: 80px 0;
    }

    .hm-services-hero h1 {
        font-size: 48px;
    }

    .hm-services-orbit {
        margin-top: 60px;
    }

    .hm-service-section {
        padding: 80px 0;
    }

    .hm-service-section h2 {
        font-size: 35px;
    }

    .hm-service-intro,
    .hm-service-promise,
    .hm-services-cta {
        padding: 75px 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hm-services-navbar .nav-link {
        margin-left: 0;

        padding: 10px 0 !important;
    }

    .hm-services-hero {
        min-height: auto;

        padding: 70px 0;
    }

    .hm-services-hero h1 {
        font-size: 37px;
    }

    .hm-hero-lead {
        font-size: 17px;
    }

    .hm-hero-description {
        font-size: 13px;
    }

    .hm-services-orbit {
        width: 330px;
        height: 330px;

        margin-top: 60px;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 250px;
        height: 250px;

        top: 40px;
        left: 40px;
    }

    .orbit-three {
        width: 175px;
        height: 175px;

        top: 77px;
        left: 77px;
    }

    .hm-services-center {
        width: 120px;
        height: 120px;

        top: 105px;
        left: 105px;
    }

    .hm-services-center i {
        font-size: 27px;
    }

    .hm-hero-symbol {
        display: none;
    }

    .hm-service-navigation {
        flex-direction: column;
    }

    .hm-service-navigation a {
        width: 100%;
    }

    .hm-section-title {
        font-size: 30px;
    }

    .hm-service-section h2 {
        font-size: 30px;
    }

    .hm-service-visual {
        min-height: 380px;
    }

    .hm-business-visual {
        min-height: 400px;
    }

    .hm-business-circle {
        width: 170px;
        height: 170px;
    }

    .hm-business-card {
        min-width: 160px;
    }

    .hm-service-list {
        margin-bottom: 0;
    }

    .hm-list-row {
        margin-top: 55px;
    }

    .hm-services-cta h2 {
        font-size: 30px;
    }

    .hm-footer-links a {
        margin: 0 7px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hm-services-hero h1 {
        font-size: 31px;
    }

    .hm-hero-buttons {
        display: block;
    }

    .hm-primary-btn,
    .hm-outline-btn {
        width: 100%;

        justify-content: center;

        margin-bottom: 10px;
    }

    .hm-services-orbit {
        transform: scale(0.85);

        margin-left: -15px;
    }

    .hm-service-section h2 {
        font-size: 27px;
    }

    .hm-service-features {
        display: block;
    }

    .hm-service-features span {
        display: inline-block;

        margin-bottom: 6px;
    }

    .hm-cta-buttons {
        display: block;
    }

    .hm-cta-primary,
    .hm-cta-secondary {
        width: 100%;

        justify-content: center;

        margin-bottom: 10px;
    }

    .hm-services-footer {
        text-align: center;
    }

    .hm-footer-links {
        margin-top: 15px;
    }

}