/*=========================
RESET
==========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    background: #fff;

    overflow-x: hidden;

}

.container {

    width: 90%;

    max-width: 1320px;

    margin: auto;

}

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

#header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .35s;
}

#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: none;
}

.navbar {
    background: rgba(255, 255, 255, .95);
    border-radius: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

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

.logo img {
    width: auto;
    height: 65px;
    display: block;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #0096CF;
}

.nav-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: #0096CF;
    transition: .3s;
    border-radius: 20px;
}

.nav-links li:hover::after {
    width: 100%;
}

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

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: #0096CF;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.quote-btn:hover {
    background: #007BAA;
    transform: translateY(-3px);
}

.mobile-btn {
    display: none;
}

/*=========================
HAMBURGER
=========================*/

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #0096CF;
    color: #fff;
    font-size: 22px;
}

.menu-toggle:hover {
    background: #0096CF;
}

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

.mobile-header {
    display: none;
}

.mobile-logo {
    height: 55px;
}

.close-menu {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #0096CF;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

/*=========================
OVERLAY
=========================*/

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.hero {

    position: relative;

    height: 100vh;

    overflow: hidden;

}

/* Slides */

.slide {

    position: absolute;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    opacity: 0;

    transition: opacity 1s ease;

    transform: scale(1.05);

}

.slide.active {

    opacity: 1;

    animation: zoomHero 7s linear;

}

@keyframes zoomHero {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.08);

    }

}

.overlay {

    position: absolute;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .65);

}

/* Hero Container */

.hero-container {

    position: relative;

    z-index: 10;

    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: space-between;
    padding-top: 130px;
}

/* Left */

.hero-left {

    width: 55%;

    color: #fff;

}

.hero-left h1 {

    font-size: 58px;

    line-height: 1.3;

    margin-bottom: 25px;

    font-weight: 800;

}

.hero-left p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px;

    color: #ddd;

}

/* Buttons */

.hero-buttons {

    display: flex;

    gap: 20px;
}

.btn-primary {

    padding: 16px 35px;

    background: #0096CF;

    color: #fff;

    border-radius: 50px;

    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {

    background: #007BAA;

}

.btn-secondary {

    padding: 16px 35px;

    border: 2px solid #fff;

    color: #fff;

    border-radius: 50px;
    text-decoration: none;
}

.btn-secondary:hover {

    background: #fff;

    color: #111;

}

/* Right */

.hero-right {

    width: 42%;

    display: flex;

    justify-content: center;

}

.hero-right img {

    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

    animation: floatImage 5s ease-in-out infinite;

}

@keyframes floatImage {

    50% {

        transform: translateY(-20px);

    }

}

/* Slider Arrows */

.prev,

.next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

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

    color: #fff;

    cursor: pointer;

    z-index: 20;

    font-size: 20px;

    transition: .3s;

}

.prev {

    left: 16px;

}

.next {

    right: 16px;

}

.prev:hover,

.next:hover {

    background: #0096CF;

}

/* Dots */

.dots {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    z-index: 20;

}

.dot {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: #fff;

    opacity: .5;

    cursor: pointer;

}

.dot.active {

    opacity: 1;

    background: #0096CF;

}

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

.section {

    padding: 110px 0;

    background: #fff;

}

.about-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.about-images {

    position: relative;

}

.img-large img {

    width: 100%;

    border-radius: 20px;

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

}

.img-small {

    position: absolute;

    right: -30px;

    bottom: -40px;

    width: 220px;

}

.img-small img {

    width: 100%;

    border-radius: 18px;

    border: 8px solid #fff;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);

}

.experience-card {

    background: #ff6500;

    color: #fff;

    padding: 25px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 20px 35px rgba(255, 101, 0, .3);

}

.experience-card h2 {

    font-size: 42px;

    margin-bottom: 5px;

}

.section-subtitle {

    color: #0096CF;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.about-content h2 {

    font-size: 44px;

    margin: 18px 0;

    color: #0b2239;

    line-height: 1.2;

}

.about-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 20px;

}

.about-features {

    display: grid;

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

    gap: 18px;

    margin: 35px 0;

}

.about-features div {

    font-weight: 500;

}

.about-features i {

    color: #0096CF;

    margin-right: 10px;

}

/*=========================
COUNTER
=========================*/

.counter {

    padding: 80px 0;

    background: #080F56;

}

.counter-box {

    display: grid;

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

    gap: 30px;

    text-align: center;

}

.counter-item {

    color: #fff;

}

.counter-item h2 {

    font-size: 54px;

    color: #fff;

    margin-bottom: 10px;

}

.counter-item span {

    font-size: 17px;

}

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

.why-choose {

    padding: 120px 0;

    background: #f7f9fc;

}

.section-title {

    max-width: 760px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.section-title span {

    color: #0096CF;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.section-title h2 {

    font-size: 46px;

    margin: 18px 0;

    color: #08233c;

}

.section-title p {

    color: #666;

    line-height: 1.8;

}

.choose-grid {

    display: grid;

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

    gap: 35px;

}

.choose-card {

    background: #fff;

    padding: 45px 35px;

    border-radius: 18px;

    transition: .35s;

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

    position: relative;

    overflow: hidden;
    cursor: pointer;
}

.choose-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 0;

    background: #0096CF;

    transition: .35s;

}

.choose-card:hover::before {

    height: 100%;

}

.choose-card:hover {

    transform: translateY(-12px);

}

.choose-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.choose-card .icon {

    width: 75px;

    height: 75px;

    background: #fff2ea;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .35s;

}

.icon i {

    font-size: 34px;

    color: #0096CF;

}

.choose-card:hover .icon {

    background: #0096CF;

}

.choose-card:hover .icon i {

    color: #fff;

}

.choose-card h3 {
    font-size: 24px;

    color: #08233c;

}

.choose-card p {

    color: #666;

    line-height: 1.8;

}

/*==================================
INDUSTRIES WE SERVE
==================================*/

.industries {

    padding-bottom: 120px;

    background: #f8f9fb;

}

.industry-grid {

    display: grid;

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

    gap: 30px;

    margin-top: 70px;

}

.industry-card {

    background: #fff;

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    transition: .4s;

    position: relative;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.industry-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.industry-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: #0096CF;

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.industry-card:hover::before {

    transform: scaleX(1);

}

.industry-card:hover {

    transform: translateY(-12px);

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

}

.industry-icon {

    width: 90px;

    height: 90px;

    background: #fff4ec;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;
    transition: .4s;

}

.industry-card:hover .industry-icon {

    background: #0096CF;

    transform: rotateY(180deg);

}

.industry-icon i {

    font-size: 38px;

    color: #0096CF;

    transition: .4s;

}

.industry-card:hover .industry-icon i {

    color: #fff;

}

.industry-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

    color: #08233c;

}

.industry-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    text-align: left;
}

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

.products {

    padding: 120px 0;

    background: #ffffff;

}

.product-filter {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin: 50px 0;

    flex-wrap: wrap;

}

.filter-btn {

    padding: 14px 28px;

    border: none;

    background: #f3f4f6;

    border-radius: 40px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.filter-btn.active,

.filter-btn:hover {

    background: #ff6500;

    color: #fff;

}

.product-grid {

    display: grid;

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

    gap: 30px;

}

.product-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

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

    transition: .4s;

}

.product-card:hover {

    transform: translateY(-12px);

}

.product-image {

    height: 230px;

    overflow: hidden;

}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.product-card:hover img {

    transform: scale(1.1);

}

.product-content {

    padding: 28px;

}

.product-content h3 {

    font-size: 24px;

    margin-bottom: 15px;

    color: #08233c;

}

.product-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

}

.product-btn {

    display: inline-block;

    padding: 12px 28px;

    background: #0096CF;

    color: #fff;

    border-radius: 35px;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.product-btn:hover {

    background: #e95b00;

}

/*==================================
CLIENTS
==================================*/

.clients {

    padding: 120px 0;

    background: #f8f9fc;

    overflow: hidden;

}

.logo-slider {

    margin-top: 60px;

    overflow: hidden;

    position: relative;

}

.logo-track {

    display: flex;

    width: max-content;

    animation: scrollLogo 30s linear infinite;
    padding: 16px 0;
}

.logo-slider:hover .logo-track {

    animation-play-state: paused;

}

.logo-item {

    width: 220px;

    height: 120px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #fff;

    margin: 0 18px;

    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    transition: .35s;
    cursor: pointer;
}

.logo-item img {

    max-width: 150px;
}

@keyframes scrollLogo {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(-50%);

    }

}

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

.footer {

    background: #07192d;

    color: #fff;
}

/* CTA */

.footer-top {

    background: #238DC1;

    padding: 50px 0;

}

.footer-cta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}

.footer-cta h2 {

    font-size: 40px;

    margin-bottom: 15px;

}

.footer-cta p {

    max-width: 700px;

    line-height: 1.8;

}

.footer-btn {

    background: #fff;

    color: #0096CF;

    padding: 18px 40px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

/* Main Footer */

.footer-main {

    padding: 80px 0;
    background: #081B54;
}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 50px;

}

.footer-logo {

    width: 200px;

    margin-bottom: 25px;

}

.footer-col p {

    line-height: 1.9;

    color: #fff;

    margin-bottom: 30px;

}

.footer-col h3 {

    font-size: 24px;

    margin-bottom: 25px;

    position: relative;

}

.footer-col ul {

    list-style: none;

}

.footer-col ul li {

    margin-bottom: 15px;

}

.footer-col ul li a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

/* Contact */

.contact-info li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    line-height: 1.7;

}

.contact-info i {

    color: #fff;

    margin-top: 4px;

}

/* Social */

.social-icons {

    display: flex;

    gap: 15px;

}

.social-icons a {

    width: 45px;

    height: 45px;

    background: #EAF6FF;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    color: #0B2A5A;

    transition: .35s;

}

/* Copyright */

.copyright {

    background: #06133D;

    padding: 22px;

    text-align: center;

    font-size: 15px;

    color: #fff;

}

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

.about-banner {
    padding: 220px 0 120px;
    background: #f8f9fc;
    color: #fff;
    text-align: center;
}

.about-banner h4 {
    color: #0096CF;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-banner h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #08233c;
}

.about-banner p {
    max-width: 850px;
    margin: auto;
    line-height: 1.9;
    color: #666;
}

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

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

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

.company-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.company-content span {
    color: #0096CF;
    font-weight: 600;
}

.company-content h2 {
    font-size: 40px;
    margin: 15px 0;
}

.company-content p {
    line-height: 1.9;
    margin-bottom: 20px;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.company-features div {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.company-features i {
    color: #0077d9;
    margin-right: 10px;
}

/*================ MVP ================*/

.mvp-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #0096CF;
    font-weight: 600;
}

.section-title h2 {
    font-size: 40px;
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvp-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    cursor: pointer;
}

.mvp-card .mvp-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.mvp-card:hover {
    transform: translateY(-10px);
}

.mvp-card .icon {
    width: 70px;
    height: 70px;
    background: #0096CF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.mvp-card .icon i {
    color: #fff;
    font-size: 32px;
}

.mvp-card h3 {
    margin-bottom: 15px;
}

.mvp-card p {
    line-height: 1.8;
}

/*==========================
      CONTACT SECTION
==========================*/

.contact-section {
    padding: 150px 0;
    background: #f6fbff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    background: #d7efff;
    border-radius: 50%;
    opacity: .45;
}

.contact-section::after {
    content: '';
    position: absolute;
    left: -150px;
    bottom: -180px;
    width: 350px;
    height: 350px;
    background: #eaf7ff;
    border-radius: 50%;
}

.contact-title {
    text-align: center;
    margin-bottom: 120px;
}

.contact-title h2 {
    font-size: 54px;
    font-weight: 800;
    color: #0096CF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-image {
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.contact-image img {
    width: 100%;
    display: block;
    height: 600px;
    object-fit: cover;
}

.contact-card {

    position: absolute;
    right: 0;
    width: 48%;

    background: #e8ebeb;

    backdrop-filter: blur(20px);

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

    border-radius: 22px;

    padding: 20px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.contact-item {

    display: flex;

    gap: 22px;

    align-items: flex-start;

    padding: 22px 0;

    border-bottom: 1px solid rgba(0, 0, 0, .08);

}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    background: #0096CF;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    transition: .4s;

}

.contact-item .icon i {
    font-size: 22px;
    color: #fff;
}

.content h4 {

    color: #0096CF;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 8px;

}

.content p {

    color: #24384d;

    font-size: 14px;

    line-height: 1.7;

    margin: 4px 0;

}

.map-section {
    padding: 40px 0;
}

.product-section {
    padding: 140px 0;
}

.product-section .section-title h2 {

    font-size: 34px;
    color: #0096CF;
}

.product-section .card-product-grid {

    display: grid;

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

    gap: 35px;

}

.card-product-grid .card-main {
    background: #e8ebeb;
    border-radius: 18px;
    padding: 16px 16px 30px 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    border: 1px solid #d1d5db;
    cursor: pointer;
}

.card-product-grid .card-main img {
    height: 260px;
    width: 100%;
    border-radius: 18px;
}

.card-product-grid .card-main h3 {
    padding-top: 12px;
    color: #0A73C8;
}

.card-product-grid .card-main p {
    font-size: 14px;
    padding: 8px 0 30px 0;
}

.card-product-grid .card-main a {
    background: #0096CF;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    margin-bottom: 20px;
    text-decoration: none;
}

/*==============================
PAGE BANNER
===============================*/

.page-banner {
    background: #eef8ff;
    padding: 150px 0 120px 0;
    text-align: center;
}

.page-banner h1 {
    color: #0096CF;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-banner p {
    color: #555;
    font-size: 20px;
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
}

.service-about {
    padding: 90px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #0096CF;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    color: #555;
    font-size: 20px;
    margin-top: 10px;
    font-weight: 500;
}

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

.about-left p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #555;
}

.about-right img {
    width: 100%;
    border-radius: 15px;
}

.services-section {
    background: #eef8ff;
    padding: 90px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #0096CF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-card .icon i {
    color: #fff;
}

.service-card h3 {
    color: #0096CF;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/*=============================
    QUOTE MODAL
=============================*/

.quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 99999;
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-content {
    width: 90%;
    max-width: 430px;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    position: relative;
    animation: popup .35s ease;
}

@keyframes popup {

    from {
        transform: translateY(40px) scale(.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

}

.close-modal {
    position: absolute;
    top: 15px;
    right: 18px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #0d3b66;
}

.quote-modal h2 {
    font-size: 28px;
    color: #0096CF;
    margin-bottom: 8px;
    text-align: center;
}

.quote-modal p {
    color: #666;
    margin-bottom: 25px;
}

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

.form-group input {
    width: 100%;
    height: 55px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.form-group input:focus {
    border-color: #1c8cff;
}

.submit-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 8px;
    background: #0096CF;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #1c8cff;
}

.error {
    color: #e53935;
    font-size: 13px;
    display: block;
    margin-top: 6px;
}

.submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:1100px) {
    .hero-left h1 {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 25px;
        font-weight: 800;
    }

    .img-large img {
        height: 500px;
    }

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

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

    .product-grid {

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

    }

    .product-image {
        height: 420px;
        object-fit: contain;
    }

    .contact-image {

        width: 100%;

    }

    .contact-card {

        position: relative;

        width: 100%;

        margin-top: -80px;

        right: auto;

        max-width: 850px;

        margin-left: auto;

        margin-right: auto;

    }

    .contact-wrapper {

        display: block;

    }

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

    .contact-title {
        margin-bottom: 60px;
    }

    .contact-title h2 {
        font-size: 42px;
    }
}

@media(max-width:992px) {


    #header {
        top: 15px;
    }

    .navbar {
        border-radius: 18px;
        padding: 15px 20px;
    }

    .quote-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-header {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-bottom: 25px;
    }

    .nav-links {

        position: fixed;

        top: 0;

        right: -100%;

        width: 320px;

        max-width: 90%;

        height: 100vh;

        background: #fff;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 25px;

        transition: .35s;

        overflow-y: auto;

        z-index: 999;

        box-shadow: -10px 0 30px rgba(0, 0, 0, .15);

    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li::after {
        display: none;
    }

    .nav-links li a {

        display: block;

        width: 100%;

        padding: 16px 5px;

        border-bottom: 1px solid #f1f1f1;

        font-size: 16px;

    }

    .mobile-btn {

        display: block;

        width: 100%;

        text-align: center;

        background: #0096CF;

        color: #fff;

        text-decoration: none;

        padding: 15px;

        border-radius: 50px;

        margin-top: 30px;

        font-weight: 600;

    }

    .mobile-btn:hover {
        background: #007BAA;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-left,

    .hero-right {

        width: 100%;

    }

    .hero-left h1 {

        font-size: 46px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-right {

        margin-top: 50px;

    }

    .hero-right img {

        max-width: 350px;

    }

    .about-wrapper {

        grid-template-columns: 1fr;

    }

    .img-small {

        display: none;

    }

    .experience-card {

        left: 20px;

        top: 20px;

    }

    .counter-box {

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

    }

    .choose-grid {

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

    }

    .industry-grid {

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

    }

    .product-image {
        height: 420px;
        object-fit: contain;
    }

    .footer-cta {

        flex-direction: column;

        text-align: center;

    }

    .footer-grid {

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

    }

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

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

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

    .about-banner h1 {
        font-size: 38px;
    }

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

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

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 20px;
    }

    .page-banner {
        padding: 150px 0 80px 0;
    }

    .service-about {
        padding: 60px 0;
    }

    .section-title span {
        font-size: 24px;
    }

    .section-title .service-title {
        font-size: 24px;
    }

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

    .services-section {
        padding: 40px 0;
    }

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

    .contact-title {
        margin-bottom: 60px;
    }

    .contact-title h2 {
        font-size: 42px;
    }
}

@media(max-width:768px) {
    .hero-container {
        padding-top: 160px;
    }

    .hero-left h1 {
        font-size: 54px;
    }

    .hero-left p {
        font-size: 28px;
    }

    .hero-right {
        margin-top: 30px;
    }

    .hero-right img {
        height: 180px;
    }

    .img-large img {
        height: 320px;
    }

    .btn-primary {
        font-size: 12px;
        padding: 16px;
        line-height: 12px;
    }

    .btn-secondary {
        font-size: 12px;
        padding: 16px;
        line-height: 12px;
    }

    .contact-section {

        padding: 140px 0 70px 0;

    }

    .section-title h2 {

        font-size: 38px;

    }

    .contact-card {

        padding: 30px;

        margin-top: 25px;

    }

    .contact-item {

        gap: 15px;

    }

    .icon {

        width: 42px;

        height: 42px;

        min-width: 42px;

        font-size: 16px;

    }

    .content h4 {

        font-size: 22px;

    }

    .content p {

        font-size: 17px;

    }

    .contact-image img {

        height: 350px;

    }

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

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 20px;
    }

    .page-banner {
        padding: 150px 0 80px 0;
    }

    .service-about {
        padding: 60px 0;
    }

    .section-title span {
        font-size: 24px;
    }

    .section-title .service-title {
        font-size: 24px;
    }

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

    .services-section {
        padding: 40px 0;
    }

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

    .contact-title {
        margin-bottom: 60px;
    }

    .contact-title h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {
    .logo img {
        height: 50px;
    }

    .navbar {
        padding: 12px 18px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .nav-links {
        width: 100%;
    }

    .mobile-logo {
        height: 45px;
    }

    .counter-box {

        grid-template-columns: 1fr;

    }

    .about-content h2 {

        font-size: 24px;

    }

    .about-content p {
        font-size: 14px;
    }

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

    .counter {
        padding: 40px 0;
    }

    .counter-item h2 {
        font-size: 32px;
    }

    .why-choose {
        padding: 40px 0;
    }

    .section-title span {
        font-size: 20px;
    }

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

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

    .choose-card {
        padding: 30px 20px;
    }

    .choose-card h3 {
        font-size: 20px;
    }

    .choose-card .icon {
        width: 60px;
        height: 60px;
    }

    .choose-card .icon i {
        font-size: 28px;
    }

    .section-title h2 {

        font-size: 34px;

    }

    .product-grid {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-logo {
        text-align: center;
    }

    .footer-cta h2 {

        font-size: 30px;

    }

    .footer-btn {

        width: 100%;

        text-align: center;

    }

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

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 16px;
    }

    .page-banner {
        padding: 120px 0 80px 0;
    }

    .service-about {
        padding: 40px 0;
    }

    .section-title .service-title {
        font-size: 24px;
    }

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

    .services-section {
        padding: 40px 0;
    }

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

    .contact-title {
        margin-bottom: 40px;
    }

    .contact-title h2 {
        font-size: 28px;
    }

    .about-banner {
        padding: 120px 0 40px 0;
    }

    .about-banner h1 {
        font-size: 28px;
    }

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

    .company-content h2 {
        font-size: 28px;
    }

    .mvp-section {
        padding: 20px 0;
    }

    .section-title h2 {
        font-size: 16px;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .mvp-card .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .mvp-card .icon i {
        font-size: 24px;
    }

    .mvp-card p {
        font-size: 14px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

    .hero-left h1 {
        font-size: 18px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .prev,
    .next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .hero-right {
        margin-top: 0;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .section {
        padding: 40px 0;
    }

    .about-wrapper {
        gap: 40px;
    }

    .industry-card {
        padding: 20px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
    }

    .industry-icon i {
        font-size: 24px;
    }

    .industry-card h3 {
        font-size: 18px;
    }

    .industries {
        padding-bottom: 40px;
    }

    .products {
        padding: 40px 0;
    }

    .product-image {
        height: 260px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .product-content p {
        font-size: 14px;
    }

    .product-btn {
        font-size: 14px;
    }

    .clients {
        padding: 40px 0;
    }

    .logo-slider {
        margin-top: 30px;
    }
}