:root {
    --yellow: #F2B201;
    --red: #D31B41;
    --black: #202020;
    --variant1: #616265;
    --variant2: #A1A2A8;
    --dark: #171C38;
    --white: #FFFFFF;
    --surface: #F7F7F7;
    --outline: #E4E4E4;

    --blue: #041742;
    /* --green: #577f43; */
    --green: #4a7832;
    --brown: #68423c;
    --light-bg: #f8f9fa;
}


.logo {
    width: 250px;
    height: auto;
}

@media (max-width: 1200px) {
    .logo {
        width: 150px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 180px;
        height: auto;
    }
}

.heading6 {
    font-size: 14px;
}

.heading1 {
    font-size: 50px;
    line-height: 1.2;
}

.swiper-slide {
    padding: 80px;
}

.slider_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.285);
}

.topbar-icon {
    color: var(--white);
}

.topbar-contact-info:hover {
    color: rgb(211, 211, 211);
}

.topbar-social-icon:hover {
    color: var(--green);
}

.btn_next,
.btn_prev {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .heading1 {
        font-size: 25px;
        line-height: normal;
    }

    .btn_next,
    .btn_prev {
        display: none;
    }

    .swiper-slide {
        padding: 80px 20px;
    }
}

/* ============= 
Inner Banner
================ */
.breadcrumb_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb_bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 38, 96, 0.523);
}

/* Mobile active */
.btn_toggle.active {
    color: var(--green);
}

.btn_toggle.active strong {
    color: var(--green);
}

/* ============= 
Footer
================ */
.footer_logo img {
    width: 200px;
}

.footer_bottom {
    font-size: 13px;
    padding: 10px;
}

.footer-contact-icons {
    border: 1px solid rgba(255, 255, 255, 0.075);
    padding: 8px;
    border-radius: 50%;
}

.footer-contact:hover .footer-contact-icons {
    background: var(--white);
}

.footer_info,
.footer_content {
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #d8d8d8;
    width: 100%;
}

.footer-note .star {
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============= 
About Us
================ */
.heading3 {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: var(--dark);
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
    transition: color .4s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: scaleY(1);
}

.btn span {
    position: relative;
    z-index: 2;
}

.button-arrow {
    transition: .35s ease;
}

.btn:hover .button-arrow {
    transform: translateX(2px) translateY(-2px);
}


@media (max-width: 768px) {
    .heading3 {
        font-size: 24px;
        font-weight: 600;
        line-height: normal;
    }
}

.about_banner {
    animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===============
Service Section
================== */
.services {
    padding: 50px 0;
}

/* .heading5 {
    color: var(--dark);
} */

.section_desc1 {
    width: 80%;
}

.service-desc {
    color: rgba(163, 163, 163, 0.916);
}

@media (max-width: 768px) {
    .section_desc1 {
        width: 100%;
    }
}

.services_link {
    background: radial-gradient(circle, rgba(214, 239, 193, 0.877) 0%, rgba(208, 219, 247, 1) 87%);
    transition: all .4s ease;
    overflow: hidden;
    box-shadow: rgba(231, 240, 248, 0.2) 0px 8px 24px;
    border-radius: 20px;
}

.services_link:hover {
    background: radial-gradient(circle, rgba(178, 230, 135, 1) 0%, rgba(151, 185, 240, 1) 87%);
    transform: translateY(-8px);
    box-shadow: rgba(231, 240, 248, 0.297) 0px 8px 24px;
}

.services_icon {
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    transition: all .4s ease;
    border-radius: 50%;
}

.services_icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.services_link:hover .services_icon::before {
    height: 100%;
}

.services_icon span,
.services_icon img {
    position: relative;
    z-index: 2;
    transition: transform .6s ease;
}

.services_link:hover .services_icon span,
.services_link:hover .services_icon img {
    transform: rotate(360deg);
}

.services_img {
    overflow: hidden;
}

.services_img img {
    width: 100%;
    transition: transform .5s ease;
}

.services_link:hover .services_img img {
    transform: scale(1.1);
}

.services_info {
    padding-top: 30px;
}

.services_name {
    transition: color .3s ease;
}

.services_link:hover .services_name {
    color: var(--blue);
    text-decoration: none;

}

.services_link:hover .services_desc {
    color: rgb(63, 63, 63);
}

.services_desc {
    line-height: 1.8;
}

.service_section_title {
    color: var(--white);
}

.service_section_title-inner {
    color: var(--dark);
}

.services_link {
    position: relative;
    overflow: hidden;
}

.services_info {
    position: relative;
}

.service-arrow {
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 18px;
    opacity: 0;
    transition: all .35s ease;
}

.services_link:hover .service-arrow {
    bottom: 10px;
    right: 20px;
    opacity: 1;
}

.service-arrow:hover {
    animation: pulseGlow 2s infinite;
}

.service-arrow i {
    transition: transform .3s ease;
}

.services_link:hover .service-arrow i {
    transform: rotate(45deg);

}

@keyframes pulseGlow {
    0% {
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.45),
            0 0 0 0 rgba(255, 255, 255, .25);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(255, 255, 255, .15),
            0 0 0 16px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow:
            0 0 0 12px rgba(255, 255, 255, 0),
            0 0 0 24px rgba(255, 255, 255, 0);
    }
}

/* ============= 
Why Choose Us
================ */
.choose_us {
    background-image: url("../images/about/about-shape3.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 200px;
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        background-position: right calc(75% - 50px);
    }

    50% {
        background-position: right calc(75% + 50px);
    }

    100% {
        background-position: right calc(75% - 50px);
    }
}

.choose_us_item .whychoose-icon {
    color: var(--blue);
}

.choose_us_item:hover .whychoose-icon {
    color: var(--green);
}

.choose_us_bg {
    box-shadow: rgba(5, 5, 50, 0.447) 0px 7px 29px 0px;
}

@media (max-width: 768px) {
    .choose_us_bg {
        width: 50%;
        height: 30%;
    }
}

@media (max-width: 532px) {
    .choose_us_bg {
        width: 80%;
        height: 30%;
    }
}

/* ============= 
Contact Us
================ */
.contact-icon {
    color: var(--white);
    background: var(--blue);
    padding: 8px;
    border-radius: 50%;
}

.contact-links:hover {
    color: var(--blue);
}

.contact-map-link:hover {
    color: var(--blue);
    ;
}

.form_group .btn:hover {
    background: var(--blue);
}

/* ============= 
Clients
================ */
.clientSwiper {
    overflow: hidden;
    padding: 20px 0;
}

.clientSwiper .client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    border-radius: 16px;
    transition: all .4s ease;
}

.clientSwiper .client-card img {
    max-width: 170px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all .9s ease;
}

.clientSwiper .client-card:hover {
    transform: translateY(-2px);
}

.clientSwiper .client-card:hover img {
    transform: scale(1.08);
}

.clientSwiper .swiper-wrapper {
    align-items: center;
}

@media (max-width: 768px) {
    .clientSwiper {
        padding: 10px 0;
    }

    .clientSwiper .client-card {
        height: 100px;
        padding: 15px;
    }

    .clientSwiper .client-card img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* ===========================
   Client Inner
=========================== */
.client-section-inner {
    padding: 60px 0 80px;
}

.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.clients-logo-item {
    width: calc((100% - 100px) / 5);
    max-width: 200px;
    min-width: 160px;
    height: 140px;
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 16px;

    box-shadow: rgba(190, 190, 190, .28) 0 2px 8px;
    transition: .35s;
}

.clients-logo-item:hover {
    transform: translateY(-8px);
    border-color: rgba(64, 171, 121, .3);
    box-shadow: rgba(175, 252, 205, .27) 0 7px 29px;
}

.clients-logo-item img {
    width: 100%;
    max-width: 130px;
    max-height: 60px;
    object-fit: contain;
    transition: .35s;
}

.clients-logo-item:hover img {
    transform: scale(1.08);
}

@media(max-width:991px) {

    .clients-logo-item {
        width: calc((100% - 50px) / 3);
    }

}

@media(max-width:768px) {

    .clients-logo-grid {
        gap: 18px;
    }

    .clients-logo-item {
        width: calc((100% - 18px) / 2);
        min-width: unset;
        height: 120px;
        padding: 15px;
    }

    .clients-logo-item img {
        max-width: 120px;
        max-height: 60px;
    }

}

@media(max-width:480px) {

    .clients-logo-item {
        width: 100%;
        max-width: 220px;
        margin: auto;
    }

}

/* ===========================
   AUTOMATION Service
=========================== */

.automation-intro {
    position: relative;
    overflow: hidden;
    padding: 80px 10px 60px;
}

.automation-intro::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 350px;
    height: 350px;
    background: rgba(87, 127, 67, .05);
    border-radius: 50%;
}

.service-intro {
    width: 100%;
    padding: 0;
}

.automation-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(47, 60, 96, .12);
    /* border: 2px solid var(--green); */
    width: 80%;
    margin: auto;
}

.automation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: .5s;

}

.automation-image:hover img {
    transform: scale(1.05);
}

.automation-image:hover {
    box-shadow: rgba(0, 9, 104, 0.532) 0px 2px 8px 0px;
}

.automation-features {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.feature-item span {
    color: #555;
    line-height: 1.6;
}

@media(max-width:991px) {
    .automation-intro {
        position: relative;
        overflow: hidden;
        padding: 60px 0px 40px;
    }

    .service-intro {
        width: 80%;
        padding: 0 10px;
    }

    .automation-features {
        grid-template-columns: 1fr;
    }

    .automation-image {
        width: 80%;
        margin: auto;
    }

    .automation-image img {
        height: 300;
    }

}

@media(max-width:532px) {

    .automation-features {
        grid-template-columns: 1fr;
    }

    .service-intro {
        width: 100%;
        padding: 0;
    }

    .automation-image {
        width: 100%;
        margin: auto;
    }

    .automation-image img {
        height: auto;
    }

}

/*==================================
   PRODUCT CARDS
==================================*/
.automation-products {
    padding: 60px 10px;
    background: var(--blue);
}

.product-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: rgba(213, 224, 255, 0.358) 0px 3px 8px;
    transition: .4s;
    position: relative;
    margin-bottom: 40px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(237, 237, 254, 0.331) 0px 7px 29px 0px;
}

.product-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.product_section_title {
    color: var(--white);
}

.product-desc {
    color: rgba(140, 140, 140, 0.998);
    width: 65%;
    text-align: center;
}

.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .5s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 28px;
    text-align: center;
    position: relative;
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: -60px auto 20px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.product-icon i {
    font-size: 28px;
    color: var(--white);
    transition: .4s;
}

.product-card:hover .product-icon i {
    transform: rotate(360deg);
}

.product-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--blue);
}

.product-content p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 991px) {

    .product-heading {
        margin-bottom: 30px;
    }

    .product-desc {
        width: 90%;
    }

    .product-image img {
        height: 200px;
    }

    .product-content {
        padding: 24px;
    }

    .product-content h4 {
        font-size: 22px;
    }

    .product-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .product-icon {
        width: 65px;
        height: 65px;
        margin: -55px auto 18px;
    }

    .product-icon i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .product-heading {
        margin-bottom: 25px;
    }

    .product-desc {
        width: 100%;
        font-size: 15px;
    }

    .product-card {
        margin-bottom: 30px;
    }

    .product-image img {
        height: 190px;
    }

    .product-content {
        padding: 22px;
    }

    .product-content h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .product-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .product-icon {
        width: 60px;
        height: 60px;
        margin: -50px auto 16px;
    }

    .product-icon i {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .product-heading {
        margin-bottom: 20px;
    }

    .product_section_title {
        text-align: center;
    }

    .product-desc {
        width: 100%;
        font-size: 14px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .product-card {
        border-radius: 14px;
        margin-bottom: 25px;
    }

    .product-image img {
        height: 180px;
    }

    .product-content {
        padding: 20px 18px;
    }

    .product-content h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .product-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .product-icon {
        width: 55px;
        height: 55px;
        margin: -45px auto 15px;
    }

    .product-icon i {
        font-size: 20px;
    }

}

/*==============================
    WHY CHOOSE AUTOMATION
===============================*/

.why-automation {
    padding: 60px 10px;
}

.why-auto-img img {
    width: 70%;
    height: 400px;
    margin: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 10px;
    background: #fff;
    border-radius: 14px;
    transition: .35s;
    border: 1px solid #ececec;
    width: 95%;
}

.why-choose-section-title {
    color: var(--dark);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(8, 118, 0, 0.137) 0px 2px 4px -1px;
}

.why-item i {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef5ea;
    color: var(--green);
    font-size: 15px;
    transition: .35s;
}

.why-item:hover i {
    background: var(--green);
    color: var(--white);
    transform: rotate(360deg);
}

.why-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 5px;
}

.why-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

@media(max-width:991px) {

    .why-auto-img img {
        width: 60%;
        height: 400px;
    }

    .why-item {
        padding: 16px;
        width: 80%;
        margin: auto;
    }

    .why-item h5 {
        font-size: 18px;
    }

}

@media(max-width:532px) {
    .why-auto-img img {
        width: 100%;
        height: 300px;
    }

    .why-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        width: 100%;
    }

    .why-item h5 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .why-item p {
        line-height: normal;
        font-size: 13px;
    }
}

/*=========================
        CTA SECTION
=========================*/

.automation-cta {
    padding: 50px 0 80px;
}

.cta-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    background-image: url("../images/banner/cta.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 70px 60px;
    color: var(--white);
    box-shadow: 0 25px 60px rgba(87, 127, 67, .25);
    width: 100%;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(60deg,
            rgba(1, 8, 131, 0.372),
            rgba(31, 31, 31, 0.311));
    z-index: 1;
}

.cta-content {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    z-index: 2;
}

.cta-buttons {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: .5px;
}

.cta-heading {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: .5;
    line-height: 1.3;
}

.cta-desc {
    font-size: 18px;
}

.cta-quote-btn {
    background: var(--blue);
}

.cta-call-btn {
    background: var(--white);
    color: var(--dark);
}

.cta-call-btn:hover {
    color: var(--white);
    background: var(--blue);
}

/* =========================================
   Responsive
========================================= */

@media (max-width:991px) {

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 35px;
    }

    .cta-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .cta-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .cta-heading {
        font-size: 32px;
    }

    .cta-desc {
        font-size: 17px;
    }

}

@media (max-width:767px) {

    .automation-cta {
        padding: 60px 0;
    }

    .cta-box {
        padding: 35px 20px;
        border-radius: 18px;
    }

    .cta-tag {
        font-size: 13px;
        padding: 8px 18px;
    }

    .cta-heading {
        font-size: 26px;
        line-height: 1.4;
        margin-top: 20px;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 15px;
    }

    .cta-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
        margin-top: 25px;
    }

    .cta-buttons .btn {
        padding: 12px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

}

@media (max-width:480px) {

    .cta-box {
        padding: 30px 15px;
    }

    .cta-content {
        width: 100%;
        align-items: start;
        text-align: start;
    }

    .cta-heading {
        font-size: 24px;
        letter-spacing: normal;
        line-height: normal;
    }

    .cta-desc {
        font-size: 14px;
    }

    .cta-buttons {
        gap: 8px;
    }

    .cta-buttons .btn {
        padding: 10px 14px;
        font-size: 13px;
    }

}






/*=========================
    Instrumentation Section
=========================*/

.instrumentation-products {
    padding: 80px 0;
    background: rgba(211, 245, 215, 0.169);
}

.instrument-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    padding: 40px 30px;
    align-items: flex-start;
    background: rgba(211, 245, 215, 0.317);

}

/*=========================
        LEFT MENU
=========================*/

.instrument-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 100px;
    background: var(--blue);
    padding: 25px;
}

.instrument-menu {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--blue);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.instrument-menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--green);
    transform: scaleY(0);
    transition: .35s;
}

.instrument-menu:hover,
.instrument-menu.active {
    background: var(--green);
    color: #fff;
    box-shadow: rgba(0, 0, 0, .08) 0 10px 25px;
}

.instrument-menu:hover::before,
.instrument-menu.active::before {
    transform: scaleY(1);
}

/*=========================
      RIGHT CONTENT
=========================*/

.instrument-content {
    position: relative;
    height: 100%;
    padding-top: 50px;

}

.instrument-panel {
    display: none;
    animation: fadeUp .5s ease;
}

.instrument-panel.active {
    display: block;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*=========================
      Single Product
=========================*/

.single-product {
    display: flex;
    justify-content: center;
}

.single-product img {
    width: 100%;
    max-width: 450px;
    height: 320px;
    object-fit: contain;
    border-radius: 18px;
    background: var(--white);
    padding: 20px;
    /* box-shadow: rgba(0, 0, 0, .08) 0 15px 40px; */
    transition: .4s;
}

.single-product img:hover {
    transform: scale(1.04);
}


/*=========================
      Product Grid
=========================*/

.product-grid {
    display: grid;
    gap: 25px;
}

.two-grid {
    grid-template-columns: repeat(2, 1fr);
}

.three-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-box {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    border: 1px solid #ececec;
    transition: .35s;
    box-shadow: rgba(12, 0, 103, 0.162) 0px 2px 8px 0px;
}

.product-box img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    transition: .4s;

}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: rgba(6, 0, 63, 0.409) 0px 3px 8px;

}

.product-box:hover img {

    transform: scale(1.05);

}

.product-box h5 {

    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background: var(--dark);
    padding: 15px;
    border-radius: 10px;

}

@media(max-width:991px) {

    .instrument-sidebar {

        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        background: var(--blue);
        border-radius: 15px;
        padding: 15px;
        gap: 10px;
        position: relative;
        top: 0;
        min-height: auto;
        scrollbar-width: none;
    }

    .instrument-sidebar::-webkit-scrollbar {
        display: none;
    }

    .instrument-menu {
        flex: 0 0 auto;
        padding: 12px 20px;
        font-size: 15px;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .instrument-menu:hover,
    .instrument-menu.active {
        padding-left: 20px;
        border-left: none;
        border-bottom: 2px solid var(--green);
    }

    .instrument-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instrument-sidebar {
        position: relative;
        top: 0;
    }

    .instrument-menu {
        background: none;
        color: var(--white);
        padding: 16px 18px;
        font-size: 16px;
    }

    .single-product img {
        max-width: 100%;
        height: 300px;
    }

    .two-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .three-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media(max-width:767px) {

    .instrument-layout {
        margin-top: 40px;
    }

    .instrument-sidebar {
        gap: 10px;
    }

    .instrument-menu {
        padding: 14px 18px;
        font-size: 15px;
    }

    .single-product img {
        height: 240px;
    }

    .two-grid,
    .three-grid {
        grid-template-columns: 1fr;
    }

    .product-box img {
        height: 150px;
    }

    .product-box h5 {
        font-size: 16px;
    }

}


/* =====================
   Vision Mission
   ===================== */
.vision-mission-container {
    position: relative;
    min-height: 600px;
    width: 100%;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark);
    box-sizing: border-box;
}

.v-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-asset-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.bg-shield-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.8) 0%, rgba(15, 23, 42, 0.9) 50%, rgba(2, 6, 23, 0.8) 100%);
}

.v-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.v-header-block {
    text-align: center;
    margin-bottom: 64px;
}

.v-badge-tag {
    color: #3b82f6;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background-color: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 9999px;
    display: inline-block;
}

.v-main-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin-top: 12px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.v-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    align-items: stretch;
}

.v-card-item {
    position: relative;
    padding: 48px 24px 24px 24px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.v-card-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.accent-orange {
    --driver-color: #f97316;
}

.accent-amber {
    --driver-color: #eab308;
}

.accent-cyan {
    --driver-color: #06b6d4;
}

.top-left-line-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--driver-color);
    border-top-left-radius: 40px;
    border-bottom: none;
    border-right: none;
    pointer-events: none;
    z-index: 5;
}

.top-neon-dot {
    position: absolute;
    top: 0;
    left: 55px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--driver-color);
    transform: translateY(-50%);
    box-shadow: 0 0 12px var(--driver-color);
}

.v-card-item:hover .top-neon-dot {
    animation: dotMove 2s linear forwards;
}

@keyframes dotMove {

    from {
        left: 55px;
    }

    to {
        left: calc(100% - 10px);
    }

}

.bottom-neon-dot {
    position: absolute;
    bottom: 110px;
    right: -5px;
    width: 12px;
    height: 12px;
    background-color: var(--driver-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 12px var(--driver-color);
    z-index: 20;
}

.bottom-right-line-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 40%;
    border-bottom: 2px solid var(--driver-color);
    border-right: 2px solid var(--driver-color);
    border-bottom-right-radius: 40px;
    pointer-events: none;
    z-index: 10;
}

.bottom-right-line-frame::after {
    content: '';
    position: absolute;
    right: -2px;
    bottom: 40px;
    width: 2px;
    height: 35px;
    background-color: var(--driver-color);
}

.v-counter-badge {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0f172a;
    border: 4px solid var(--driver-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 30;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-counter-badge span {
    color: var(--driver-color);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.v-card-icon {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    color: var(--driver-color);
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.v-card-icon img {
    width: 40px;
    height: 40px;
}

.v-text-block {
    padding-left: 65px;
    margin-top: 16px;
    box-sizing: border-box;
    width: 100%;
}

.v-card-title {
    color: var(--driver-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
}

.v-card-desc {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.v-card-item:hover .v-counter-badge {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--driver-color);
}

.v-card-item:hover .v-card-icon {
    opacity: 1;
}

@media (max-width: 1024px) {
    .v-main-title {
        font-size: 32px;
    }

    .v-cards-grid {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .v-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .v-cards-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .v-main-title {
        font-size: 28px;
    }

    .v-card-item {
        padding-top: 46px;
    }

    .bottom-neon-dot {
        position: absolute;
        bottom: 120px;
        right: -5px;
    }

    .v-counter-badge {
        position: absolute;
        left: -10px;
        top: -10px;
        width: 40px;
        height: 40px;
        border: 3px solid var(--driver-color);
    }

    .v-counter-badge span {
        font-size: 16px;
    }

    .v-text-block {
        padding-left: 45px;
        margin-top: 0px;
        box-sizing: border-box;
        width: 100%;
    }
}

/* ------------Google Map--------- */
.google-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.google-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .google-map-section iframe {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .google-map-section iframe {
        height: 280px;
    }
}