/* =========================
   ROOT
========================= */

:root {
    --navy: #071525;
    --navy-2: #0b2036;
    --blue: #0877d1;
    --blue-light: #1c9bf0;
    --red: var(--orange);
    --orange: #ff8a25;

    --white: #ffffff;
    --text: #172333;
    --muted: #697586;
    --light: #f5f8fb;
    --border: #e5eaf0;

    --radius: 18px;
    --shadow: 0 20px 50px rgba(6, 22, 40, .10);
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}


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


button {
    font-family: inherit;
}


.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


.section {
    padding: 110px 0;
}


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

.header {
    width: 100%;
    padding: 11px 0;
    /* height: 82px; */
    top: 0;
    position: sticky;
    background: #ffffff;
    border-bottom: 1px solid #e9edf1;
    /* position: relative; */
    z-index: 1000;
}


.nav {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


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

.logo img {
    width: 155px;
    display: block;
}


/* ==============================
           MENU
        ============================== */

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu>a,
.dropdown-btn {
    font-size: 13px;
    font-weight: 600;

    color: #071525;

    transition: 0.3s;
}

.menu>a:hover,
.dropdown-btn:hover {
    color: #0877d1;
}

.menu>a.active {
    color: #0877d1;
}


/* ==============================
           DROPDOWN WRAPPER
        ============================== */

.products-dropdown {
    position: relative;
}


/* ==============================
           DROPDOWN BUTTON
        ============================== */

.dropdown-btn {
    border: none;
    outline: none;

    background: transparent;

    cursor: pointer;

    font-family: inherit;

    display: flex;
    align-items: center;

    gap: 7px;
}

.dropdown-btn i {
    font-size: 9px;

    transition: 0.3s;
}


/* ==============================
           DROPDOWN
        ============================== */

.products-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 301px;
    /* padding: 10px; */
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e7ebef;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.282);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    overflow: hidden;
    z-index: 9999;
}


/* Dropdown arrow */

.products-menu::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    left: 50%;
    top: -7px;
    z-index: -1;
    transform: translateX(-50%) rotate(45deg);
    border-left: 1px solid #e7ebef;
    border-top: 1px solid #e7ebef;
}


/* ==============================
           DESKTOP HOVER
        ============================== */

.products-dropdown:hover .products-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.products-dropdown:hover .dropdown-btn i {
    transform: rotate(180deg);
}


/* ==============================
           DROPDOWN ITEM
        ============================== */

.product-item {
    display: flex;
    align-items: center;
    /* gap: 13px; */
    font-size: 12px;
    padding: 7px 11px;
    /* border-radius: 10px; */
    color: #071525;
    transition: 0.25s;
}

.product-item:hover {
    /* color: #fff; */
    background: #9ad0f74b;
    /* padding: 11px;  */
    padding-left: 18px;
    /* transform: translateX(5px); */
}

.product-item span {
    font-size: 12px;
}

/* ICON */

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

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: #eaf5ff;

    border-radius: 10px;

    color: #0877d1;

    font-size: 15px;

    transition: 0.3s;
}

.product-item:hover .product-icon {
    background: #0877d1;
    color: #ffffff;
}


/* TEXT */

.product-text strong {
    display: block;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.3;
}

.product-text small {
    display: block;

    margin-top: 4px;

    color: #8b96a3;

    font-size: 8px;
}


/* ==============================
           VIEW ALL
        ============================== */

.view-all {
    margin-top: 6px;

    padding-top: 7px;

    border-top: 1px solid #edf0f3;
}

.view-all a {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 12px;

    color: #0877d1;

    font-size: 10px;

    font-weight: 700;

    border-radius: 8px;

    transition: 0.3s;
}

.view-all a:hover {
    background: #071525;
    color: white;
}

.view-all i {
    transition: 0.3s;
}

.view-all a:hover i {
    transform: translateX(5px);
}


/* ==============================
           GET QUOTE
        ============================== */

.nav-btn {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    border-radius: 8px;

    background: #0877d1;

    color: white;

    font-size: 11px;

    font-weight: 700;

    transition: 0.3s;
}

.nav-btn:hover {
    background: #071525;

    transform: translateY(-2px);
}


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

.menu-toggle {
    display: none;

    width: 43px;
    height: 43px;

    border: none;

    border-radius: 8px;

    background: #071525;

    color: white;

    font-size: 17px;

    cursor: pointer;
}


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

@media (max-width: 900px) {

    .header {
        height: 72px;
    }

    .nav {
        height: 72px;
    }

    .logo img {
        width: 135px;
    }


    /* Mobile Menu */

    .menu {
        position: fixed;

        top: 0;
        right: -100%;

        width: 320px;
        max-width: 85%;

        height: 100vh;

        padding: 100px 25px 30px;

        background: white;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        overflow-y: auto;

        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);

        transition: 0.4s;

        z-index: 9998;
    }


    .menu.show {
        right: 0;
    }


    .menu>a {
        padding: 16px 5px;

        border-bottom: 1px solid #edf0f3;
    }


    /* Products */

    .products-dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;

        justify-content: space-between;

        padding: 16px 5px;

        border-bottom: 1px solid #edf0f3;
    }


    /* Remove desktop dropdown position */

    .products-menu {
        position: static;

        width: 100%;

        padding: 5px 0;

        border: none;

        box-shadow: none;

        border-radius: 0;

        transform: none;

        display: none;

        opacity: 1;

        visibility: visible;
    }


    .products-menu::before {
        display: none;
    }


    /* Mobile Dropdown Open */

    .products-dropdown.open .products-menu {
        display: block;
    }


    .products-dropdown.open .dropdown-btn {
        color: #0877d1;
    }

    .products-dropdown.open .dropdown-btn i {
        transform: rotate(180deg);
    }


    .product-item {
        padding: 10px 5px;
    }


    .product-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }


    .product-text strong {
        font-size: 10px;
    }


    .product-text small {
        font-size: 8px;
    }


    /* Get Quote hide */

    .nav-btn {
        display: none;
    }


    /* Hamburger */

    .menu-toggle {
        display: grid;

        place-items: center;

        position: relative;

        z-index: 10000;
    }

}


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

@media (max-width: 500px) {

    .container {
        width: 92%;
    }

    .menu {
        width: 290px;
    }

}

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

.hero {
    /* min-height: 750px; */
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 35%, rgba(14, 115, 205, .28), transparent 30%),
        linear-gradient(120deg, #061322, #0a1d31 55%, #061423);
    color: #fff;
    padding: 90px 0px;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image:
        linear-gradient(rgba(255, 255, 255, .7) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .7) 1px, transparent 1px);
    background-size: 45px 45px;
}


.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

/* 
.hero-content {
    padding-bottom: 50px;
} */


.top-badge,
.section-tag {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ff9a42;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.top-badge span,
.section-tag span {
    width: 28px;
    height: 2px;
    background: currentColor;
}


.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -3px;
    margin: 23px 0;
}


.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .75);
}


.hero-content>p {
    max-width: 570px;
    color: rgba(255, 255, 255, .65);
    font-size: 16px;
    line-height: 1.8;
}


.hero-buttons {
    display: flex;
    gap: 13px;
    margin-top: 34px;
}


.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}


.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red), #ff6829);
    box-shadow: 0 12px 30px rgba(239, 61, 50, .25);
}


.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(239, 61, 50, .35);
}


.btn-outline {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
}


.btn-outline:hover {
    background: #fff;
    color: var(--navy);
}


.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
}


.trust-item i {
    color: #55d28a;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}


.visual-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(12, 132, 225, .15);
    filter: blur(15px);
}


.main-card {
    width: 330px;
    min-height: 390px;
    position: relative;
    z-index: 3;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 25px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}


.card-top {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    letter-spacing: 2px;
}


.shield-big {
    width: 150px;
    height: 170px;
    margin: 35px auto 25px;
    position: relative;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 105px;
    filter: drop-shadow(0 15px 30px rgba(0, 145, 255, .35));
}


.check {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 8px;
    bottom: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #44ce84;
    color: #fff;
    font-size: 16px;
    border: 4px solid #142a40;
}


.main-card h3 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}


.main-card>p {
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    margin-top: 7px;
}


.card-line {
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: 20px 0;
}


.protection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
}


.protection span {
    display: flex;
    gap: 7px;
}


.protection strong {
    color: #fff;
    font-size: 12px;
}


.progress {
    height: 5px;
    margin-top: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
}


.progress span {
    display: block;
    width: 98%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--blue), #53b9ff);
}


.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, .96);
    color: var(--navy);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}


.floating-card i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #eef7ff;
    color: var(--blue);
}


.floating-card strong,
.floating-card small {
    display: block;
}


.floating-card strong {
    font-size: 11px;
}


.floating-card small {
    margin-top: 3px;
    font-size: 9px;
    color: #7b8794;
}


.card-left {
    left: 0;
    bottom: 95px;
}


.card-right {
    right: 0;
    top: 105px;
}


.round-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e5faee;
    color: #35bd75;
}


.hero-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* border-top: 1px solid rgba(255, 255, 255, .08);  */
}


.scroll-text {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
    letter-spacing: 2px;
}


/* =========================
   STATS
========================= */

.stats {
    background: #fff;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .05);
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.stat {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}


.stat:last-child {
    border: 0;
}


.stat strong {
    display: block;
    font-family: "Poppins", sans-serif;
    color: var(--navy);
    font-size: 30px;
}


.stat span {
    color: var(--muted);
    font-size: 11px;
}


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

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}


.about-image {
    position: relative;
    min-height: 480px;
}


.image-box {
    width: 88%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(8, 119, 209, .85), rgba(7, 21, 37, .95));
    box-shadow: var(--shadow);
}


.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .9);
    position: relative;
}


.image-placeholder::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}


.image-placeholder i {
    font-size: 150px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .25));
}


.image-placeholder span {
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 8px;
    font-size: 13px;
}


.experience-card {
    position: absolute;
    right: 0;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
}


.experience-card strong {
    color: var(--red);
    font-family: "Poppins", sans-serif;
    font-size: 35px;
}


.experience-card span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}


.section-tag {
    color: var(--blue);
}


.about-content h2,
.section-heading h2,
.products-heading h2,
.why-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 17px 0;
}


.about-content h2 span,
.section-heading h2 span,
.products-heading h2 span,
.why-content h2 span {
    color: var(--blue);
}


.about-content>p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}


.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 25px 0 30px;
}


.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
}


.about-points i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--blue);
    background: #eef7ff;
}


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

.services {
    background: var(--light);
}


.section-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}


.section-tag.center {
    justify-content: center;
}


.section-heading h2 {
    margin-bottom: 12px;
}


.section-heading p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}


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


.service-card {
    background: #fff;
    padding: 30px 25px;
    min-height: 320px;
    border: 1px solid var(--border);
    border-radius: 17px;
    position: relative;
    overflow: hidden;
    transition: .35s;
}


.service-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow);
}


.service-card.featured {
    background: var(--navy);
    color: #fff;
}


.service-icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eef7ff;
    color: var(--blue);
    font-size: 22px;
}


.featured .service-icon {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}


.number {
    position: absolute;
    right: 20px;
    top: 25px;
    color: #d9e2ea;
    font-size: 10px;
    font-weight: 700;
}


.featured .number {
    color: rgba(255, 255, 255, .25);
}


.service-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    margin: 35px 0 10px;
}


.service-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}


.featured p {
    color: rgba(255, 255, 255, .55);
}


.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 25px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}


.featured a {
    color: #fff;
}


/* =========================
   PRODUCTS
========================= */

.products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}


.products-heading h2 {
    margin-bottom: 0;
}


.view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
}


.view-all i {
    color: var(--red);
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.product-card {
    min-height: 210px;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 17px;
    transition: .3s;
}


.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}


.product-icon {
    min-width: 125px;
    height: 150px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #eef7ff, #dceeff);
    color: var(--blue);
    font-size: 65px;
}


.product-content small {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.product-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin: 9px 0;
}


.product-content p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}


.product-content a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 20px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
}


/* =========================
   WHY US
========================= */

.why {
    background: var(--light);
}


.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.why-content>p {
    max-width: 500px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


.why-list {
    margin-top: 30px;
}


.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}


.why-icon {
    min-width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--red);
    box-shadow: 0 7px 25px rgba(0, 0, 0, .05);
}


.why-item h3 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    margin-bottom: 4px;
}


.why-item p {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}


.why-visual {
    min-height: 500px;
    border-radius: 25px;
    background: linear-gradient(145deg, #061526, #0b2944);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}


.security-lines {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}


.security-lines::before,
.security-lines::after {
    content: "";
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
}


.security-lines::after {
    inset: 80px;
}


.large-shield {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 190px;
    filter: drop-shadow(0 20px 40px rgba(0, 130, 255, .35));
}


.security-card {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(15px);
    color: #fff;
}


.security-card>i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(75, 207, 135, .15);
    color: #52d98b;
}


.security-card strong,
.security-card span {
    display: block;
}


.security-card strong {
    font-size: 11px;
}


.security-card span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
}


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

.cta {
    padding: 45px 0;
    background: #fff;
}


.cta-box {
    min-height: 190px;
    padding: 35px 45px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(circle at 80% 20%, rgba(18, 130, 225, .22), transparent 35%),
        linear-gradient(120deg, #071525, #0c2b47);
    color: #fff;
    overflow: hidden;
    position: relative;
}


.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}


.cta-icon {
    min-width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-size: 28px;
}


.cta-content small {
    color: #ff9a42;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}


.cta-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    margin: 7px 0;
}


.cta-content h2 span {
    color: #ff8b3d;
}


.cta-content p {
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
}


.cta-btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #fff;
    color: var(--navy);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}


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

.footer {
    background: #06111e;
    color: #fff;
    padding-top: 70px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 55px;
}


.footer-logo {
    margin-bottom: 20px;
}


.footer-about>p {
    max-width: 300px;
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    line-height: 1.8;
}


.socials {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}


.socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    transition: .3s;
}


.socials a:hover {
    background: #0877d1;
    color: #fff;
}


.footer-column h3 {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    margin-bottom: 20px;
}


.footer-column>a {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 13px;
    transition: .3s;
}


.footer-column>a:hover {
    color: #0877d1;
    transform: translateX(4px);
}


.contact-column p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 13px;
}


.contact-column i {
    color: #0877d1;
    margin-top: 2px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
}


.footer-bottom .container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
}


.footer-bottom strong {
    color: rgba(255, 255, 255, .65);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px) {

    .menu {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content>p {
        margin: auto;
    }

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

    .hero-visual {
        min-height: 480px;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 550px;
        width: 100%;
        margin: auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media(max-width:750px) {

    .header {
        padding: 15px 0;
    }

    .menu {
        display: none;
        position: absolute;
        top: 75px;
        left: 20px;
        right: 20px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background: #091b2d;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    }

    .menu.show {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 125px;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .main-card {
        width: 290px;
    }

    .card-left {
        left: -5px;
        bottom: 45px;
    }

    .card-right {
        right: -5px;
        top: 55px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 80px 0;
    }

    .about-content h2,
    .section-heading h2,
    .products-heading h2,
    .why-content h2 {
        font-size: 34px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .products-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px;
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-content {
        align-items: flex-start;
    }

    .cta-btn {
        margin-left: 85px;
    }

}


@media(max-width:520px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        transform: scale(.9);
        margin: -20px -20px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat strong {
        font-size: 24px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .image-box {
        width: 100%;
    }

    .experience-card {
        right: 10px;
    }

    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-icon {
        width: 100%;
        height: 170px;
    }

    .why-visual {
        min-height: 400px;
    }

    .large-shield {
        font-size: 140px;
    }

    .security-lines {
        width: 300px;
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom .container {
        padding: 18px 0;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
    }

    .cta-btn {
        margin-left: 0;
    }

}




/* ==========================================
   ROAD SAFETY PRODUCTS
========================================== */

.road-products {
    padding: 110px 0;
    background: #f5f8fb;
    position: relative;
    overflow: hidden;
}

.road-products::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(8, 119, 209, .04);
    top: -250px;
    right: -150px;
}

.road-products .container {
    position: relative;
    z-index: 2;
}


/* ---------- HEADER ---------- */

.road-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.road-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0877d1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.road-eyebrow span {
    width: 30px;
    height: 2px;
    background: var(--orange);
}

.road-products-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 43px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #071525;
}

.road-products-header h2 span {
    color: #0877d1;
}

.road-products-header p {
    max-width: 570px;
    color: #697586;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
}


/* ---------- VIEW ALL BUTTON ---------- */

.all-products-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 9px;
    background: #071525;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    transition: .3s;
}

.all-products-btn i {
    color: #ff8a25;
    transition: .3s;
}

.all-products-btn:hover {
    background: #0877d1;
    transform: translateY(-3px);
}

.all-products-btn:hover i {
    transform: translateX(4px);
}


/* ---------- GRID ---------- */

.road-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* ---------- CARD ---------- */

.road-product-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5eaf0;
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.road-product-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(7, 21, 37, .12);
}


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

.product-number {
    position: absolute;
    z-index: 5;
    top: 19px;
    right: 19px;

    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(7, 21, 37, .85);
    backdrop-filter: blur(5px);

    color: #fff;
    font-size: 9px;
    font-weight: 700;
}


/* ---------- IMAGE ---------- */

.product-image-box {
    height: 205px;
    border-radius: 11px;
    overflow: hidden;
    position: relative;
    background: #eef3f7;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.road-product-card:hover .product-image-box img {
    transform: scale(1.07);
}


/* ---------- IMAGE OVERLAY ---------- */

.image-overlay {
    position: absolute;
    inset: 0;

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

    background: rgba(7, 21, 37, .45);

    opacity: 0;
    transition: .35s;
}

.road-product-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff;
    color: #0877d1;

    font-size: 13px;

    transform: translateY(15px);
    transition: .35s;
}

.road-product-card:hover .image-overlay i {
    transform: translateY(0);
}


/* ---------- PRODUCT INFO ---------- */

.road-product-info {
    padding: 19px 12px 14px;
}

.road-product-info>span {
    display: block;
    color: #0877d1;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.road-product-info h3 {
    min-height: 42px;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.35;

    color: #071525;

    margin: 0;
}


/* ---------- VIEW MORE ---------- */

.road-product-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;

    color: #071525;

    font-size: 10px;
    font-weight: 800;

    transition: .3s;
}

.road-product-info a i {
    color: var(--orange);
    transition: .3s;
}

.road-product-info a:hover {
    color: #0877d1;
}

.road-product-info a:hover i {
    transform: translateX(5px);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1050px) {

    .road-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media(max-width:800px) {

    .road-products {
        padding: 80px 0;
    }

    .road-products-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .road-products-header h2 {
        font-size: 36px;
    }

    .road-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:520px) {

    .road-products-header h2 {
        font-size: 31px;
    }

    .road-products-header p {
        font-size: 12px;
    }

    .road-product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image-box {
        height: 230px;
    }

}





/* ==========================================
   WHY CHOOSE ANSHIKA SAFETY
========================================== */

.why-anshika {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-anshika::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(8, 119, 209, .035);
    left: -220px;
    top: 80px;
}

.why-anshika::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(8, 119, 209, .06);
    right: -150px;
    bottom: 50px;
}


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

.why-header {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 50px;
}

.why-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0877d1;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;

    margin-bottom: 15px;
}

.why-eyebrow span {
    width: 30px;
    height: 2px;
    background: var(--orange);
}

.why-heading-left h2 {
    margin: 0;

    color: #071525;

    font-family: "Poppins", sans-serif;
    font-size: 43px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.why-heading-left h2 span {
    color: #0877d1;
}

.why-heading-text {
    padding-bottom: 4px;
}

.why-heading-text p {
    max-width: 500px;

    color: #697586;

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


/* ==========================================
   CARDS GRID
========================================== */

.why-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


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

.why-card {
    position: relative;

    min-height: 315px;

    padding: 28px;

    background: #f7f9fb;

    border: 1px solid #e5eaf0;
    border-radius: 18px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.why-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(8, 119, 209, .05);

    right: -50px;
    bottom: -50px;

    transition: .4s;
}

.why-card:hover {
    transform: translateY(-8px);

    background: #fff;

    border-color: transparent;

    box-shadow: 0 22px 50px rgba(7, 21, 37, .12);
}

.why-card:hover::before {
    transform: scale(1.7);
}


/* ==========================================
   DARK CARD
========================================== */

.why-card-dark {
    background: #071525;
    border-color: #071525;
    color: #fff;
}

.why-card-dark::before {
    background: rgba(8, 119, 209, .16);
}

.why-card-dark:hover {
    background: #071525;
}

.why-card-dark .why-card-top>span {
    color: rgba(255, 255, 255, .3);
}

.why-card-dark .why-card-content h3 {
    color: #fff;
}

.why-card-dark .why-card-content p {
    color: rgba(255, 255, 255, .52);
}

.why-card-dark .why-card-content a {
    color: #fff;
}


/* ==========================================
   CARD TOP
========================================== */

.why-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.why-card-top>span {
    color: #b7c1cc;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


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

.why-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #eaf5ff;

    color: #0877d1;

    font-size: 21px;

    transition: .35s;
}

.why-card:hover .why-icon {
    transform: rotate(-5deg) scale(1.05);
}

.why-card-dark .why-icon {
    background: rgba(255, 255, 255, .09);
    color: #ff8a25;
}


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

.why-card-content {
    position: relative;
    z-index: 2;

    margin-top: 48px;
}

.why-card-content h3 {
    margin: 0 0 11px;

    color: #071525;

    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

.why-card-content p {
    max-width: 310px;

    margin: 0;

    color: #697586;

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

.why-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;

    color: #071525;

    font-size: 10px;
    font-weight: 800;

    transition: .3s;
}

.why-card-content a i {
    color: var(--orange);

    transition: .3s;
}

.why-card-content a:hover {
    color: #0877d1;
}

.why-card-content a:hover i {
    transform: translateX(5px);
}


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

.why-trust {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;

    margin-top: 35px;

    padding: 22px 28px;

    border: 1px solid #e5eaf0;
    border-radius: 16px;

    background: #fff;

    box-shadow: 0 10px 35px rgba(7, 21, 37, .05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.trust-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #eef7ff;
    color: #0877d1;

    font-size: 15px;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: #071525;

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

.trust-item span {
    margin-top: 4px;

    color: #8a95a2;

    font-size: 9px;
}

.trust-divider {
    width: 1px;
    height: 38px;

    background: #e5eaf0;

    margin: 0 25px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:900px) {

    .why-header {
        grid-template-columns: 1fr;
        gap: 15px;
        align-items: start;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-card:last-child {
        grid-column: 1 / -1;
    }

    .why-trust {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

}


@media(max-width:600px) {

    .why-anshika {
        padding: 80px 0;
    }

    .why-heading-left h2 {
        font-size: 34px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card:last-child {
        grid-column: auto;
    }

    .why-card {
        min-height: 290px;
    }

    .why-trust {
        padding: 20px;
    }

}







/* ==========================================
           ABOUT HERO
        ========================================== */

.about-hero {
    position: relative;

    padding: 55px;

    /* min-height: 450px; */

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(110deg,
            #071525 0%,
            #0a2339 55%,
            #0877d1 100%);
}

.about-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 50%;

    right: -150px;
    top: -100px;
}

.about-hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    right: 100px;
    bottom: -180px;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 750px;
}

.hero-small {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

.hero-small span {
    width: 30px;
    height: 2px;

    background: var(--orange);
}

.hero-content h1 {
    color: #fff;

    font-size: 56px;
    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.hero-content h1 span {
    color: transparent;
}

.hero-content p {
    max-width: 620px;

    color: rgba(255, 255, 255, .72);

    font-size: 14px;
    line-height: 1.9;
}

.breadcrumb {
    margin-top: 25px;

    color: rgba(255, 255, 255, .55);

    font-size: 10px;
}

.breadcrumb span {
    color: #0877d1;
    font-weight: 600;
}


/* ==========================================
           ABOUT COMPANY
        ========================================== */

.about-company {
    padding: 110px 0;
}

.about-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


/* Image */

.about-image {
    position: relative;
}

.about-image-main {
    /* height: 470px; */

    border-radius: 20px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            #071525,
            #0877d1);

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


.about-image-main i {
    color: rgba(255, 255, 255, .9);

    font-size: 100px;
}

.experience-box {
    position: absolute;

    right: -25px;
    bottom: 35px;

    width: 180px;

    padding: 22px;

    background: #fff;

    border-radius: 15px;

    box-shadow: 0 20px 45px rgba(7, 21, 37, .15);
}

.experience-box strong {
    display: block;

    color: #0877d1;

    font-size: 30px;

    line-height: 1;
}

.experience-box span {
    display: block;

    margin-top: 8px;

    color: #687586;

    font-size: 10px;

    line-height: 1.5;
}


/* Text */

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0877d1;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-label span {
    width: 28px;
    height: 2px;

    background: var(--orange);
}

.about-content h2 {
    color: #071525;

    font-size: 42px;
    line-height: 1.2;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.about-content h2 span {
    color: #0877d1;
}

.about-content>p {
    color: #697586;

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* Features */

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-top: 28px;
}

.about-feature {
    display: flex;

    gap: 12px;

    align-items: flex-start;
}

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

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: #edf7ff;

    color: #0877d1;

    border-radius: 9px;
}

.about-feature strong {
    display: block;

    font-size: 11px;
}

.about-feature p {
    margin-top: 4px;

    color: #8993a0;

    font-size: 9px;

    line-height: 1.5;
}


/* ==========================================
           MISSION VISION
        ========================================== */

.mission-section {
    padding: 100px 0;

    background: #f5f8fb;
}

.center-heading {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 55px;
}

.center-heading .section-label {
    justify-content: center;
}

.center-heading h2 {
    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 15px;
}

.center-heading h2 span {
    color: #0877d1;
}

.center-heading p {
    color: #778291;

    font-size: 12px;

    line-height: 1.8;
}

.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.mission-card {
    padding: 40px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid #e5ebf0;

    transition: .35s;
}

.mission-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(7, 21, 37, .09);
}

.mission-card.dark {
    background: #071525;

    border-color: #071525;
}

.mission-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: #eaf5ff;

    color: #0877d1;

    font-size: 20px;

    margin-bottom: 25px;
}

.mission-card.dark .mission-icon {
    background: rgba(255, 255, 255, .08);

    color: #51b5ff;
}

.mission-card h3 {
    font-size: 21px;

    margin-bottom: 12px;
}

.mission-card.dark h3 {
    color: #fff;
}

.mission-card p {
    color: #74808e;

    font-size: 11px;

    line-height: 1.9;
}

.mission-card.dark p {
    color: rgba(255, 255, 255, .58);
}


/* ==========================================
           WHY US
        ========================================== */

.why-section {
    padding: 110px 0;
}

.why-grid {
    display: grid;

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

    gap: 20px;
}

.why-card {
    padding: 35px;

    background: #fff;

    border: 1px solid #e5ebf0;

    border-radius: 17px;

    transition: .35s;
}

.why-card:hover {
    transform: translateY(-8px);

    border-color: transparent;

    box-shadow: 0 20px 45px rgba(7, 21, 37, .1);
}

.why-number {
    color: #dce9f3;

    font-size: 38px;

    font-weight: 800;
}

.why-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin: 15px 0 20px;

    background: #edf7ff;

    color: #0877d1;

    border-radius: 12px;
}

.why-card h3 {
    font-size: 17px;

    margin-bottom: 10px;
}

.why-card p {
    color: #7c8794;

    font-size: 10px;

    line-height: 1.8;
}


/* ==========================================
           STATS
        ========================================== */

.stats-section {
    padding: 65px 0;

    background: #071525;
}

.stats-grid {
    display: grid;

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

    text-align: center;
}

.stat {
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;

    color: #fff;

    font-size: 35px;
}

.stat strong span {
    color: #51b5ff;
}

.stat p {
    margin-top: 7px;

    color: rgba(255, 255, 255, .5);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


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

.cta-section {
    padding: 100px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 60px;

    border-radius: 22px;

    background:
        linear-gradient(110deg,
            #0877d1,
            #071525);
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 50%;

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

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.cta-content h2 {
    color: #fff;

    font-size: 35px;

    line-height: 1.25;

    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, .65);

    font-size: 11px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: #fff;

    color: #071525;

    border-radius: 8px;

    font-size: 10px;

    font-weight: 800;

    transition: .3s;
}

.cta-btn:hover {
    background: #071525;

    color: #fff;
}


/* ==========================================
           RESPONSIVE
        ========================================== */

@media(max-width: 900px) {

    .menu {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: grid;

        place-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image-main {
        height: 400px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .stat {
        border-right: 0;
    }

}


@media(max-width: 600px) {

    .container {
        width: 92%;
    }

    .about-hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .center-heading h2 {
        font-size: 31px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-image-main {
        height: 320px;
    }

    .experience-box {
        right: 10px;
        bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 10px;
    }

    .stat strong {
        font-size: 27px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

}











/* =========================================
           CONTACT HERO
        ========================================= */

.contact-hero {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(110deg,
            #071525 0%,
            #0a243b 55%,
            #0877d1 100%);
}

.contact-hero::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 50%;

    right: -180px;
    top: -180px;
}

.contact-hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    right: 170px;
    bottom: -160px;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ff7043;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

.hero-label span {
    width: 30px;
    height: 2px;

    background: #ff7043;
}

.hero-content h1 {
    color: #fff;

    font-size: 55px;
    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

/* .hero-content h1 span {
    color: #51b5ff;
} */

.hero-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, .68);

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

.breadcrumb {
    margin-top: 22px;

    color: rgba(255, 255, 255, .5);

    font-size: 10px;
}

.breadcrumb span {
    color: #fff;
    font-weight: 600;
}


/* =========================================
           CONTACT MAIN
        ========================================= */

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 55px;

    align-items: start;
}


/* =========================================
           LEFT SIDE
        ========================================= */

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0877d1;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-label span {
    width: 28px;
    height: 2px;

    background: #ff6829;
}

.contact-info h2 {
    font-size: 40px;

    line-height: 1.2;

    letter-spacing: -1.3px;

    margin-bottom: 17px;
}

.contact-info h2 span {
    color: #0877d1;
}

.contact-description {
    color: #727e8c;

    font-size: 12px;

    line-height: 1.9;

    margin-bottom: 32px;
}


/* =========================================
           INFO CARDS
        ========================================= */

.info-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.info-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px;

    background: #f7f9fb;

    border: 1px solid #e7edf2;

    border-radius: 13px;

    transition: .3s;
}

.info-card:hover {
    background: #fff;

    border-color: #cfe6f8;

    transform: translateX(5px);

    box-shadow: 0 10px 30px rgba(7, 21, 37, .06);
}

.info-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #eaf5ff;

    color: #0877d1;

    font-size: 16px;
}

.info-card h4 {
    font-size: 11px;

    margin-bottom: 4px;
}

.info-card p,
.info-card a {
    color: #7d8996;

    font-size: 9px;

    line-height: 1.5;
}

.info-card a:hover {
    color: #0877d1;
}


/* =========================================
           SOCIAL
        ========================================= */

.social-title {
    margin-top: 30px;

    color: #071525;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.social-links {
    display: flex;

    gap: 9px;

    margin-top: 12px;
}

.social-links a {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #071525;

    color: #fff;

    font-size: 13px;

    transition: .3s;
}

.social-links a:hover {
    background: #0877d1;

    transform: translateY(-4px);
}


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

.contact-form-box {
    padding: 35px;

    background: #fff;

    border: 1px solid #e4eaf0;

    border-radius: 20px;

    box-shadow: 0 20px 55px rgba(7, 21, 37, .08);
}

.form-heading {
    margin-bottom: 25px;
}

.form-heading h3 {
    font-size: 22px;

    margin-bottom: 7px;
}

.form-heading p {
    color: #8993a0;

    font-size: 10px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    color: #263544;

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dfe6ec;

    outline: none;

    border-radius: 9px;

    background: #f9fbfc;

    color: #071525;

    font-size: 10px;

    padding: 13px 14px;

    transition: .3s;
}

.form-group input,
.form-group select {
    height: 46px;
}

.form-group textarea {
    height: 125px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0877d1;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(8, 119, 209, .08);
}

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

.submit-btn {
    width: 100%;

    height: 48px;

    border: 0;

    border-radius: 9px;

    background: #0877d1;

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    transition: .3s;
}

.submit-btn:hover {
    background: #071525;

    transform: translateY(-2px);
}


/* =========================================
           MAP
        ========================================= */

.map-section {
    padding-bottom: 100px;
}

.map-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 25px;
}

.map-heading h2 {
    font-size: 32px;
}

.map-heading h2 span {
    color: #0877d1;
}

.map-heading p {
    max-width: 430px;

    color: #8993a0;

    font-size: 10px;

    line-height: 1.7;

    text-align: right;
}

.map-box {
    width: 100%;

    height: 380px;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid #e3e9ee;

    background: #eef2f5;
}

.map-box iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================
           QUICK HELP
        ========================================= */

.quick-section {
    padding: 80px 0;

    background: #f5f8fb;
}

.quick-grid {
    display: grid;

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

    gap: 20px;
}

.quick-card {
    padding: 30px;

    background: #fff;

    border: 1px solid #e4eaf0;

    border-radius: 15px;

    text-align: center;

    transition: .3s;
}

.quick-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(7, 21, 37, .08);
}

.quick-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin: 0 auto 17px;

    border-radius: 12px;

    background: #eaf5ff;

    color: #0877d1;

    font-size: 19px;
}

.quick-card h3 {
    font-size: 15px;

    margin-bottom: 8px;
}

.quick-card p {
    color: #818c99;

    font-size: 9px;

    line-height: 1.7;
}


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

.cta-section {
    padding: 100px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 60px;

    border-radius: 22px;

    background:
        linear-gradient(110deg,
            #0877d1,
            #071525);
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 50%;

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

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 680px;
}

.cta-content h2 {
    color: #fff;

    font-size: 34px;

    line-height: 1.25;

    margin-bottom: 13px;
}

.cta-content p {
    color: rgba(255, 255, 255, .65);

    font-size: 11px;

    line-height: 1.8;

    margin-bottom: 23px;
}

.cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    background: #fff;

    color: #071525;

    border-radius: 8px;

    font-size: 10px;

    font-weight: 800;

    transition: .3s;
}

.cta-btn:hover {
    background: #071525;

    color: #fff;
}


/* =========================================
           RESPONSIVE
        ========================================= */

@media(max-width: 900px) {

    .menu {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: grid;

        place-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .map-heading p {
        text-align: left;
    }

}


@media(max-width: 600px) {

    .container {
        width: 92%;
    }

    .contact-hero {
        min-height: 380px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .contact-info h2 {
        font-size: 31px;
    }

    .contact-form-box {
        padding: 23px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .map-box {
        height: 300px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

}




/* =====================================================
   RPM ROAD STUD - PRODUCT DETAILS
===================================================== */

.item-details-section {
    padding: 80px 0;
    background: #ffffff;
}

.item-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

.item-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.item-image-area {
    height: 480px;

    background: #f4f8fb;

    border: 1px solid #e2e9ef;

    border-radius: 20px;

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

    position: relative;

    overflow: hidden;
}

.item-image-area::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    border: 1px solid #dceaf4;
}

.item-main-image {
    width: 85%;
    max-width: 430px;

    height: 400px;

    object-fit: contain;

    position: relative;

    z-index: 2;

    transition: 0.4s;
}

.item-main-image:hover {
    transform: scale(1.05);
}


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

.item-info-content {
    padding: 10px 0;
}

.item-category {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0877d1;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.item-category span {
    width: 32px;
    height: 2px;
    background: #ff6829;
    display: inline-block;
}


.item-title {
    font-size: 45px;

    line-height: 1.15;

    margin-bottom: 20px;

    color: #071525;
}

.item-title span {
    color: #0877d1;
}


.item-description {
    color: #7c8792;

    font-size: 12px;

    line-height: 1.9;

    margin-bottom: 28px;
}


/* =====================================================
   PRODUCT SPECIFICATIONS
===================================================== */

.item-specifications {
    display: flex;

    flex-direction: column;

    border-top: 1px solid #e5ebef;
}

.item-spec-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid #e5ebef;
}

.item-spec-row strong {
    font-size: 11px;

    color: #071525;
}

.item-spec-row span {
    font-size: 10px;

    color: #7c8792;

    text-align: right;
}


/* =====================================================
   PRODUCT ENQUIRY SECTION
===================================================== */

.product-enquiry-section {
    padding: 80px 0;

    background: #f5f8fb;
}


/* =====================================================
   ENQUIRY HEADING
===================================================== */

.product-enquiry-heading {
    text-align: center;

    margin-bottom: 40px;
}

.product-enquiry-heading small {
    color: #0877d1;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.product-enquiry-heading h2 {
    font-size: 34px;

    margin-top: 8px;

    color: #071525;
}

.product-enquiry-heading h2 span {
    color: #0877d1;
}

.product-enquiry-heading p {
    color: #8a949e;

    font-size: 10px;

    margin-top: 8px;
}


/* =====================================================
   ENQUIRY BOX
===================================================== */

.product-enquiry-box {
    max-width: 900px;

    margin: auto;

    background: #ffffff;

    padding: 40px;

    border-radius: 18px;

    border: 1px solid #e3eaf0;

    box-shadow:
        0 20px 50px rgba(7, 21, 37, 0.06);
}


/* =====================================================
   FORM GRID
===================================================== */

.enquiry-fields {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.enquiry-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.enquiry-full {
    grid-column: 1 / -1;
}


/* =====================================================
   FORM LABEL
===================================================== */

.enquiry-field label {
    font-size: 10px;

    font-weight: 600;

    color: #071525;
}


/* =====================================================
   INPUT / SELECT / TEXTAREA
===================================================== */

.enquiry-field input,
.enquiry-field textarea,
.enquiry-field select {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dfe7ed;

    border-radius: 7px;

    outline: none;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    color: #071525;

    background: #ffffff;

    transition: 0.3s;
}


/* INPUT FOCUS */

.enquiry-field input:focus,
.enquiry-field textarea:focus,
.enquiry-field select:focus {

    border-color: #0877d1;

    box-shadow:
        0 0 0 3px rgba(8, 119, 209, 0.08);
}


/* TEXTAREA */

.enquiry-field textarea {

    height: 120px;

    resize: vertical;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.enquiry-submit-btn {

    margin-top: 22px;

    width: 100%;

    border: none;

    padding: 14px;

    border-radius: 7px;

    background: #0877d1;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.enquiry-submit-btn:hover {

    background: #071525;

    transform: translateY(-2px);
}

.enquiry-submit-btn i {

    margin-left: 7px;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 900px) {

    .item-details-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .item-image-area {
        height: 420px;
    }

    .item-main-image {
        height: 350px;
    }

    .item-title {
        font-size: 40px;
    }
}


/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 600px) {

    .item-container {
        width: 92%;
    }

    .item-details-section,
    .product-enquiry-section {
        padding: 55px 0;
    }

    .item-image-area {
        height: 320px;

        border-radius: 15px;
    }

    .item-image-area::before {
        width: 250px;
        height: 250px;
    }

    .item-main-image {
        height: 270px;
    }

    .item-title {
        font-size: 32px;
    }

    .item-description {
        font-size: 11px;
    }

    .item-spec-row {
        padding: 12px 0;
    }

    .item-spec-row strong {
        font-size: 10px;
    }

    .item-spec-row span {
        font-size: 9px;
    }


    /* ENQUIRY */

    .product-enquiry-heading h2 {
        font-size: 28px;
    }

    .enquiry-fields {
        grid-template-columns: 1fr;
    }

    .enquiry-full {
        grid-column: auto;
    }

    .product-enquiry-box {
        padding: 25px 20px;
    }

    .enquiry-field input,
    .enquiry-field textarea {
        font-size: 10px;
    }

}


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

@media (max-width: 400px) {

    .item-title {
        font-size: 28px;
    }

    .item-image-area {
        height: 280px;
    }

    .item-main-image {
        height: 230px;
    }

    .item-spec-row {
        flex-direction: column;

        align-items: flex-start;

        gap: 4px;
    }

    .item-spec-row span {
        text-align: left;
    }

}