/* =========================================================
   ESTABLISHMENT / FACTORY COMPLIANCE
   PROFESSIONAL BLUE THEME
   COMPLETE CORRECTED CSS
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    /* ---------- BACKGROUNDS ---------- */

    --bg-light: #F5F9FF;
    --bg-soft: #EEF5FF;
    --white: #FFFFFF;

    /* ---------- BLUE PALETTE ---------- */

    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-200: #BFDBFE;
    --blue-300: #93C5FD;
    --blue-400: #60A5FA;
    --blue-500: #2563EB;
    --blue-600: #1D4ED8;
    --blue-700: #1E40AF;
    --blue-800: #1E3A8A;
    --blue-900: #172554;

    --deep-blue: #071A33;

    /* ---------- TEXT ---------- */

    --text-dark: #10233F;
    --text: #334155;
    --text-muted: #64748B;

    /* ---------- BORDERS ---------- */

    --border-blue: rgba(37, 99, 235, 0.18);

    /* ---------- SHADOW ---------- */

    --shadow-blue: rgba(30, 64, 175, 0.12);

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {

    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Lato', sans-serif;

    background: var(--bg-light);

    color: var(--text-dark);

    line-height: 1.7;

    overflow-x: hidden;

}

img {

    max-width: 100%;
    display: block;

}

a {

    text-decoration: none;

}

button,
input,
select,
textarea {

    font: inherit;

}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {

    font-family: 'Playfair Display', serif;

    line-height: 1.2;

}


.section-label,
.section-eyebrow {

    display: block;

    font-family: 'Cinzel', serif;

    font-size: 0.72rem;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    color: var(--blue-600);

    margin-bottom: 0.75rem;

}


.section-title {

    font-size: clamp(1.8rem, 3.5vw, 2.8rem);

    font-weight: 700;

    color: var(--blue-800);

    margin-bottom: 1rem;

}


.section-title.light {

    color: var(--white);

}


.heading-lg {

    font-size: clamp(2rem, 4vw, 3rem);

    color: var(--blue-800);

    margin-bottom: 1rem;

}


.text-blue {

    color: var(--blue-600);

}


.section-subtitle {

    font-size: 1.05rem;

    color: var(--text-muted);

    max-width: 640px;

}


.section-subtitle.light {

    color: rgba(255,255,255,0.78);

}


.center-text {

    margin-left: auto;
    margin-right: auto;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;

}


.section-pad {

    padding: 90px 0;

}


.section-pad-sm {

    padding: 60px 0;

}


/* =========================================================
   DIVIDER
========================================================= */

.gold-divider {

    width: 60px;

    height: 3px;

    background: linear-gradient(
        90deg,
        var(--blue-500),
        var(--blue-300)
    );

    margin: 1.25rem 0 2rem;

    border-radius: 5px;

}


.gold-divider.center {

    margin-left: auto;
    margin-right: auto;

}


/* =========================================================
   BUTTON
========================================================= */

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 30px;

    background: linear-gradient(
        135deg,
        var(--blue-600),
        var(--blue-800)
    );

    color: var(--white);

    border: none;

    border-radius: 5px;

    font-family: 'Cinzel', serif;

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 8px 25px rgba(37,99,235,0.25);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(37,99,235,0.35);

}


/* =========================================================
   INTRO BAND
========================================================= */

#intro-band {

    background: var(--blue-800);

    padding: 27px 0;

}


.intro-band-inner {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

}


.intro-band-item {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,0.85);

    font-size: 0.88rem;

    padding: 0 24px;

    border-right:
        1px solid rgba(147,197,253,0.25);

}


.intro-band-item:last-child {

    border-right: none;

}


.intro-band-item .dot {

    width: 7px;

    height: 7px;

    flex-shrink: 0;

    background: var(--blue-300);

    border-radius: 50%;

}


/* =========================================================
   ESTABLISHMENT SECTION
========================================================= */

#establishment-compliance {

    background: var(--bg-light);

}


.establishment-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 70px;

    align-items: center;

}


.service-intro {

    font-size: 1rem;

    color: var(--text-muted);

    max-width: 650px;

    margin-bottom: 1.5rem;

}


.service-list {

    list-style: none;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px 25px;

}


.service-list li {

    position: relative;

    padding: 13px 0 13px 28px;

    color: var(--text);

    font-size: 0.92rem;

    border-bottom:
        1px solid var(--border-blue);

}


.service-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 13px;

    color: var(--blue-600);

    font-weight: 800;

}


/* =========================================================
   IMAGE FRAME
========================================================= */

.image-frame {

    position: relative;

    border-radius: 12px;

    overflow: hidden;

    min-height: 500px;

    box-shadow:
        0 20px 55px rgba(15,48,90,0.18);

}


.image-frame img {

    width: 100%;

    height: 500px;

    object-fit: cover;

}


.image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(11,31,58,0.82),
            transparent 58%
        );

}


.image-caption {

    position: absolute;

    left: 28px;

    right: 28px;

    bottom: 28px;

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--white);

}


.caption-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-600);

    border-radius: 8px;

    font-size: 1.25rem;

}


.image-caption strong {

    display: block;

    font-size: 1.1rem;

}


.image-caption span {

    display: block;

    color: rgba(255,255,255,0.7);

    font-size: 0.82rem;

}


/* =========================================================
   PROCESS
========================================================= */

#process {

    background: var(--deep-blue);

}


.process-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

}


.process-intro {

    color: rgba(255,255,255,0.72);

    font-size: 0.96rem;

    max-width: 480px;

}


.process-timeline {

    padding-top: 5px;

}


.step-item {

    display: flex;

    gap: 20px;

    position: relative;

    padding-bottom: 36px;

}


.step-item:not(:last-child)::before {

    content: "";

    position: absolute;

    left: 21px;

    top: 50px;

    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            var(--blue-400),
            transparent
        );

}


.step-num {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blue-400),
            var(--blue-600)
        );

    color: var(--white);

    font-family: 'Cinzel', serif;

    font-size: 0.8rem;

    font-weight: 700;

    box-shadow:
        0 0 0 5px rgba(37,99,235,0.12);

}


.step-item h4 {

    color: var(--white);

    font-size: 1.1rem;

    margin-bottom: 6px;

}


.step-item p {

    color: rgba(255,255,255,0.64);

    font-size: 0.9rem;

}


/* =========================================================
   PROCESS CALLOUT
========================================================= */

.process-callout {

    display: flex;

    align-items: center;

    gap: 16px;

    background:
        rgba(37,99,235,0.15);

    border:
        1px solid rgba(96,165,250,0.3);

    border-radius: 10px;

    padding: 24px;

    margin-top: 20px;

}


.process-callout-icon {

    width: 56px;

    height: 56px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(37,99,235,0.25);

    color: var(--blue-300);

    border-radius: 9px;

    font-size: 1.5rem;

}


.process-callout-title {

    color: var(--blue-300);

    font-family: 'Playfair Display', serif;

    font-size: 1.1rem;

    font-weight: 700;

}


.process-callout-text {

    color: rgba(255,255,255,0.68);

    font-size: 0.88rem;

}


/* =========================================================
   WHY CHOOSE
========================================================= */

#why-choose {

    background: var(--bg-soft);

}


.why-choose-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    gap: 70px;

    align-items: center;

}


.why-item {

    display: flex;

    gap: 20px;

    padding: 23px;

    background: var(--white);

    border:
        1px solid transparent;

    border-radius: 9px;

    margin-bottom: 16px;

    transition: all 0.3s ease;

}


.why-item:hover {

    transform: translateY(-3px);

    border-color: var(--blue-200);

    box-shadow:
        0 10px 30px var(--shadow-blue);

}


.why-icon {

    width: 46px;

    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: var(--blue-50);

    color: var(--blue-600);

    font-size: 1.3rem;

}


.why-icon svg {

    width: 24px;

    height: 24px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

}


.why-item h4 {

    color: var(--blue-800);

    font-size: 1.05rem;

    margin-bottom: 6px;

}


.why-item p {

    color: var(--text-muted);

    font-size: 0.9rem;

}


.why-cta {

    margin-top: 30px;

}


.why-image-frame {

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(15,48,90,0.16);

}


.why-image-frame img {

    width: 100%;

    min-height: 580px;

    object-fit: cover;

}


/* =========================================================
   TIMELINE
========================================================= */

#compliance-timeline {

    background: var(--blue-800);

}


.timeline-heading {

    margin-bottom: 55px;

}


.timeline-list {

    max-width: 850px;

    margin: 0 auto;

}


.timeline-month {

    display: flex;

    gap: 20px;

    align-items: flex-start;

    padding-bottom: 28px;

    position: relative;

}


.timeline-month:not(:last-child)::before {

    content: "";

    position: absolute;

    left: 21px;

    top: 50px;

    bottom: 0;

    width: 2px;

    background:
        rgba(147,197,253,0.3);

}


.timeline-dot {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blue-300),
            var(--blue-500)
        );

    color: var(--white);

    font-family: 'Cinzel', serif;

    font-size: 0.65rem;

    font-weight: 700;

}


.timeline-month h4 {

    color: var(--white);

    margin-bottom: 5px;

    font-size: 1.05rem;

}


.timeline-month p {

    color: rgba(255,255,255,0.65);

    font-size: 0.88rem;

}


.activities-box {

    max-width: 850px;

    margin: 20px auto 0;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(147,197,253,0.2);

    border-radius: 9px;

    padding: 28px;

}


.activities-box-title {

    color: var(--blue-300);

    font-family: 'Playfair Display', serif;

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 8px;

}


.activities-box p {

    color: rgba(255,255,255,0.7);

    font-size: 0.88rem;

}


/* =========================================================
   CLIENTS
========================================================= */

#clients {

    background: var(--white);

    overflow: hidden;

}


.client-marquee {

    width: 100%;

    overflow: hidden;

    margin-top: 20px;

}


.client-track {

    display: flex;

    width: max-content;

    gap: 14px;

    animation:
        clientScroll 30s linear infinite;

}


.client-item {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 18px;

    border:
        1px solid var(--blue-200);

    border-radius: 30px;

    color: var(--blue-800);

    background: var(--blue-50);

    font-size: 0.84rem;

    font-weight: 600;

}


@keyframes clientScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   BLOG
========================================================= */

#blog {

    background: var(--bg-soft);

}


.blog-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

}


.blog-card {

    background: var(--white);

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 5px 25px var(--shadow-blue);

    transition: all 0.3s ease;

}


.blog-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 40px rgba(30,64,175,0.18);

}


.blog-image-placeholder {

    height: 190px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );

    color: rgba(255,255,255,0.8);

    font-size: 3rem;

}


.blog-body {

    padding: 24px;

}


.blog-tag {

    display: inline-block;

    background: var(--blue-50);

    color: var(--blue-700);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    padding: 4px 10px;

    border-radius: 3px;

    margin-bottom: 12px;

}


.blog-body h4 {

    color: var(--blue-800);

    margin-bottom: 10px;

    font-size: 1rem;

}


.blog-body p {

    color: var(--text-muted);

    font-size: 0.85rem;

    margin-bottom: 16px;

}


.blog-body a {

    color: var(--blue-600);

    font-family: 'Cinzel', serif;

    font-size: 0.7rem;

    letter-spacing: 0.1em;

    font-weight: 700;

}


/* =========================================================
   CONTACT
========================================================= */

#contact {

    background: var(--deep-blue);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 70px;

}


.contact-description {

    color: rgba(255,255,255,0.72);

    max-width: 500px;

}


.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(147,197,253,0.16);

}


.contact-icon {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(37,99,235,0.15);

    color: var(--blue-300);

    border:
        1px solid rgba(96,165,250,0.25);

}


.contact-info-item strong {

    display: block;

    color: var(--white);

    font-family: 'Playfair Display', serif;

}


.contact-info-item span {

    display: block;

    color: rgba(255,255,255,0.62);

    font-size: 0.88rem;

}


/* =========================================================
   FORM
========================================================= */

.contact-form {

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(96,165,250,0.2);

    border-radius: 10px;

    padding: 36px;

    backdrop-filter: blur(10px);

}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;

}


.form-group {

    margin-bottom: 20px;

}


.form-group.full {

    grid-column: 1 / -1;

}


.form-label {

    display: block;

    color: var(--blue-300);

    font-family: 'Cinzel', serif;

    font-size: 0.78rem;

    letter-spacing: 0.06em;

    margin-bottom: 8px;

}


.form-label span {

    color: #ff8f8f;

}


.form-input,
.form-textarea {

    width: 100%;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid rgba(147,197,253,0.2);

    border-radius: 5px;

    padding: 12px 15px;

    color: var(--white);

    font-family: 'Lato', sans-serif;

    font-size: 0.92rem;

    outline: none;

    transition: 0.3s;

}


.form-input::placeholder,
.form-textarea::placeholder {

    color:
        rgba(255,255,255,0.4);

}


.form-input:focus,
.form-textarea:focus {

    border-color: var(--blue-400);

    box-shadow:
        0 0 0 3px rgba(37,99,235,0.1);

}


.form-select option {

    background: var(--deep-blue);

    color: var(--white);

}


.form-textarea {

    min-height: 130px;

    resize: vertical;

}


.form-submit {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px;

    border: none;

    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            var(--blue-500),
            var(--blue-700)
        );

    color: var(--white);

    font-family: 'Cinzel', serif;

    font-weight: 600;

    letter-spacing: 0.05em;

    cursor: pointer;

    transition: 0.3s;

}


.form-submit:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(37,99,235,0.3);

}


.form-submit.success {

    background: #16A34A;

}


.form-privacy {

    color:
        rgba(255,255,255,0.48);

    font-size: 0.72rem;

    margin-top: 12px;

    text-align: center;

}


/* =========================================================
   FINAL CTA
========================================================= */

#final-cta {

    background:
        linear-gradient(
            135deg,
            var(--blue-900),
            var(--deep-blue),
            var(--blue-800)
        );

    position: relative;

    overflow: hidden;

}


#final-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            45deg,
            rgba(147,197,253,0.035) 0,
            rgba(147,197,253,0.035) 1px,
            transparent 1px,
            transparent 50px
        );

}


/* =========================================================
   FADE
========================================================= */

.fade-up {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


.fade-up.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   HERO
========================================================= */

.establishment-hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #071A33 0%,
            #0B2A55 45%,
            #123F7A 100%
        );

}


.hero-bg-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,0.5) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 70px;

    align-items: center;

}


.hero-content {

    padding: 70px 0;

    min-width: 0;

}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--blue-300);

    font-family: 'Cinzel', serif;

    font-size: 0.7rem;

    letter-spacing: 0.2em;

    margin-bottom: 22px;

}


.hero-eyebrow span {

    width: 28px;

    height: 1px;

    flex-shrink: 0;

    background: var(--blue-300);

}


.hero-content h1 {

    color: var(--white);

    font-size:
        clamp(2.6rem, 5vw, 4.5rem);

    line-height: 1.08;

    margin-bottom: 25px;

}


.hero-content h1 span {

    display: block;

    color: var(--blue-300);

}


.hero-description {

    max-width: 650px;

    color: rgba(255,255,255,0.72);

    font-size: 1rem;

    margin-bottom: 30px;

}


.hero-buttons {

    display: flex;

    gap: 13px;

    flex-wrap: wrap;

}


.hero-btn-primary,
.hero-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 24px;

    border-radius: 5px;

    font-family: 'Cinzel', serif;

    font-size: 0.74rem;

    font-weight: 600;

    letter-spacing: 0.06em;

    transition: 0.3s;

}


.hero-btn-primary {

    background: var(--blue-500);

    color: var(--white);

}


.hero-btn-primary:hover {

    background: var(--blue-600);

    transform: translateY(-3px);

}


.hero-btn-outline {

    border:
        1px solid rgba(147,197,253,0.45);

    color: var(--blue-200);

    background: transparent;

}


.hero-btn-outline:hover {

    background:
        rgba(255,255,255,0.08);

}


/* =========================================================
   ⭐ HERO STATS - CORRECTED
========================================================= */

/*
   IMPORTANT:

   Four statistics will ALWAYS stay in one row
   on desktop.

   The previous problem was caused by inconsistent
   width/padding and possible CSS overrides.

   This version uses:
   minmax(0, 1fr)
   min-width: 0
   overflow-safe text
*/
/* 
.hero-stats {

    width: 100%;

    max-width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;

    margin-top: 55px;

    padding-top: 24px;

    border-top:
        1px solid rgba(147,197,253,0.25);

    overflow: hidden;

}


.hero-stat {

    position: relative;

    min-width: 0;

    width: 100%;

    padding:
        0 20px;

}


.hero-stat:first-child {

    padding-left: 0;

}


.hero-stat:last-child {

    padding-right: 0;

}


Vertical separator

.hero-stat:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    height: 70px;

    width: 1px;

    background:
        rgba(147,197,253,0.22);

}


Number

.hero-stat-num {

    display: block;

    width: 100%;

    font-family:
        'Playfair Display',
        serif;

    font-size:
        clamp(1.7rem, 2.5vw, 2.35rem);

    font-weight: 700;

    color: #63A9FF;

    line-height: 1;

    white-space: nowrap;

}


Label

.hero-stat-label {

    display: block;

    width: 100%;

    color:
        rgba(255,255,255,0.72);

    font-size:
        clamp(0.68rem, 0.9vw, 0.82rem);

    line-height: 1.3;

    margin-top: 7px;

    white-space: normal;

    overflow-wrap: break-word;

}

 */
 
 /* =========================================================
   HERO STATS — FIXED 4 COLUMN LAYOUT
========================================================= */

.hero-stats {
    width: 100% !important;

    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    grid-auto-flow: row;

    gap: 0;

    margin-top: 55px;

    padding-top: 24px;

    border-top: 1px solid rgba(147, 197, 253, 0.22);

    align-items: start;

    position: relative;

    z-index: 3;
}


/* Individual statistic */

.hero-stat {
    width: 100%;

    min-width: 0;

    position: relative;

    padding: 0 28px;

    display: block;
}


/* First statistic */

.hero-stat:first-child {
    padding-left: 0;
}


/* Last statistic */

.hero-stat:last-child {
    padding-right: 0;
}


/* Vertical separators */

.hero-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 1px;

    height: 70px;

    background: rgba(147, 197, 253, 0.25);
}


/* Number */

.hero-stat-num {
    display: block;

    font-family: 'Playfair Display', serif;

    font-size: 2.2rem;

    font-weight: 700;

    line-height: 1;

    color: #63a9ff;

    white-space: nowrap;

    margin: 0;
}


/* Label */

.hero-stat-label {
    display: block;

    margin-top: 7px;

    font-family: 'Lato', sans-serif;

    font-size: 0.82rem;

    line-height: 1.3;

    color: rgba(255,255,255,0.72);

    white-space: nowrap;
}
 
/* Plus and percentage support */

.hero-stat-num.plus::after {

    content: "+";

}


.hero-stat-num.percent::after {

    content: "%";

}


/*
   If your JavaScript already puts + or %
   inside the number, REMOVE the two rules above.
*/


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-image-wrap {

    position: relative;

    width: 470px;

    height: 540px;

    max-width: 100%;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.35);

    z-index: 2;

}


.hero-image-wrap img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,20,40,0.7),
            transparent 55%
        );

}


.hero-blue-circle {

    position: absolute;

    width: 400px;

    height: 400px;

    border:
        1px solid rgba(147,197,253,0.25);

    border-radius: 50%;

    right: -100px;

    top: 70px;

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.hero-floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    background:
        rgba(255,255,255,0.96);

    border:
        1px solid rgba(147,197,253,0.3);

    border-radius: 9px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.2);

    min-width: 180px;

}


.card-one {

    left: -35px;

    top: 90px;

}


.card-two {

    right: -30px;

    bottom: 80px;

}


.floating-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: var(--blue-50);

    color: var(--blue-600);

}


.hero-floating-card strong {

    display: block;

    color: var(--blue-800);

    font-size: 0.8rem;

}


.hero-floating-card span {

    display: block;

    color: var(--text-muted);

    font-size: 0.68rem;

}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(255,255,255,0.5);

    font-size: 0.62rem;

    letter-spacing: 0.15em;

}


.hero-scroll i {

    color: var(--blue-300);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-container {

        gap: 40px;

    }


    .hero-stat {

        padding-left: 14px;
        padding-right: 14px;

    }


    .hero-stat-num {

        font-size: 1.9rem;

    }

}


/* =========================================================
   TABLET 992px
========================================================= */

@media (max-width: 992px) {

    .hero-container {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .hero-content {

        padding:
            80px 0 20px;

    }


    .hero-visual {

        min-height: 500px;

    }


    .hero-image-wrap {

        width:
            min(470px, 90vw);

        height: 500px;

    }


    .establishment-grid,
    .process-grid,
    .why-choose-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .blog-grid {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

    }


    /*
       At tablet width the statistics
       become 2 x 2.
    */

    .hero-stats {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        row-gap: 28px;

    }


    .hero-stat {

        padding: 0 20px;

    }


    .hero-stat:nth-child(2)::after {

        display: none;

    }


    .hero-stat:nth-child(3)::after {

        display: block;

    }


    .hero-stat:nth-child(4)::after {

        display: none;

    }


    .hero-stat:nth-child(3),
    .hero-stat:nth-child(4) {

        padding-top: 10px;

    }

}


/* =========================================================
   MOBILE 768px
========================================================= */

@media (max-width: 768px) {

    .container {

        padding-left: 16px;
        padding-right: 16px;

    }


    .section-pad {

        padding: 60px 0;

    }


    .section-pad-sm {

        padding: 48px 0;

    }


    /* ---------- HERO ---------- */

    .establishment-hero {

        min-height: auto;

    }


    .hero-content {

        padding:
            70px 0 20px;

    }


    .hero-content h1 {

        font-size: 2.5rem;

    }


    .hero-description {

        font-size: 0.9rem;

    }


    /* ---------- STATS ---------- */

    .hero-stats {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 25px 0;

        margin-top: 40px;

        padding-top: 20px;

    }


    .hero-stat {

        padding:
            0 14px;

    }


    .hero-stat:first-child {

        padding-left: 0;

    }


    .hero-stat:nth-child(3) {

        padding-left: 0;

    }


    .hero-stat:nth-child(2),
    .hero-stat:nth-child(4) {

        padding-right: 0;

    }


    .hero-stat:nth-child(2)::after {

        display: none;

    }


    .hero-stat:nth-child(4)::after {

        display: none;

    }


    .hero-stat-num {

        font-size: 1.8rem;

    }


    .hero-stat-label {

        font-size: 0.7rem;

    }


    /* ---------- HERO VISUAL ---------- */

    .hero-visual {

        min-height: 430px;

    }


    .hero-image-wrap {

        width: 100%;

        height: 420px;

    }


    .hero-floating-card {

        min-width: 150px;

        padding: 10px;

    }


    .card-one {

        left: -5px;

        top: 45px;

    }


    .card-two {

        right: -5px;

        bottom: 45px;

    }


    .hero-blue-circle {

        display: none;

    }


    .hero-scroll {

        display: none;

    }


    /* ---------- INTRO ---------- */

    .intro-band-inner {

        align-items: flex-start;

        flex-direction: column;

    }


    .intro-band-item {

        border: none;

        padding: 4px 0;

    }


    /* ---------- SERVICE ---------- */

    .service-list {

        grid-template-columns: 1fr;

    }


    /* ---------- IMAGE ---------- */

    .image-frame {

        min-height: 320px;

    }


    .image-frame img {

        height: 320px;

    }


    /* ---------- PROCESS ---------- */

    .process-grid {

        gap: 30px;

    }


    .process-callout {

        align-items: flex-start;

        padding: 20px;

    }


    /* ---------- WHY ---------- */

    .why-item {

        padding: 19px;

    }


    .why-image-frame img {

        min-height: 400px;

    }


    /* ---------- FORM ---------- */

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .contact-form {

        padding:
            24px 18px;

    }


    /* ---------- BLOG ---------- */

    .blog-grid {

        grid-template-columns: 1fr;

    }


    /* ---------- TIMELINE ---------- */

    .timeline-month {

        gap: 14px;

    }


    .activities-box {

        padding: 20px;

    }


    /* ---------- CLIENT ---------- */

    .client-item {

        font-size: 12px;

        padding: 8px 14px;

    }

}


/* =========================================================
   SMALL MOBILE 480px
========================================================= */

@media (max-width: 480px) {

    .hero-content h1 {

        font-size: 2.15rem;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-btn-primary,
    .hero-btn-outline {

        width: 100%;

        justify-content: center;

    }


    /* ---------- STATS ---------- */

    .hero-stats {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 22px 0;

    }


    .hero-stat {

        padding-left: 8px;
        padding-right: 8px;

    }


    .hero-stat:first-child,
    .hero-stat:nth-child(3) {

        padding-left: 0;

    }


    .hero-stat:nth-child(2),
    .hero-stat:nth-child(4) {

        padding-right: 0;

    }


    .hero-stat-num {

        font-size: 1.55rem;

    }


    .hero-stat-label {

        font-size: 0.64rem;

        line-height: 1.35;

    }


    /* ---------- WHY ---------- */

    .why-item {

        gap: 14px;

    }


    .why-icon {

        width: 42px;

        height: 42px;

    }


    /* ---------- IMAGE ---------- */

    .hero-image-wrap {

        height: 380px;

    }


    .hero-visual {

        min-height: 390px;

    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .hero-content h1 {

        font-size: 1.9rem;

    }


    .hero-stat-num {

        font-size: 1.35rem;

    }


    .hero-stat-label {

        font-size: 0.58rem;

    }


    .hero-floating-card {

        min-width: 130px;

    }

}