/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigation
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*== Default Css ==*/

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@300;400;500;700;900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%
}

:root {
    --blue: #1a3c6e;
    --blue2: #254f8f;
    --orange: #e05c1a;
    --orange2: #f07030;
    --gray: #f5f5f5;
    --muted: #111;
    --border: #ddd;
}

/* ── TOP BAR ── */

.top-bar {
    background: #111;
    padding: 7px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .8)
}

.top-bar .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px
}

.top-bar .left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.top-bar .left span {
    display: flex;
    align-items: center;
    gap: 6px
}

.top-bar .left span i {
    color: var(--orange2);
    font-size: 12px
}

.top-bar .left a {
    color: rgba(255, 255, 255, .8)
}

.top-bar .left a:hover {
    color: #fff
}

.top-bar .right {
    color: rgba(255, 255, 255, .5);
    font-size: 12px
}

/* ── NAVBAR ── */

.navbar {
    background: #fff;
    border-bottom: 3px solid var(--orange);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px
}
@media (min-width: 992px) {
    .nav-inner {
        height: 100px; 
    }
}
.nav-logo {
    font-family: 'Poppins', sans-serif
}

.nav-logo .name {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue)
}

@media (max-width: 768px) {
    .nav-logo .name {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .nav-logo .name {
        font-size: 20px;
    }
}

.nav-logo .name span {
    color: var(--orange)
}

.nav-logo .tagline {
    font-size: 9px;
    color: #111;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #444;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color .2s, background .2s
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
    background: #fff5f0
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-quote {
    background: var(--orange);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s
}

.btn-quote:hover {
    background: var(--orange2)
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--blue);
    cursor: pointer
}

/* ── CAROUSEL ── */
/* ── CAROUSEL ── */

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0d1f3c;
}

.carousel-inner {
    display: flex;
    transition: transform .6s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    /* Desktop: fixed height */
    min-height: 520px;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(10, 25, 60, .68) 0%,
        rgba(10, 25, 60, .45) 45%,
        rgba(10, 25, 60, .18) 100%);
}

.slide-bg-2::after {
    background: linear-gradient(to right,
        rgba(10, 25, 60, .93) 0%,
        rgba(10, 25, 60, .78) 50%,
        rgba(10, 25, 60, .45) 100%);
}

.slide-bg-1 { background-image: url(../images/resources/1.jpeg); background-color: #111; }
.slide-bg-2 { background-image: url(../images/resources/4.png);  background-color: #111; }
.slide-bg-3 { background-image: url(../images/resources/home2.jpg); background-color: #111; }

.carousel-caption {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 20px;
}

.c-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange2);
    border: 1px solid rgba(240, 112, 48, .45);
    padding: 5px 16px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.c-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 4vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 600px;
}

.c-title span { color: var(--orange2); }

.c-desc {
    font-size: 15px;
    color: rgba(255,255,255,.88);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 28px;
}

.c-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.c-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    transition: background .2s;
}

.c-btn-solid:hover { background: var(--orange2); }

.c-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, .38);
    transition: border-color .2s, background .2s;
}

.c-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.carousel-control:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

.carousel-indicators {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    list-style: none;
    padding: 0;
}

.carousel-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .2s;
}

.carousel-indicators button.active {
    background: var(--orange);
    width: 42px;
}

.carousel-num {
    position: absolute;
    bottom: 20px;
    right: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .28);
    z-index: 10;
}

/* ── CAROUSEL RESPONSIVE ── */

@media (max-width: 900px) {
    .carousel-item {
        min-height: 460px;
    }
}

@media (max-width: 700px) {
    .carousel-item {
        /* Let content dictate height — image fills behind it */
        min-height: 0;
        background-size: cover;
        background-position: center top;
    }

    /* Stronger overlay on mobile so text is always legible */
    .carousel-item::after {
        background: linear-gradient(
            to bottom,
            rgba(10, 25, 60, .45) 0%,
            rgba(10, 25, 60, .62) 60%,
            rgba(10, 25, 60, .70) 100%
        ) !important;
    }

    .carousel-caption {
        padding: 48px 20px 56px;
    }

    .c-label {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .c-title {
        font-size: clamp(22px, 7vw, 32px);
        margin-bottom: 12px;
        max-width: 100%;
    }

    .c-desc {
        font-size: 14px;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .c-btns {
        gap: 10px;
    }

    .c-btn-solid,
    .c-btn-ghost {
        font-size: 13px;
        padding: 10px 20px;
    }

    .carousel-control {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
}

@media (max-width: 400px) {
    .c-btn-ghost {
        display: none; /* single CTA on very small screens */
    }
    .c-title {
        font-size: 21px;
    }
}

/* ── SECTIONS ── */

.section {
    padding: 30px 0
}

.section.gray-bg {
    background: var(--gray)
}

.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px
}

.sec-head {
    text-align: center;
    margin-bottom: 40px
}

.sec-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px
}

.sec-head h2 span {
    color: var(--orange)
}

.sec-underline {
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto 14px;
    border-radius: 2px
}

.sec-head p {
    font-size: 18px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7
}

/* ── ABOUT ── */

.about-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap
}

.about-img-side {
    flex: 0 0 400px
}

.about-img-side img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1)
}

.exp-badge {
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    margin-top: -1px;
    border-radius: 0 0 6px 6px
}

.exp-badge .big {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1
}

.exp-badge .small {
    font-size: 12px;
    margin-top: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .9
}

.about-text-side {
    flex: 1;
    min-width: 280px
}

.about-text-side h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 14px
}

.about-text-side p {
    font-size: 18px;
    color: #111;
    line-height: 1.8;
    margin-bottom: 12px
}

.about-quote {
    border-left: 4px solid var(--orange);
    background: #fff8f5;
    padding: 14px 18px;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    font-size: 15px;
    color: var(--blue);
    margin: 18px 0 22px;
    line-height: 1.7
}

.about-list {
    list-style: none;
    margin-bottom: 22px
}

.about-list li {
    font-size: 18px;
    color: #444;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px dotted #e0e0e0
}

.about-list li:last-child {
    border-bottom: none
}

.about-list li i {
    color: var(--orange);
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-top: 6px
}

.af-box {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.af-box i {
    color: var(--orange);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0
}

.af-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 2px
}

.af-box p {
    font-size: 18px;
    color: #111
}

/* ── COUNTER ── */

.counter-strip {
    background: var(--blue);
    padding: 44px 0
}

.counter-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #111;
    border-radius: 6px;
    overflow: hidden
}

.counter-box {
    background: var(--blue2);
    padding: 28px 20px;
    text-align: center
}

.counter-box i {
    color: var(--orange2);
    font-size: 26px;
    margin-bottom: 10px
}

.counter-num {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.counter-num span {
    color: var(--orange2)
}

.counter-lbl {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px
}

/* ── PRODUCTS ── */

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.prod-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s
}

.prod-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .1);
    transform: translateY(-3px)
}

.prod-img {
    height: 170px;
    overflow: hidden;
    background: var(--gray);
    position: relative
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.prod-card:hover .prod-img img {
    transform: scale(1.05)
}

.prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.prod-info {
    padding: 14px 16px
}

.prod-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3
}

.prod-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    background: #fff5f0;
    border: 1px solid #ffd0b8;
    padding: 2px 10px;
    border-radius: 20px
}

.prod-make {
    font-size: 14px;
    color: #111;
    margin-top: 7px
}

.prod-make strong {
    color: var(--blue);
    font-weight: 600
}

.prod-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    border-left: 4px solid var(--orange);
    padding-left: 12px
}

/* ── WHY US ── */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.why-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px 20px;
    text-align: center;
    transition: all .25s;
    position: relative
}

.why-box:hover {
    border-color: var(--orange);
    box-shadow: 0 6px 20px rgba(224, 92, 26, .1);
    transform: translateY(-3px)
}

.why-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 6px 6px 0 0;
    opacity: 0;
    transition: opacity .2s
}

.why-box:hover::before {
    opacity: 1
}

.why-ico {
    width: 54px;
    height: 54px;
    background: #edf3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px
}

.why-ico i {
    color: var(--blue);
    font-size: 22px
}

.why-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px
}

.why-box p {
    font-size: 18px;
    color: #111;
    line-height: 1.65
}

/* ── CONTACT ── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px
}

.contact-info p {
    font-size: 18px;
    color: #111;
    line-height: 1.8;
    margin-bottom: 22px
}

.info-list {
    list-style: none;
    margin-bottom: 24px
}

.info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border)
}

.info-list li:last-child {
    border-bottom: none
}

.info-ico {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

.info-ico i {
    color: #fff;
    font-size: 14px
}

.info-txt .lbl {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 3px
}

.info-txt .val {
    font-size: 17px;
    color: #333;
    line-height: 1.6
}

.info-txt .val a {
    color: #333;
    transition: color .2s
}

.info-txt .val a:hover {
    color: var(--orange)
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.form-head {
    background: var(--blue);
    padding: 20px 24px
}

.form-head h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff
}

.form-head p {
    font-size: 18px;
    color: rgba(255, 255, 255, .45);
    margin-top: 3px
}

.form-body {
    padding: 2px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.fg {
    margin-bottom: 15px
}

.fg label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: .5px
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: border-color .2s, background .2s
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--blue);
    background: #fff
}

.fg textarea {
    min-height: 95px;
    resize: vertical
}

.fg select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center
}

.form-submit {
    width: 100%;
    background: var(--orange);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s
}

.form-submit:hover {
    background: var(--orange2)
}

/* ── FOOTER ── */

.footer {
    background: #111;
    padding: 30px 0 0
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px
}

.ft-about .ft-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.ft-about .ft-logo span {
    color: var(--orange2)
}

.ft-about .ft-tag {
    font-size: 10px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.ft-about p {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 260px
}

.ft-social {
    display: flex;
    gap: 8px
}

.ft-social a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
    transition: all .2s
}

.ft-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff
}

.ft-col h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block
}

.ft-links {
    list-style: none
}

.ft-links li {
    margin-bottom: 9px
}

.ft-links a {
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s
}

.ft-links a:before {
    content: '›';
    color: var(--orange2);
    font-size: 16px
}

.ft-links a:hover {
    color: rgba(255, 255, 255, .85)
}

.ft-ci {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px
}

.ft-ci i {
    color: var(--orange2);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0
}

.ft-ci span,
.ft-ci a {
    font-size: 16px;
    color: #fff;
    line-height: 1.65
}

.ft-ci a:hover {
    color: rgba(255, 255, 255, .85)
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.footer-bottom p {
    font-size: 18px;
    color: #fff
}

.footer-bottom a {
    color: var(--orange2)
}

/* ── FLOATING BTNS ── */

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    font-size: 24px;
    color: #fff;
    transition: transform .2s
}

.wa-float:hover {
    transform: scale(1.1)
}

.scroll-top {
    position: fixed;
    bottom: 84px;
    right: 26px;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2);
    opacity: 0;
    transition: opacity .3s
}

.scroll-top.show {
    opacity: 1
}

.scroll-top:hover {
    background: var(--orange)
}

/* ── MOBILE MENU ── */

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    flex-direction: column;
    padding: 30px 24px
}

.mob-menu.open {
    display: flex
}

.mob-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    margin-bottom: 24px
}

.mob-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    padding: 12px 0;
    border-bottom: 1px solid #eee
}

.mob-menu a:hover {
    color: var(--orange)
}

.mob-contact {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eee
}

.mob-contact p {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px
}

.mob-contact a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    display: block
}

/* ── FADE IN ── */

.fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s, transform .55s
}

.fade.in {
    opacity: 1;
    transform: none
}

/* ── RESPONSIVE ── */

@media(max-width:1024px) {
    .prod-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .about-flex {
        flex-direction: column
    }

    .about-img-side {
        flex: none;
        width: 100%;
        max-width: 400px
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:700px) {
    .top-bar {
        display: none
    }

    .nav-menu {
        display: none
    }

    .hamburger {
        display: block
    }

    .prod-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .about-features {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .prod-grid {
        grid-template-columns: 1fr
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {

    .contact-section,
    .contact-wrapper,
    .contact-form {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-grid,
    .contact-row {
        display: block;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .contact-info a,
    .contact-box a,
    .contact-item a {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-info,
    .contact-box,
    .contact-item {
        min-width: 0;
    }
}

.nav-logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.site-logo{
    height:80px;
    width:auto;
    display:block;
}

@media (min-width: 992px){
    .site-logo{
        height: 100px;
    }
}

