
:root{--navy:#0c1d31;--slate:#3e4f67;--gold:#c2995a;--white:#fefefe;--soft:#f5f7fa}
html{scroll-behavior:smooth}body{font-family: calibriCalibri;color:var(--navy);background:var(--white);line-height:1.7}
.navbar{background:rgba(12,29,49,.98)!important;padding:.8rem 0;box-shadow:0 4px 18px rgba(12,29,49,.12)}
.navbar-brand{font-weight:800;letter-spacing:.08em;color:#fff!important}.navbar-brand span{color:var(--gold)}
.nav-link{color:#e9edf2!important;font-weight:600;margin:0 .18rem;border-radius:4px;transition:.25s}.nav-link:hover,.nav-link.active{background:var(--gold);color:var(--navy)!important}
.hero{background:linear-gradient(135deg,rgba(12,29,49,.98),rgba(62,79,103,.94));color:#fff;padding:110px 0 95px;overflow:hidden}
.eyebrow{color:var(--gold);font-weight:800;text-transform:uppercase;letter-spacing:.16em;font-size:.82rem}.hero h1{font-size:clamp(2.3rem,5vw,4.4rem);font-weight:800;line-height:1.08}.hero p{font-size:1.1rem;max-width:680px;color:#e5eaf0}
.btn-gold{background:var(--gold);color:var(--navy);border:2px solid var(--gold);font-weight:800}.btn-gold:hover{background:transparent;color:#fff;border-color:var(--gold)}
.btn-outline-gold{border:2px solid var(--gold);color:var(--gold);font-weight:800}.btn-outline-gold:hover{background:var(--gold);color:var(--navy)}
.section{padding:80px 0}.section-alt{background:var(--soft)}.section-title{text-align:center;margin-bottom:48px}.section-title h2{font-weight:800}.section-title .line{width:60px;height:3px;background:var(--gold);margin:15px auto}
.card-modern{height:100%;border:0;border-radius:10px;box-shadow:0 8px 28px rgba(12,29,49,.08);transition:.3s;background:#fff}.card-modern:hover{transform:translateY(-7px);box-shadow:0 16px 35px rgba(12,29,49,.15)}
.icon-box{width:58px;height:58px;border-radius:8px;background:var(--navy);color:var(--gold);display:flex;align-items:center;justify-content:center;font-size:1.35rem;margin-bottom:20px}.gold{color:var(--gold)!important}
.stats{background:var(--navy);color:#fff;padding:35px 0}.stat h3{font-size:2rem;font-weight:800;color:var(--gold)}
.price{font-size:2.4rem;font-weight:800}.price small{font-size:.95rem;color:#667}.table thead{background:var(--navy);color:#fff}
.cta{background:linear-gradient(135deg,var(--slate),var(--navy));color:#fff;border-radius:12px;padding:45px}
footer{background:#081522;color:#bfc8d2;padding:45px 0 20px}footer a{color:#d8dee6}footer a:hover{color:var(--gold);text-decoration:none}
.form-control{border:1px solid #d9dfe6;padding:.75rem 1rem}.form-control:focus{border-color:var(--gold);box-shadow:0 0 0 .2rem rgba(194,153,90,.18)}
.badge-gold{background:rgba(194,153,90,.16);color:#8a6834;padding:.45rem .7rem;border-radius:30px}
.page-hero{background:var(--navy);color:#fff;padding:70px 0}.page-hero h1{font-weight:800}.list-check{list-style:none;padding:0}.list-check li{margin:.7rem 0}.list-check i{color:var(--gold);margin-right:.55rem}
.process-step{position:relative;padding-left:70px}.process-number{position:absolute;left:0;top:0;width:48px;height:48px;border-radius:50%;background:var(--gold);color:var(--navy);display:flex;align-items:center;justify-content:center;font-weight:800}
@media(max-width:991px){.navbar-collapse{background:var(--navy);padding:12px;border-radius:6px;margin-top:8px}.nav-link{margin:.15rem 0}.hero{padding:80px 0 70px}}
position: sticky;
top: 0;
z-index: 1030;
```css
/* =========================================================
   HIMSCRIPT NAVIGATION BAR
   ========================================================= */

.himscript-navbar {
    background: #0c1d31 !important;
    min-height: 72px;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.20);
}

/* Logo */
.himscript-logo {
    color: #fefefe !important;
    font-family: calibri,Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-right: 20px;
    margin-left: 20px;
}

.himscript-logo span {
    color: #c2995a;
}

/* Navigation List */
.himscript-navbar .navbar-nav {
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Navigation Items */
.himscript-navbar .nav-item {
    margin: 0 2px;
    white-space: nowrap;
}

/* Navigation Links */
.himscript-navbar .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fefefe !important;

    font-family:calibri, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    padding: 10px 9px !important;
    border-radius: 5px;

    transition: all 0.25s ease-in-out;
}

/* Icons */
.himscript-navbar .nav-link i {
    color: #c2995a;
    font-size: 13px;
    margin-right: 5px;
    transition: all 0.25s ease-in-out;
}

/* Hover */
.himscript-navbar .nav-link:hover {
    background: #c2995a;
    color: #0c1d31 !important;
}

.himscript-navbar .nav-link:hover i {
    color: #0c1d31;
}

/* Active */
.himscript-navbar .nav-link.active {
    background: #c2995a;
    color: #0c1d31 !important;
}

.himscript-navbar .nav-link.active i {
    color: #0c1d31;
}

/* Contact Us Highlight */
.himscript-navbar .contact-nav {
    border: 1px solid #c2995a;
    margin-left: 5px;
}

.himscript-navbar .contact-nav:hover {
    background: #c2995a;
}

/* Mobile Toggle */
.himscript-navbar .navbar-toggler {
    border: 1px solid #c2995a;
    padding: 6px 9px;
}

.himscript-navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(194, 153, 90, 0.25);
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .himscript-navbar .nav-link {
        font-size: 14px;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .himscript-logo {
        font-size: 26px;
    }
}


/* =========================================================
   LAPTOP / SMALL DESKTOP
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .himscript-logo {
        font-size: 22px;
        margin-right: 8px;
    }

    .himscript-navbar .nav-link {
        font-size: 12px;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .himscript-navbar .nav-link i {
        font-size: 11px;
        margin-right: 3px;
    }

    .himscript-navbar .nav-item {
        margin: 0;
    }
}


/* =========================================================
   TABLET & MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .himscript-navbar {
        min-height: 65px;
    }

    .himscript-navbar .navbar-collapse {
        background: #0c1d31;
        margin-top: 10px;
        padding: 10px;
        border-top: 1px solid rgba(194, 153, 90, 0.35);
        border-radius: 5px;
    }

    .himscript-navbar .navbar-nav {
        align-items: stretch !important;
        flex-wrap: nowrap;
    }

    .himscript-navbar .nav-item {
        width: 100%;
        margin: 2px 0;
    }

    .himscript-navbar .nav-link {
        justify-content: flex-start;
        padding: 11px 12px !important;
        font-size: 14px;
    }

    .himscript-navbar .contact-nav {
        margin-left: 0;
        margin-top: 5px;
    }
}
```
/* =========================================================
HERO SECTION
   ========================================================= */
   /* =========================================================
   HIMSCRIPT HERO SECTION
   Theme:
   Navy  : #0c1d31
   Slate : #3e4f67
   Gold  : #c2995a
   White : #fefefe
   ========================================================= */


/* ---------------------------------------------------------
   HERO MAIN
   --------------------------------------------------------- */

.himscript-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0c1d31;
    color: #fefefe;
}


/* ---------------------------------------------------------
   LEFT HERO PANEL
   --------------------------------------------------------- */

.hero-left {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 15% 80%,
            rgba(194,153,90,0.08),
            transparent 35%
        ),
        #fefefe;

    color: #0c1d31;

    /*
       Curved right edge similar to the
       uploaded reference image.
    */
    border-radius: 0 45% 45% 0;
    z-index: 3;
}


.hero-left-content {
    width: 100%;
    max-width: 680px;

    padding: 55px 35px 55px 7%;
}


/* ---------------------------------------------------------
   BRAND
   --------------------------------------------------------- */

.hero-brand {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}


.brand-mark {
    position: relative;

    display: flex;
    align-items: center;

    font-family: calibri Georgia, "Times New Roman", serif;

    font-size: 78px;
    font-weight: bold;

    color: #0c1d31;

    line-height: 1;
}


.brand-mark .brand-s {
    color: #0c1d31;
}


.brand-divider {
    width: 2px;
    height: 90px;

    background: #0c1d31;

    margin: 0 18px;
}


.brand-name h1 {
    margin: 0;

    font-family: calibri Georgia, "Times New Roman", serif;

    font-size: 55px;
    font-weight: 500;

    color: #0c1d31;
}


.brand-name p {
    margin: 4px 0 0;

    font-family: calibri Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #9a7640;
}


/* ---------------------------------------------------------
   HERO HEADING
   --------------------------------------------------------- */

.hero-heading {
    margin: 0;

    font-family: calibri Arial, Helvetica, sans-serif;

    font-size: 32px;
    line-height: 1.25;

    font-weight: 700;

    color: #0c1d31;
}


.hero-heading span {
    display: inline;
}


.hero-gold-line {
    width: 230px;
    height: 3px;

    margin: 18px 0 12px;

    background: #c2995a;

    position: relative;
}


.hero-gold-line:after {
    content: "";

    position: absolute;

    right: -8px;
    top: -3px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c2995a;
}


.hero-subheading {
    margin: 0;

    font-size: 19px;

    color: #3e4f67;

    letter-spacing: .2px;
}


/* ---------------------------------------------------------
   HERO BUTTONS
   --------------------------------------------------------- */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}


.hero-btn-primary {
    background: #c2995a;

    border: 2px solid #c2995a;

    color: #0c1d31;

    font-weight: 700;

    padding: 11px 20px;

    border-radius: 4px;

    transition: all .3s ease;
}


.hero-btn-primary:hover {
    background: #0c1d31;

    border-color: #0c1d31;

    color: #fefefe;
}


.hero-btn-secondary {
    background: transparent;

    border: 2px solid #0c1d31;

    color: #0c1d31;

    font-weight: 700;

    padding: 11px 20px;

    border-radius: 4px;

    transition: all .3s ease;
}


.hero-btn-secondary:hover {
    background: #0c1d31;

    color: #fefefe;
}


/* ---------------------------------------------------------
   MIDDLE FEATURES
   --------------------------------------------------------- */

.hero-middle {
    position: relative;

    min-height: 500px;

    background: #0c1d31;

    display: flex;

    align-items: center;

    z-index: 2;
}


.feature-content {
    width: 100%;

    padding: 30px 35px;
}


.hero-feature {
    display: flex;

    align-items: center;

    min-height: 68px;
}


.feature-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(254,254,254,.8);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #c2995a;

    font-size: 19px;

    margin-right: 16px;
}


.feature-text h4 {
    margin: 0;

    color: #fefefe;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.3;

    letter-spacing: .3px;
}


.feature-text p {
    margin: 3px 0 0;

    color: #d4dbe3;

    font-size: 12px;

    line-height: 1.3;
}


.feature-line {
    height: 1px;

    margin: 7px 0;

    background: rgba(254,254,254,.15);
}


/* ---------------------------------------------------------
   RIGHT HERO PANEL
   --------------------------------------------------------- */

.hero-right {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #3e4f67,
            #0c1d31
        );
}


.hero-image-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 70%,
            rgba(194,153,90,.30),
            transparent 35%
        );

    opacity: .8;
}


.hero-right-content {
    position: relative;

    height: 100%;

    z-index: 2;

    padding: 50px 35px;
}


/* ---------------------------------------------------------
   RIGHT MESSAGE
   --------------------------------------------------------- */

.hero-message {
    position: relative;

    max-width: 350px;

    margin-left: auto;

    text-align: left;
}


.hero-message p {
    margin: 0;

    color: #fefefe;

    font-size: 18px;

    line-height: 1.4;
}


.hero-message strong {
    display: block;

    color: #c2995a;

    font-size: 18px;

    line-height: 1.4;
}


.message-line {
    width: 48px;

    height: 3px;

    background: #c2995a;

    margin-top: 15px;
}


/* ---------------------------------------------------------
   RIGHT VISUAL
   --------------------------------------------------------- */

.hero-visual {
    position: absolute;

    left: 35px;
    right: 20px;
    bottom: 45px;

    height: 280px;
}


/* Laptop */

.visual-laptop {
    position: absolute;

    left: 15%;

    bottom: 25px;

    width: 280px;
    height: 170px;

    border-radius: 10px;

    background: #111d2b;

    border: 7px solid #28384b;

    box-shadow: 0 20px 30px rgba(0,0,0,.35);

    transform: rotate(-7deg);

    color: #c2995a;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 55px;
}


.audio-wave {
    position: absolute;

    left: 25px;
    right: 25px;

    bottom: 45px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;
}


.audio-wave span {
    width: 4px;

    background: #c2995a;

    border-radius: 4px;

    animation: audioWave 1.1s ease-in-out infinite;
}


.audio-wave span:nth-child(1) {
    height: 12px;
}

.audio-wave span:nth-child(2) {
    height: 25px;
    animation-delay: .1s;
}

.audio-wave span:nth-child(3) {
    height: 18px;
    animation-delay: .2s;
}

.audio-wave span:nth-child(4) {
    height: 32px;
    animation-delay: .3s;
}

.audio-wave span:nth-child(5) {
    height: 20px;
    animation-delay: .4s;
}

.audio-wave span:nth-child(6) {
    height: 29px;
    animation-delay: .5s;
}

.audio-wave span:nth-child(7) {
    height: 15px;
    animation-delay: .6s;
}

.audio-wave span:nth-child(8) {
    height: 24px;
    animation-delay: .7s;
}


@keyframes audioWave {

    0%,100% {
        transform: scaleY(.6);
    }

    50% {
        transform: scaleY(1);
    }
}


/* Balance Symbol */

.legal-symbol {
    position: absolute;

    right: 5%;

    top: 25px;

    color: #c2995a;

    font-size: 110px;

    opacity: .9;

    transform: rotate(-3deg);
}


/* Gavel */

.legal-gavel {
    position: absolute;

    right: 18%;

    bottom: 5px;

    color: #c2995a;

    font-size: 85px;

    transform: rotate(-15deg);

    filter: drop-shadow(
        0 10px 10px rgba(0,0,0,.4)
    );
}


/* ---------------------------------------------------------
   BOTTOM SERVICE STRIP
   --------------------------------------------------------- */

.hero-bottom-strip {
    position: relative;

    background: #0c1d31;

    border-top: 1px solid rgba(194,153,90,.45);

    padding: 17px 25px;

    z-index: 10;
}


.service-item {
    min-height: 55px;

    display: flex;

    align-items: center;

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

    padding: 7px 20px;
}


.service-icon {
    flex: 0 0 42px;

    color: #c2995a;

    font-size: 28px;

    margin-right: 13px;

    text-align: center;
}


.service-item strong,
.service-item span {
    display: block;

    color: #fefefe;

    font-size: 13px;

    line-height: 1.35;
}


.service-item span {
    color: #d1d8df;
}


/* ---------------------------------------------------------
   PRICE BOX
   --------------------------------------------------------- */

.hero-price {
    min-height: 58px;

    border: 2px solid #c2995a;

    border-radius: 40px;

    display: flex;

    align-items: center;

    padding: 5px 16px;

    margin-left: 12px;
}


.price-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #c2995a;

    color: #0c1d31;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    font-weight: 700;

    margin-right: 10px;
}


.price-content > div {
    display: flex;

    align-items: baseline;

    white-space: nowrap;
}


.price-content strong {
    color: #fefefe;

    font-size: 31px;

    line-height: 1;

    margin-right: 7px;
}


.price-content span {
    color: #c2995a;

    font-size: 15px;

    font-weight: 700;
}


.price-content small {
    display: block;

    color: #fefefe;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .hero-left-content {
        padding-left: 35px;
        padding-right: 25px;
    }

    .brand-name h1 {
        font-size: 43px;
    }

    .brand-mark {
        font-size: 60px;
    }

    .brand-divider {
        height: 70px;
        margin: 0 12px;
    }

    .hero-heading {
        font-size: 27px;
    }

    .feature-content {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 15px;
        margin-right: 10px;
    }

    .feature-text h4 {
        font-size: 12px;
    }

    .feature-text p {
        font-size: 10px;
    }

    .hero-price {
        margin-left: 0;
    }
}


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

@media (max-width: 767px) {

    .hero-left {
        min-height: auto;

        border-radius: 0;

        text-align: center;
    }


    .hero-left-content {
        padding: 45px 22px 40px;
    }


    .hero-brand {
        justify-content: center;

        margin-bottom: 25px;
    }


    .brand-mark {
        font-size: 48px;
    }


    .brand-divider {
        height: 55px;

        margin: 0 9px;
    }


    .brand-name h1 {
        font-size: 34px;
    }


    .brand-name p {
        font-size: 7px;

        letter-spacing: .6px;
    }


    .hero-heading {
        font-size: 25px;
    }


    .hero-heading span {
        display: block;
    }


    .hero-gold-line {
        margin: 16px auto 12px;
    }


    .hero-subheading {
        font-size: 16px;
    }


    .hero-buttons {
        justify-content: center;
    }


    /* Middle features */

    .hero-middle {
        min-height: auto;
    }


    .feature-content {
        padding: 28px 22px;
    }


    .hero-feature {
        min-height: 65px;
    }


    .feature-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        font-size: 16px;
    }


    .feature-text h4 {
        font-size: 13px;
    }


    .feature-text p {
        font-size: 11px;
    }


    /* Right section */

    .hero-right {
        min-height: 360px;
    }


    .hero-right-content {
        padding: 35px 22px;
    }


    .hero-message {
        margin: 0 auto;

        text-align: center;
    }


    .hero-message p,
    .hero-message strong {
        font-size: 16px;
    }


    .message-line {
        margin: 12px auto;
    }


    .hero-visual {
        left: 15px;
        right: 15px;

        bottom: 15px;

        height: 205px;
    }


    .visual-laptop {
        width: 190px;
        height: 120px;

        left: 10%;

        font-size: 35px;
    }


    .legal-symbol {
        font-size: 70px;

        right: 3%;
    }


    .legal-gavel {
        font-size: 55px;

        right: 15%;
    }


    /* Bottom strip */

    .hero-bottom-strip {
        padding: 20px 15px;
    }


    .service-item {
        border-right: none;

        border-bottom: 1px solid rgba(254,254,254,.15);

        padding: 13px 8px;

        min-height: 60px;
    }


    .service-item:last-of-type {
        border-bottom: none;
    }


    .hero-price {
        margin: 15px 0 0;

        justify-content: center;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .hero-left-content {
        padding-left: 15px;
        padding-right: 15px;
    }


    .brand-mark {
        font-size: 40px;
    }


    .brand-name h1 {
        font-size: 28px;
    }


    .hero-heading {
        font-size: 22px;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-price {
        border-radius: 12px;
    }


    .price-content strong {
        font-size: 26px;
    }

}

.hero-right {
    position: relative;
    min-height: 500px;

    background-image:
        linear-gradient(
            90deg,
            rgba(12, 29, 49, 0.25),
            rgba(12, 29, 49, 0.05)
        ),
        url("../images/legal-transcription-hero.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* =========================================
   HIMSCRIPT - TRUST SECTION
========================================= */

.trust-section {
    position: relative;
    padding: 100px 0;
    background: #f7f9fc;
    overflow: hidden;
}

/* Decorative Background */
.trust-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(13, 53, 104, 0.04);
    top: -180px;
    left: -180px;
}

.trust-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.035);
    bottom: -150px;
    right: -150px;
}

/* Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px 8px 10px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: #ffffff;
    color: #0d3568;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.trust-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    border-radius: 50%;
    background: #0d3568;
    color: #ffffff;
}

/* Heading */
.trust-title {
    margin-bottom: 15px;
    color: #172b4d;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.trust-title span {
    color: #d62839;
}

.trust-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: #6c7787;
    font-size: 16px;
    line-height: 1.8;
}

/* Cards */
.trust-card {
    position: relative;
    height: 100%;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(23, 43, 77, 0.05);
    z-index: 1;
}

.trust-card::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13, 53, 104, 0.035);
    top: -30px;
    right: -30px;
    transition: all 0.35s ease;
}

.trust-card:hover {
    transform: translateY(-9px);
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(23, 43, 77, 0.12);
}

.trust-card:hover::before {
    width: 150px;
    height: 150px;
}

/* Icons */
.trust-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.35s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Icon Colors */
.legal-icon {
    background: #0d3568;
}

.business-icon {
    background: #155d9c;
}

.research-icon {
    background: #087f8c;
}

.journalist-icon {
    background: #b42335;
}

.consultant-icon {
    background: #6a4c93;
}

.university-icon {
    background: #285943;
}

.agency-icon {
    background: #c56b15;
}

.individual-icon {
    background: #8b3158;
}

/* Card Heading */
.trust-card h4 {
    position: relative;
    margin-bottom: 12px;
    color: #172b4d;
    font-size: 19px;
    font-weight: 700;
}

.trust-card p {
    position: relative;
    margin: 0;
    color: #718096;
    font-size: 14px;
    line-height: 1.75;
}

/* Card Number */
.trust-number {
    position: absolute;
    right: 22px;
    bottom: 14px;
    color: #eef1f5;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    transition: all 0.35s ease;
}

.trust-card:hover .trust-number {
    color: #e6eaf0;
    transform: translateY(-5px);
}

/* Bottom Trust Box */
.trust-bottom {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding: 25px 30px;
    border-radius: 15px;
    background: #0d3568;
    box-shadow: 0 15px 40px rgba(13, 53, 104, 0.18);
}

.trust-bottom-icon {
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 23px;
}

.trust-bottom-content {
    flex: 1;
}

.trust-bottom-content h5 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
}

.trust-bottom-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
}

/* Button */
.trust-button {
    display: inline-flex;
    align-items: center;
    padding: 13px 20px;
    margin-left: 20px;
    border-radius: 8px;
    background: #ffffff;
    color: #0d3568;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.trust-button i {
    margin-left: 9px;
    transition: transform 0.3s ease;
}

.trust-button:hover {
    background: #d62839;
    color: #ffffff;
    text-decoration: none;
}

.trust-button:hover i {
    transform: translateX(4px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .trust-section {
        padding: 75px 0;
    }

    .trust-title {
        font-size: 36px;
    }

    .trust-bottom {
        align-items: flex-start;
    }

}

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

@media (max-width: 767px) {

    .trust-section {
        padding: 60px 0;
    }

    .trust-title {
        font-size: 30px;
    }

    .trust-subtitle {
        font-size: 14px;
    }

    .trust-card {
        padding: 27px 24px;
    }

    .trust-bottom {
        display: block;
        padding: 25px;
        text-align: center;
    }

    .trust-bottom-icon {
        margin: 0 auto 15px;
    }

    .trust-button {
        margin: 20px 0 0;
    }
}

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

@media (max-width: 480px) {

    .trust-title {
        font-size: 27px;
    }

    .trust-badge {
        font-size: 10px;
    }

    .trust-card h4 {
        font-size: 18px;
    }

}

/* =====================================================
   HIMSCRIPT - OUR SERVICES
   Brand Colors:
   #3e4f67 - Slate Blue
   #c2995a - Premium Gold
   #fefefe - Off White
   #0c1d31 - Deep Navy
===================================================== */

.hm-services-section {
    position: relative;
    padding: 100px 0;
    background: #fefefe;
    overflow: hidden;
}


/* ---------------------------------------------
   BACKGROUND DECORATION
--------------------------------------------- */

.hm-services-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(62, 79, 103, 0.035);
    top: -220px;
    left: -220px;
}

.hm-services-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(194, 153, 90, 0.045);
    bottom: -180px;
    right: -150px;
}


/* ---------------------------------------------
   SECTION HEADING
--------------------------------------------- */

.hm-services-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #c2995a;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hm-services-label span {
    width: 28px;
    height: 1px;
    display: inline-block;
    background: #c2995a;
}

.hm-services-title {
    margin-bottom: 18px;

    color: #0c1d31;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.hm-services-title strong {
    color: #3e4f67;
    font-weight: 800;
}

.hm-services-intro {
    max-width: 720px;

    margin: 0 auto;

    color: #687587;

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------
   SERVICE HORIZONTAL ROW
--------------------------------------------- */

.hm-service-row {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 235px;

    margin-top: 45px;

    padding: 35px 40px;

    background: #0c1d31;

    border: 1px solid rgba(194, 153, 90, 0.25);

    box-shadow: 0 15px 40px rgba(12, 29, 49, 0.10);

    overflow: hidden;

    transition: all 0.4s ease;
}


/* Gold vertical line */

.hm-service-row::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 5px;

    background: #c2995a;

    transition: width 0.4s ease;
}

.hm-service-row:hover::before {
    width: 9px;
}


/* Subtle background glow */

.hm-service-row::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    right: -100px;
    top: -100px;

    border: 1px solid rgba(194, 153, 90, 0.15);
}


/* ---------------------------------------------
   ALTERNATING ROW
--------------------------------------------- */

.hm-service-row-reverse {
    background: #3e4f67;
}

.hm-service-row-reverse::before {
    background: #fefefe;
}


/* ---------------------------------------------
   NUMBER
--------------------------------------------- */

.hm-service-number {
    min-width: 70px;

    margin-right: 25px;

    color: rgba(194, 153, 90, 0.55);

    font-size: 46px;
    line-height: 1;

    font-weight: 800;
}


/* ---------------------------------------------
   ICON
--------------------------------------------- */

.hm-service-icon {
    position: relative;

    min-width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 32px;

    border: 1px solid rgba(194, 153, 90, 0.45);

    background: rgba(194, 153, 90, 0.08);

    color: #c2995a;

    font-size: 30px;

    transition: all 0.4s ease;
}

.hm-service-row:hover .hm-service-icon {
    background: #c2995a;
    color: #0c1d31;

    transform: rotate(-3deg) scale(1.06);
}


/* ---------------------------------------------
   CONTENT
--------------------------------------------- */

.hm-service-content {
    position: relative;
    z-index: 2;

    flex: 1;
}

.hm-service-tag {
    margin-bottom: 8px;

    color: #c2995a;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hm-service-row-reverse .hm-service-tag {
    color: #fefefe;
    opacity: 0.8;
}

.hm-service-content h3 {
    margin-bottom: 12px;

    color: #fefefe;

    font-size: 27px;
    font-weight: 700;
}

.hm-service-content p {
    max-width: 760px;

    margin-bottom: 18px;

    color: rgba(254, 254, 254, 0.70);

    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------
   FEATURES
--------------------------------------------- */

.hm-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hm-service-features span {
    color: #fefefe;

    font-size: 11px;
    font-weight: 600;
}

.hm-service-features i {
    margin-right: 6px;

    color: #c2995a;
}


/* ---------------------------------------------
   ARROW
--------------------------------------------- */

.hm-service-arrow {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 30px;

    border: 1px solid rgba(194, 153, 90, 0.4);

    border-radius: 50%;

    color: #c2995a;

    font-size: 15px;

    transition: all 0.35s ease;
}

.hm-service-row:hover .hm-service-arrow {
    background: #c2995a;

    color: #0c1d31;

    transform: translateX(5px);
}


/* ---------------------------------------------
   CTA
--------------------------------------------- */

.hm-services-cta {
    position: relative;

    margin-top: 65px;

    padding: 45px 30px;

    background: #3e4f67;
}

.hm-services-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 80px;
    height: 3px;

    transform: translateX(-50%);

    background: #c2995a;
}

.hm-services-cta h4 {
    margin-bottom: 10px;

    color: #fefefe;

    font-size: 22px;
    font-weight: 700;
}

.hm-services-cta p {
    margin-bottom: 22px;

    color: rgba(254, 254, 254, 0.7);

    font-size: 13px;
}


/* ---------------------------------------------
   CTA BUTTON
--------------------------------------------- */

.hm-services-btn {
    display: inline-flex;

    align-items: center;

    padding: 13px 25px;

    background: #c2995a;

    color: #0c1d31;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.hm-services-btn i {
    margin-left: 10px;

    transition: transform 0.3s ease;
}

.hm-services-btn:hover {
    background: #fefefe;

    color: #0c1d31;

    text-decoration: none;
}

.hm-services-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hm-services-section {
        padding: 75px 0;
    }

    .hm-services-title {
        font-size: 36px;
    }

    .hm-service-row {
        padding: 30px;
    }

    .hm-service-number {
        min-width: 55px;

        margin-right: 18px;

        font-size: 36px;
    }

    .hm-service-icon {
        min-width: 70px;
        height: 70px;

        margin-right: 22px;

        font-size: 25px;
    }

}


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

@media (max-width: 767px) {

    .hm-services-section {
        padding: 60px 0;
    }

    .hm-services-title {
        font-size: 29px;
    }

    .hm-services-intro {
        font-size: 14px;
    }

    .hm-service-row,
    .hm-service-row-reverse {
        display: block;

        padding: 30px 25px;

        margin-top: 30px;
    }

    .hm-service-number {
        position: absolute;

        top: 20px;
        right: 20px;

        min-width: auto;

        margin: 0;

        font-size: 32px;
    }

    .hm-service-icon {
        margin-bottom: 22px;
        margin-right: 0;
    }

    .hm-service-content h3 {
        font-size: 23px;
    }

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

    .hm-service-features {
        display: block;
    }

    .hm-service-features span {
        display: block;

        margin-bottom: 8px;
    }

    .hm-service-arrow {
        display: none;
    }

    .hm-services-cta {
        margin-top: 45px;

        padding: 35px 20px;
    }

    .hm-services-cta h4 {
        font-size: 19px;
    }

}


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

@media (max-width: 480px) {

    .hm-services-title {
        font-size: 26px;
    }

    .hm-services-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hm-service-row {
        min-height: auto;
    }

}



/* =====================================================
   HIMSCRIPT - WHY CHOOSE US
   BRAND COLORS

   #3e4f67 = Slate Blue
   #c2995a = Premium Gold
   #fefefe = Off White
   #0c1d31 = Deep Navy
===================================================== */


/* =====================================================
   MAIN SECTION
===================================================== */

.hm-why-section {

    position: relative;

    padding: 110px 0;

    background: #0c1d31;

    color: #fefefe;

    overflow: hidden;

}


/* =====================================================
   BACKGROUND ORBS
===================================================== */

.hm-why-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(1px);

}


.hm-orb-one {

    width: 500px;
    height: 500px;

    top: -250px;
    left: -250px;

    border: 1px solid rgba(194,153,90,0.12);

}


.hm-orb-two {

    width: 400px;
    height: 400px;

    right: -200px;
    bottom: -200px;

    border: 1px solid rgba(62,79,103,0.25);

}


/* =====================================================
   SECTION HEADER
===================================================== */

.hm-why-label {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #c2995a;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.hm-why-label span {

    display: inline-block;

    width: 28px;

    height: 1px;

    background: #c2995a;

}


.hm-why-title {

    margin-bottom: 20px;

    color: #fefefe;

    font-size: 48px;

    font-weight: 800;

    line-height: 1.15;

}


.hm-why-title span {

    color: #c2995a;

}


.hm-why-intro {

    max-width: 750px;

    margin: auto;

    color: rgba(254,254,254,0.68);

    font-size: 15px;

    line-height: 1.9;

}


/* =====================================================
   FEATURE AREA
===================================================== */

.hm-why-feature {

    margin-top: 90px;

}


/* =====================================================
   ANIMATED ILLUSTRATION
===================================================== */

.hm-why-illustration {

    position: relative;

    width: 360px;

    height: 360px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* Main circle */

.hm-illustration-circle {

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    border: 1px solid rgba(194,153,90,0.35);

    background: rgba(62,79,103,0.18);

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

}


.hm-illustration-circle::before {

    content: "";

    position: absolute;

    inset: 20px;

    border-radius: 50%;

    border: 1px dashed rgba(194,153,90,0.30);

    animation: hmRotate 15s linear infinite;

}


/* =====================================================
   MICROPHONE
===================================================== */

.hm-microphone {

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

}


.hm-mic-head {

    width: 90px;

    height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 3px solid #c2995a;

    border-radius: 50px;

    color: #c2995a;

    font-size: 34px;

    background: #0c1d31;

    box-shadow:

        0 0 0 8px rgba(194,153,90,0.05),

        0 0 35px rgba(194,153,90,0.12);

}


.hm-mic-body {

    width: 5px;

    height: 35px;

    background: #c2995a;

}


.hm-mic-base {

    width: 70px;

    height: 4px;

    background: #c2995a;

}


/* =====================================================
   SOUND WAVES
===================================================== */

.hm-sound-wave {

    position: absolute;

    border: 1px solid #c2995a;

    border-left: none;

    border-top: none;

    border-bottom: none;

    border-radius: 50%;

    opacity: 0.35;

}


.wave-one {

    width: 180px;
    height: 180px;

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

}


.wave-two {

    width: 230px;
    height: 230px;

    animation: hmWave 2s ease-in-out infinite 0.4s;

}


.wave-three {

    width: 280px;
    height: 280px;

    animation: hmWave 2s ease-in-out infinite 0.8s;

}


/* =====================================================
   AI BADGE
===================================================== */

.hm-ai-badge {

    position: absolute;

    top: 38px;

    right: 35px;

    z-index: 10;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #c2995a;

    color: #0c1d31;

    font-size: 14px;

    font-weight: 800;

    box-shadow: 0 10px 25px rgba(194,153,90,0.25);

    animation: hmFloat 3s ease-in-out infinite;

}


/* =====================================================
   HUMAN BADGE
===================================================== */

.hm-human-badge {

    position: absolute;

    bottom: 45px;

    left: 30px;

    z-index: 10;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid #c2995a;

    background: #3e4f67;

    color: #fefefe;

    font-size: 18px;

    animation: hmFloat 3s ease-in-out infinite 1s;

}


/* =====================================================
   FEATURE CONTENT
===================================================== */

.hm-feature-content {

    position: relative;

    padding-left: 30px;

}


.hm-feature-number {

    position: absolute;

    top: -25px;

    right: 20px;

    color: rgba(194,153,90,0.08);

    font-size: 100px;

    font-weight: 900;

    line-height: 1;

}


.hm-feature-kicker {

    margin-bottom: 12px;

    color: #c2995a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.hm-feature-content h3 {

    margin-bottom: 18px;

    color: #fefefe;

    font-size: 36px;

    font-weight: 700;

}


.hm-feature-content h3 strong {

    color: #c2995a;

}


.hm-feature-content p {

    color: rgba(254,254,254,0.65);

    font-size: 14px;

    line-height: 1.9;

}


.hm-feature-content p strong {

    color: #c2995a;

}


/* =====================================================
   FEATURE CHECK LIST
===================================================== */

.hm-feature-points {

    display: grid;

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

    gap: 12px;

    margin-top: 25px;

}


.hm-feature-points div {

    padding: 11px 13px;

    border: 1px solid rgba(194,153,90,0.12);

    background: rgba(62,79,103,0.18);

    color: rgba(254,254,254,0.75);

    font-size: 11px;

    transition: all 0.3s ease;

}


.hm-feature-points div:hover {

    border-color: #c2995a;

    transform: translateX(5px);

}


.hm-feature-points i {

    margin-right: 7px;

    color: #c2995a;

}


/* =====================================================
   DIFFERENCE SECTION
===================================================== */

.hm-difference-wrapper {

    margin-top: 100px;

    padding: 65px 50px;

    background: #3e4f67;

    border: 1px solid rgba(194,153,90,0.18);

}


.hm-difference-heading h3 {

    margin-bottom: 20px;

    color: #fefefe;

    font-size: 35px;

    font-weight: 700;

}


.hm-difference-heading h3 span {

    color: #c2995a;

}


.hm-difference-heading p {

    max-width: 430px;

    color: rgba(254,254,254,0.68);

    font-size: 13px;

    line-height: 1.9;

}


.hm-difference-line {

    width: 60px;

    height: 3px;

    margin-top: 25px;

    background: #c2995a;

}


/* =====================================================
   ADVANTAGE CARDS
===================================================== */

.hm-advantage-card {

    height: 100%;

    display: flex;

    padding: 23px;

    background: #0c1d31;

    border: 1px solid rgba(194,153,90,0.10);

    transition: all 0.35s ease;

}


.hm-advantage-card:hover {

    transform: translateY(-7px);

    border-color: rgba(194,153,90,0.45);

    box-shadow: 0 15px 35px rgba(0,0,0,0.18);

}


.hm-advantage-icon {

    min-width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 15px;

    background: rgba(194,153,90,0.10);

    color: #c2995a;

    font-size: 17px;

    transition: all 0.3s ease;

}


.hm-advantage-card:hover .hm-advantage-icon {

    background: #c2995a;

    color: #0c1d31;

}


.hm-advantage-content h4 {

    margin-bottom: 4px;

    color: #c2995a;

    font-size: 25px;

    font-weight: 800;

}


.hm-advantage-content h4 i {

    font-size: 20px;

}


.hm-advantage-content h5 {

    margin-bottom: 7px;

    color: #fefefe;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.4;

}


.hm-advantage-content p {

    margin: 0;

    color: rgba(254,254,254,0.55);

    font-size: 10px;

    line-height: 1.6;

}


/* =====================================================
   TRUST STRIP
===================================================== */

.hm-trust-strip {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    margin-top: 70px;

    padding: 22px;

    border-top: 1px solid rgba(194,153,90,0.18);

    border-bottom: 1px solid rgba(194,153,90,0.18);

}


.hm-trust-item {

    display: flex;

    align-items: center;

    color: rgba(254,254,254,0.75);

    font-size: 11px;

    font-weight: 600;

}


.hm-trust-item i {

    margin-right: 8px;

    color: #c2995a;

    font-size: 15px;

}


.hm-trust-divider {

    width: 1px;

    height: 20px;

    margin: 0 25px;

    background: rgba(194,153,90,0.25);

}


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

.hm-why-cta {

    margin-top: 75px;

}


.hm-why-cta h4 {

    color: #fefefe;

    font-size: 25px;

    font-weight: 700;

}


.hm-why-cta h4 span {

    color: #c2995a;

}


.hm-why-cta p {

    margin-bottom: 25px;

    color: rgba(254,254,254,0.55);

    font-size: 13px;

}


.hm-why-btn {

    display: inline-flex;

    align-items: center;

    padding: 14px 25px;

    background: #c2995a;

    color: #0c1d31;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.hm-why-btn i {

    margin-left: 10px;

    transition: transform 0.3s ease;

}


.hm-why-btn:hover {

    background: #fefefe;

    color: #0c1d31;

    text-decoration: none;

}


.hm-why-btn:hover i {

    transform: translateX(5px);

}


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

@keyframes hmPulse {

    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }

}


@keyframes hmRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes hmWave {

    0%, 100% {
        transform: scale(0.90);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.55;
    }

}


@keyframes hmFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hm-why-section {

        padding: 80px 0;

    }

    .hm-why-title {

        font-size: 40px;

    }

    .hm-why-feature {

        margin-top: 70px;

    }

    .hm-feature-content {

        padding-left: 0;

    }

    .hm-difference-wrapper {

        padding: 45px 30px;

    }

}


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

@media (max-width: 767px) {

    .hm-why-section {

        padding: 65px 0;

    }

    .hm-why-title {

        font-size: 32px;

    }

    .hm-why-intro {

        font-size: 13px;

    }

    .hm-why-feature {

        margin-top: 55px;

    }

    .hm-why-illustration {

        width: 300px;
        height: 300px;

    }

    .hm-illustration-circle {

        width: 220px;
        height: 220px;

    }

    .hm-feature-content h3 {

        font-size: 28px;

    }

    .hm-feature-points {

        grid-template-columns: 1fr;

    }

    .hm-difference-wrapper {

        margin-top: 70px;

        padding: 35px 20px;

    }

    .hm-difference-heading h3 {

        font-size: 28px;

    }

    .hm-trust-strip {

        display: block;

        text-align: center;

    }

    .hm-trust-item {

        justify-content: center;

        margin: 13px 0;

    }

    .hm-trust-divider {

        display: none;

    }

    .hm-why-cta h4 {

        font-size: 21px;

    }

}


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

@media (max-width: 480px) {

    .hm-why-title {

        font-size: 28px;

    }

    .hm-why-label {

        font-size: 9px;

        letter-spacing: 2px;

    }

    .hm-why-illustration {

        transform: scale(0.88);

    }

}


/* =====================================================
   HIMSCRIPT PREMIUM FOOTER
   BRAND COLORS

   #3e4f67 = Slate Blue
   #c2995a = Premium Gold
   #fefefe = Off White
   #0c1d31 = Deep Navy
===================================================== */


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

.hm-footer {

    position: relative;

    background: #0c1d31;

    color: #fefefe;

    overflow: hidden;

}


/* Decorative gold glow */

.hm-footer::before {

    content: "";

    position: absolute;

    top: -160px;
    right: -160px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(194,153,90,0.12);

    pointer-events: none;

}


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

.hm-footer-main {

    padding: 75px 0 55px;

    border-bottom: 1px solid rgba(254,254,254,0.08);

}


/* =====================================================
   LOGO
===================================================== */

.hm-footer-logo {

    display: inline-block;

    margin-bottom: 13px;

    color: #fefefe;

    font-size: 30px;

    font-weight: 800;

    letter-spacing: 1px;

    text-decoration: none;

}


.hm-footer-logo span {

    color: #c2995a;

}


.hm-footer-logo:hover {

    color: #fefefe;

    text-decoration: none;

}


/* =====================================================
   GOLD LINE
===================================================== */

.hm-footer-line {

    width: 55px;

    height: 3px;

    margin-bottom: 20px;

    background: #c2995a;

    transition: width 0.35s ease;

}


.hm-footer-brand:hover .hm-footer-line {

    width: 85px;

}


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

.hm-footer-brand p {

    max-width: 350px;

    margin-bottom: 22px;

    color: rgba(254,254,254,0.58);

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   SERVICE TAGS
===================================================== */

.hm-footer-services {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.hm-footer-services span {

    padding: 6px 11px;

    border: 1px solid rgba(194,153,90,0.3);

    color: #c2995a;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s ease;

}


.hm-footer-services span:hover {

    background: #c2995a;

    color: #0c1d31;

}


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

.hm-footer-heading {

    position: relative;

    margin-bottom: 25px;

    padding-bottom: 12px;

    color: #fefefe;

    font-size: 14px;

    font-weight: 700;

}


.hm-footer-heading::after {

    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 28px;

    height: 2px;

    background: #c2995a;

    transition: width 0.3s ease;

}


.col-lg-2:hover .hm-footer-heading::after,
.col-lg-3:hover .hm-footer-heading::after {

    width: 50px;

}


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

.hm-footer-links {

    padding: 0;

    margin: 0;

    list-style: none;

}


.hm-footer-links li {

    margin-bottom: 12px;

}


.hm-footer-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: rgba(254,254,254,0.58);

    font-size: 12px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.hm-footer-links a::before {

    content: "";

    width: 0;

    height: 1px;

    margin-right: 0;

    background: #c2995a;

    transition: all 0.3s ease;

}


.hm-footer-links a:hover {

    color: #c2995a;

    transform: translateX(5px);

    text-decoration: none;

}


.hm-footer-links a:hover::before {

    width: 10px;

    margin-right: 7px;

}


/* =====================================================
   CHECK ICONS
===================================================== */

.hm-footer-links a i {

    margin-right: 8px;

    color: #c2995a;

    font-size: 9px;

}


/* =====================================================
   TRUST BAR
===================================================== */

.hm-footer-trust {

    padding: 20px 0;

    background: #3e4f67;

}


.hm-footer-trust-items {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

}


.hm-footer-trust-items span {

    display: inline-flex;

    align-items: center;

    color: rgba(254,254,254,0.75);

    font-size: 10px;

    font-weight: 600;

}


.hm-footer-trust-items i {

    margin-right: 7px;

    color: #c2995a;

    font-size: 13px;

}


/* =====================================================
   FREE SAMPLE BUTTON
===================================================== */

.hm-footer-sample-btn {

    display: inline-flex;

    align-items: center;

    padding: 12px 18px;

    background: #c2995a;

    color: #0c1d31;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.4px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.hm-footer-sample-btn i {

    margin-left: 9px;

    transition: transform 0.3s ease;

}


.hm-footer-sample-btn:hover {

    background: #fefefe;

    color: #0c1d31;

    text-decoration: none;

}


.hm-footer-sample-btn:hover i {

    transform: translateX(5px);

}


/* =====================================================
   COPYRIGHT BAR
===================================================== */

.hm-footer-bottom {

    padding: 18px 0;

    background: #0c1d31;

}


.hm-footer-bottom p {

    margin: 0;

    color: rgba(254,254,254,0.42);

    font-size: 10px;

}


.hm-footer-bottom p span {

    color: #c2995a;

    font-weight: 700;

}


.hm-footer-tagline {

    color: rgba(194,153,90,0.65) !important;

    font-size: 9px !important;

    letter-spacing: 0.8px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hm-footer-main {

        padding: 60px 0 40px;

    }

    .hm-footer-trust-items {

        gap: 15px;

    }

}


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

@media (max-width: 767px) {

    .hm-footer-main {

        padding: 55px 0 30px;

    }

    .hm-footer-brand p {

        max-width: 100%;

    }

    .hm-footer-trust {

        text-align: center;

    }

    .hm-footer-trust-items {

        justify-content: center;

    }

    .hm-footer-bottom {

        padding: 20px 0;

    }

    .hm-footer-tagline {

        margin-top: 8px !important;

    }

}


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

@media (max-width: 480px) {

    .hm-footer-logo {

        font-size: 27px;

    }

    .hm-footer-trust-items {

        display: block;

    }

    .hm-footer-trust-items span {

        display: block;

        margin-bottom: 10px;

    }

    .hm-footer-sample-btn {

        margin-top: 5px;

    }

}


/* =====================================================
   HIMSCRIPT - CONTACT US
   BRAND COLORS

   #3e4f67 = Slate Blue
   #c2995a = Premium Gold
   #fefefe = Off White
   #0c1d31 = Deep Navy
===================================================== */


/* =====================================================
   MAIN SECTION
===================================================== */

.hm-contact-section {

    position: relative;

    padding: 100px 0;

    background: #fefefe;

    overflow: hidden;

}


/* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

.hm-contact-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.hm-contact-decoration-one {

    width: 350px;
    height: 350px;

    top: -180px;
    left: -150px;

    border: 1px solid rgba(62,79,103,0.08);

}


.hm-contact-decoration-two {

    width: 280px;
    height: 280px;

    right: -130px;
    bottom: -140px;

    border: 1px solid rgba(194,153,90,0.15);

}


/* =====================================================
   SECTION LABEL
===================================================== */

.hm-contact-label {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #c2995a;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.hm-contact-label span {

    width: 28px;

    height: 1px;

    background: #c2995a;

}


/* =====================================================
   TITLE
===================================================== */

.hm-contact-title {

    margin-bottom: 18px;

    color: #0c1d31;

    font-size: 43px;

    font-weight: 800;

    line-height: 1.2;

}


.hm-contact-title span {

    color: #c2995a;

}


/* =====================================================
   INTRO
===================================================== */

.hm-contact-intro {

    max-width: 720px;

    margin: 0 auto;

    color: #687587;

    font-size: 15px;

    line-height: 1.85;

}


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

.hm-contact-content {

    margin-top: 65px;

}


/* =====================================================
   CONTACT INFORMATION WRAPPER
===================================================== */

.hm-contact-info-wrapper {

    height: 100%;

}


/* =====================================================
   CONTACT CARD
===================================================== */

.hm-contact-card {

    position: relative;

    height: 100%;

    display: flex;

    padding: 27px 23px;

    background: #fefefe;

    border: 1px solid rgba(62,79,103,0.10);

    box-shadow: 0 10px 30px rgba(12,29,49,0.045);

    overflow: hidden;

    transition: all 0.35s ease;

}


.hm-contact-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 3px;
    height: 0;

    background: #c2995a;

    transition: height 0.35s ease;

}


.hm-contact-card:hover {

    transform: translateY(-7px);

    border-color: rgba(194,153,90,0.30);

    box-shadow: 0 18px 40px rgba(12,29,49,0.09);

}


.hm-contact-card:hover::before {

    height: 100%;

}


/* =====================================================
   ICON
===================================================== */

.hm-contact-icon {

    min-width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 16px;

    background: #0c1d31;

    color: #c2995a;

    font-size: 19px;

    transition: all 0.35s ease;

}


.hm-contact-card:hover .hm-contact-icon {

    background: #c2995a;

    color: #0c1d31;

    transform: rotate(-4deg);

}


/* =====================================================
   CARD CONTENT
===================================================== */

.hm-contact-card-content {

    min-width: 0;

}


.hm-contact-card-label {

    display: block;

    margin-bottom: 7px;

    color: #c2995a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.hm-contact-card h4 {

    margin-bottom: 7px;

    color: #0c1d31;

    font-size: 17px;

    font-weight: 700;

}


.hm-contact-card a {

    display: inline-block;

    margin-bottom: 8px;

    color: #3e4f67;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    word-break: break-word;

    transition: color 0.3s ease;

}


.hm-contact-card a:hover {

    color: #c2995a;

    text-decoration: none;

}


.hm-contact-card p {

    margin: 0;

    color: #7b8796;

    font-size: 11px;

    line-height: 1.65;

}


.hm-contact-highlight {

    margin-bottom: 7px !important;

    color: #c2995a !important;

    font-weight: 600;

}


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

.hm-contact-cta {

    position: relative;

    height: 100%;

    padding: 45px 40px;

    background: #0c1d31;

    box-shadow: 0 20px 45px rgba(12,29,49,0.16);

    overflow: hidden;

}


.hm-contact-cta::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    right: -110px;
    top: -110px;

    border: 1px solid rgba(194,153,90,0.20);

}


.hm-contact-cta::after {

    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    left: -100px;
    bottom: -90px;

    background: rgba(62,79,103,0.20);

}


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

.hm-contact-cta-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: rgba(194,153,90,0.12);

    border: 1px solid rgba(194,153,90,0.35);

    color: #c2995a;

    font-size: 21px;

    transition: all 0.35s ease;

}


.hm-contact-cta:hover .hm-contact-cta-icon {

    background: #c2995a;

    color: #0c1d31;

    transform: scale(1.08);

}


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

.hm-contact-cta-label {

    display: block;

    margin-bottom: 12px;

    color: #c2995a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hm-contact-cta h3 {

    margin-bottom: 18px;

    color: #fefefe;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.25;

}


.hm-contact-cta h3 span {

    color: #c2995a;

}


.hm-contact-cta > p {

    color: rgba(254,254,254,0.62);

    font-size: 13px;

    line-height: 1.8;

}


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

.hm-contact-cta-features {

    margin-top: 25px;

}


.hm-contact-cta-features div {

    margin-bottom: 11px;

    color: rgba(254,254,254,0.78);

    font-size: 11px;

}


.hm-contact-cta-features i {

    margin-right: 8px;

    color: #c2995a;

}


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

.hm-contact-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 27px;

}


.hm-contact-primary-btn,
.hm-contact-secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 19px;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    transition: all 0.3s ease;

}


.hm-contact-primary-btn {

    background: #c2995a;

    color: #0c1d31;

}


.hm-contact-primary-btn i {

    margin-left: 9px;

    transition: transform 0.3s ease;

}


.hm-contact-primary-btn:hover {

    background: #fefefe;

    color: #0c1d31;

    text-decoration: none;

}


.hm-contact-primary-btn:hover i {

    transform: translateX(5px);

}


.hm-contact-secondary-btn {

    border: 1px solid rgba(254,254,254,0.25);

    color: #fefefe;

}


.hm-contact-secondary-btn i {

    margin-right: 7px;

    font-size: 13px;

}


.hm-contact-secondary-btn:hover {

    border-color: #c2995a;

    background: #c2995a;

    color: #0c1d31;

    text-decoration: none;

}


/* =====================================================
   BOTTOM TRUST MESSAGE
===================================================== */

.hm-contact-bottom {

    display: flex;

    align-items: center;

    margin-top: 35px;

    padding: 18px 25px;

    background: #3e4f67;

}


.hm-contact-bottom-icon {

    min-width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 15px;

    background: rgba(194,153,90,0.12);

    color: #c2995a;

    font-size: 16px;

}


.hm-contact-bottom strong {

    display: block;

    margin-bottom: 3px;

    color: #fefefe;

    font-size: 12px;

}


.hm-contact-bottom span {

    color: rgba(254,254,254,0.62);

    font-size: 10px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hm-contact-section {

        padding: 75px 0;

    }

    .hm-contact-title {

        font-size: 37px;

    }

    .hm-contact-content {

        margin-top: 50px;

    }

    .hm-contact-cta {

        padding: 38px 30px;

    }

}


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

@media (max-width: 767px) {

    .hm-contact-section {

        padding: 60px 0;

    }

    .hm-contact-title {

        font-size: 30px;

    }

    .hm-contact-intro {

        font-size: 13px;

    }

    .hm-contact-content {

        margin-top: 40px;

    }

    .hm-contact-card {

        padding: 23px 20px;

    }

    .hm-contact-cta {

        padding: 35px 25px;

    }

    .hm-contact-cta h3 {

        font-size: 27px;

    }

    .hm-contact-bottom {

        align-items: flex-start;

    }

}


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

@media (max-width: 480px) {

    .hm-contact-label {

        font-size: 9px;

        letter-spacing: 2px;

    }

    .hm-contact-title {

        font-size: 27px;

    }

    .hm-contact-card {

        display: block;

    }

    .hm-contact-icon {

        margin-bottom: 15px;

    }

    .hm-contact-buttons {

        display: block;

    }

    .hm-contact-primary-btn,
    .hm-contact-secondary-btn {

        width: 100%;

        margin-bottom: 9px;

    }

}