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

body{
    font-family:'Inter',sans-serif;
     font-size:16px;
    color:#555;
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}


html{
    scroll-behavior:smooth;
}


/* h1,h2,h3,h4,h5,h6{
    font-family:'Poppins',sans-serif;
    font-weight:700;
}

img{
    max-width:100%;
    display:block;
} */


/*================ TOP BAR ================*/

/* Topbar */

.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:45px;
    background:#003366;
    color:#fff;
    z-index:1001;
}


.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:45px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.top-left span{
    width:1px;
    height:18px;
    background:rgba(255,255,255,.3);
}

.top-left a,
.top-right a{
    color:#fff;
    transition:.3s;
}

.top-left a:hover,
.top-right a:hover{
    color:#00b050;
}


.topbar{
    transition:0.4s ease;
}


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

.header{
    position:fixed;
    top:45px;
    left:0;
    width:100%;
    background:#fff;
    z-index:1000;
    transition:.35s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:0.4s ease;
}

body{
    padding-top:135px; /* 45 + 90 */
}


.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo img{
    height:60px;
}

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

/* Navbar */
nav{
    position:relative;
    
}



.navbar{
    background:#fff;
    position:relative;
}

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

.menu>li{
    position:relative;
}

.menu>li>a{
    display:flex;
    align-items:center;
    gap:6px;
    padding:30px 0;
    color:#222;
    font-weight:600;
    text-decoration:none;
}
.main-header{
    position:relative;
    z-index:9999;
    overflow:visible;
}

/* Mega Menu */

.mega-dropdown{
     position:relative;
}

.mega-menu{
    

    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);

    width:1200px;
    max-width:95vw;

    background:#fff;

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

    gap:30px;
    padding:30px;

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

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;
}

.mega-dropdown:hover .mega-menu{

    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);

}


.mega-dropdown:hover .mega-menu{
     opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.mega-column h4{
    color:#0056b3;
    font-size:18px;
    margin-bottom:18px;
    padding-bottom:8px;
    border-bottom:2px solid #0056b3;
}

.mega-column ul{
    list-style:none;
    padding:0;
}

.mega-column ul li{
    margin-bottom:10px;
}

.mega-column ul li a{
    color:#444;
    text-decoration:none;
    transition:.3s;
    display:block;
    padding:6px 0;
}

.mega-column ul li a:hover{
    color:#0056b3;
    padding-left:8px;
}

/* Responsive */

@media (max-width:991px){
    nav{

    max-height:80vh;
    overflow-y:auto;

}

    .mega-dropdown{
        position:relative;
    }

    .mega-menu{

    position:relative !important;
    left:0 !important;
    top:0 !important;
    right:0 !important;

    width:100% !important;
    max-width:100% !important;

    transform:none !important;

    display:none;

    grid-template-columns:1fr !important;

    padding:10px 15px !important;

    margin:0;

    box-shadow:none !important;
    border:none;

    background:#f8f8f8;

    overflow:hidden;
}

    .mega-dropdown.active .mega-menu{

         display:block !important;

    }

    .mega-column{

        width:100%;
        margin:0;
        padding:10px 15px;

    }

    .mega-column h4{

        font-size:16px;
        margin-bottom:10px;

    }

    .mega-column ul{

        margin:0;
        padding:0;

    }

    .mega-column ul li{

        margin:0;

    }

    .mega-column ul li a{

        display:block;
        padding:10px 0;
        border-bottom:1px solid #ddd;

    }

}


/*================ SUBMENU ================*/

/* .submenu{

    position:absolute;
    top:120%;
    left:0;

    width:240px;

    background:#fff;

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

    opacity:0;
    visibility:hidden;

    transition:.35s;
}

.dropdown:hover .submenu{

    top:100%;

    opacity:1;

    visibility:visible;

}

.submenu li a{

    display:block;

    padding:14px 22px;

    color:#444;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.submenu li:last-child a{
    border:none;
}

.submenu li a:hover{

    background:#009640;

    color:#fff;

    padding-left:28px;

} */

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

.btn{

    padding:14px 28px;

    background:#009640;

    color:#fff;

    border-radius:4px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:#003366;

}

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

@media(max-width:991px){

.topbar{
display:none !important;
}

.header .container{

flex-wrap:wrap;

height:auto;

padding:15px 0;

}

.menu{

display:none;

}

.btn{

display:none;

}

}

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

.sub-dropdown{
    position:relative;
}

.sub-submenu{

    position:absolute;
    top:0;
    left:100%;

    width:320px;
    max-height:calc(100vh - 120px);
    overflow-y:auto;       /* Vertical Scroll */
    overflow-x:hidden;

    background:#fff;

    border-top:3px solid #009640;

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

    opacity:0;
    visibility:hidden;

    transform:translateX(20px);

    transition:.35s;

    z-index:999;

}

.sub-dropdown:hover > .sub-submenu{

    opacity:1;
    visibility:visible;
    transform:translateX(0);

}

/* Scrollbar */

.sub-submenu::-webkit-scrollbar{

    width:7px;

}

.sub-submenu::-webkit-scrollbar-track{

    background:#f1f1f1;

}

.sub-submenu::-webkit-scrollbar-thumb{

    background:#009640;
    border-radius:20px;

}

.sub-submenu::-webkit-scrollbar-thumb:hover{

    background:#006d2f;

}

.sub-submenu li a{

    display:block;

    padding:12px 18px;

    color:#333;

    font-size:15px;

    border-bottom:1px solid #eee;

    transition:.3s;

    white-space:normal;

}

.sub-submenu li:last-child a{

    border-bottom:none;

}

.sub-submenu li a:hover{

    background:#009640;

    color:#fff;

    padding-left:24px;

}

/* Mobile Menu Icon */

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

/* Mobile */

@media(max-width:991px){

.header .container{
    height:80px;
    position:relative;
}

.menu-toggle{
    display:flex;
}

.btn{
    display:none;
}

nav{

    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;

}

.menu{

    display:none;
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    gap:0;

}

.menu.active{
    display:flex;
}

.menu li{
    width:100%;
}

.menu li a{
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #eee;
}

.submenu,
.sub-submenu{

    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    width:100%;
    box-shadow:none;

}

.submenu.active,
.sub-submenu.active{
    display:block;
}

}

.hero-slider{
    position:relative;
}

.hero-slide{
    position:relative;
    height:calc(100vh - 135px);
}

.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    );
}

.hero-slide .container{
    position:relative;
    z-index:2;
    height:100%;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    height:100%;
    gap:50px;
}

/* LEFT CONTENT */

.hero-content{
    color:#fff;
    max-width:650px;
}

.hero-content span{
    color:#f3f3f3;
    font-size:22px;
    font-weight:600;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:65px;
    line-height:1.1;
    margin:20px 0;
}


.hero-content h2{
    font-size:65px;
    line-height:1.1;
    margin:20px 0;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

/* RIGHT IMAGE */

.hero-image{
    text-align:center;
}

.hero-image img{
    max-width:100%;
    max-height:650px;
    /* animation:floatMachine 4s ease-in-out infinite; */
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.35));
}

@keyframes floatMachine{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

.hero-btns{
    display:flex;
    gap:15px;
}

@media(max-width:1380px){
.swiper-button-prev{

    left:15px !important;
}

.hero-image img {
    max-width: 100%;
    max-height: 540px !important;
    /* animation: floatMachine 4s ease-in-out infinite; */
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .35));
}
}
/* MOBILE */

@media(max-width:991px){

.hero-slide{
    height:auto;
    padding:20px 0 80px;
}

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

.hero-content{
    order:2;
    max-width:100%;
}

.hero-image{
    order:1;
}

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

.hero-image img{
    max-width:80%;
}


}

@media(max-width:576px){

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

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

.hero-image img{
    max-width:100%;
}
}

.hero-image img{

    max-width:100%;
    /* animation:machineMove 5s ease-in-out infinite; */
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.35));
}

@keyframes machineMove{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }
}
/* Navigation */

.swiper-button-next,
.swiper-button-prev{

    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.25);
    transition:.35s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#00b050;
}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:20px;
    color:#fff;
    font-weight:bold;
}

.swiper-button-prev{

    left:40px;
}

.swiper-button-next{

    right:40px;
}

/* Pagination */

.swiper-pagination{

    bottom:35px !important;
}

.swiper-pagination-bullet{

    width:14px;
    height:14px;
    background:#fff;
    opacity:.4;
    transition:.35s;
}

.swiper-pagination-bullet-active{

    width:35px;
    border-radius:20px;
    background:#00b050;
    opacity:1;
}

.about-modern{
    position:relative;
    padding:100px 50px;
    background:#f8f9fc;
    overflow:hidden;
}


/* Background Shapes */

.about-modern::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(0,150,64,.08);
    top:40px;
    right:-180px;
}

.about-modern::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,120,0,.08);
    bottom:170px;
    right:180px;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

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

.about-image{
    overflow:hidden;
    /* border-radius:18px; */
    margin-bottom:35px;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:0px;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
}

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

.service-card.active{
    background:#009640;
    color:#fff;
}

.service-card .icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f4f4f4;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.service-card.active .icon{
    background:#fff;
}

.service-card .icon i{
    font-size:30px;
    color:#009640;
}

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

.service-card h3{
    margin-bottom:12px;
    font-size:22px;
}

.service-card p{
    font-size:15px;
    line-height:1.7;
}

@media(max-width:991px){

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

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

}
/* Left */

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#ff6a00;
    font-size:14px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:20px;
}

.section-tag::before{
    content:"";
    width:12px;
    height:12px;
    background:#ff6a00;
}

.about-content h2{
    font-size:42px;
    line-height:1.2;
    color:#092243;
    margin-bottom:25px;
    font-weight:800;
}
.about-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #092243;
    margin-bottom: 25px;
    font-weight: 800;
}
.about-highlight{
    border-left:4px solid #009640;
    padding-left:22px;
    color:#555;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:10px;
}

.about-btn{
    display:inline-block;
    padding:15px 38px;
    background:#009640;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.about-btn:hover{
    background:#ff6a00;
}

/* Right */

.about-services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.service-card{
    background:#fff;
    padding:40px 35px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    transition:.35s;
    border-bottom:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#009640;
}

.service-card.active{
    border-bottom:4px solid #ff6a00;
}

.icon{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
    border-radius:50%;
    margin-bottom:25px;
}

.icon img{
    width:38px;
}

.service-card h3{
    color:#092243;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.service-card a{
    text-decoration:none;
    color:#009640;
    font-weight:600;
}

.service-card:hover a{
    color:#ff6a00;
}

/* Responsive */

@media(max-width:992px){

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

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

}

@media(max-width:768px){

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

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

.about-modern{
padding:70px 0;
}

}

.products-parallax{
    position:relative;
    padding:100px 0;
    background:url("./images/parallax-bg.webp") center center/cover fixed;
    overflow:hidden;
}

.products-parallax .overlay{
    position:absolute;
    inset:0;
    background:rgb(57 57 57 / 35%);
}

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

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

.section-title span{
    color:#00b140;
    letter-spacing:3px;
    font-weight:600;
    font-size:14px;
}

.section-title h2{
    color:#fff;
    font-size:42px;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    color:#d8d8d8;
    max-width:700px;
    margin:auto;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
    text-align:center;
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.product-card h3{
    padding:20px;
    font-size:21px;
    color:#003366;
}

.product-card:hover{
    transform:translateY(-12px);
}

.product-card:hover img{
    transform:scale(1.08);
}

.productSwiper{
    padding-bottom:20px;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#00b140;
    color:#fff;
}

.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after{
    font-size:20px;
    font-weight:bold;
}

@media(max-width:991px){

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

}

@media(max-width:768px){

.products-parallax{
    background-attachment:scroll;
    padding:70px 0;
}

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

.product-card img{
    height:220px;
}

}

.counter-section{
    padding:90px 0;
    background:#003366;
}

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

.counter-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    padding:45px 25px;
    border-radius:12px;
    text-align:center;
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-8px);
    background:#009640;
}

.counter-box h2{
    color:#fff;
    font-size:56px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1;
}

.counter-box p{
    color:#fff;
    font-size:18px;
    font-weight:500;
    letter-spacing:.5px;
}

@media(max-width:768px){

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

.counter-box h2{
    font-size:42px;
}

}

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

.clients-section{

    position:relative;
    padding:50px 0;
    background:#f8fafc;
    overflow:hidden;

}

.clients-section::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:180px;
    height:180px;
    background:#009640;
    opacity:.06;
    border-radius:50%;
    transform:translate(-50%,-50%);

}

.clients-section::after{

    content:"";
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:220px;
    height:220px;
    background:#003366;
    opacity:.05;
    border-radius:50%;

}

/* Heading */

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

.section-heading span{
    display:inline-block;
    color:#009640;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading h2{
    position:relative;
    display:block;          /* Change from inline-block */
    font-size:46px;
    font-weight:700;
    color:#1b1b1b;
    line-height:1.2;
    margin-bottom:25px;
    padding-bottom:20px;
}

.section-heading h2 span{
    color:#009640;
}

.section-heading p{
    max-width:720px;
    margin:0 auto;
    font-size:17px;
    line-height:1.8;
    color:#666;
}

/* Logo Card */

.client-card{

    height:140px;
    background:#fff;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
    border:1px solid #ececec;
    transition:.4s;
    margin: 20px;

}

.client-card img{

    max-width:160px;
    /* max-height:80px; */
    width:100%;
    object-fit:contain;
    /* filter:grayscale(100%);
    opacity:.75; */
    transition:.4s;

}

.client-card:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    border-color:#009640;

}

.client-card:hover img{

    filter:none;
    opacity:1;
    transform:scale(1.08);

}

/* Swiper */

.clientSwiper{

    padding:20px 5px 10px;

}

.clientSwiper .swiper-slide{

    height:auto;

}



/* Responsive */

@media(max-width:991px){

.section-heading h2{

    font-size:34px;

}

}

@media(max-width:768px){

.clients-section{

    padding:70px 0;

}

.section-heading{

    margin-bottom:40px;

}

.section-heading h2{

    font-size:28px;

}

.client-card{

    height:110px;

}

.client-card img{

    max-width:120px;

}

}
.section-heading h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:120px;
    height:2px;
    background:#d9d9d9;
}

.section-heading h2::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:-1px;
    transform:translateX(-50%);
    width:45px;
    height:4px;
    background:#009640;
    border-radius:20px;
}
/*================ CTA =================*/

.footer-cta{

    position:relative;

    margin-bottom:-90px;

    z-index:99;

}

.cta-wrapper{

    background:linear-gradient(135deg,#003366,#005c99);

    border-radius:20px;

    padding:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.cta-content span{

    color:#00c853;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;

}

.cta-content h2{

    color:#fff;

    font-size:42px;

    margin:15px 0;

    line-height:1.3;

}

.cta-content p{

    color:#ddd;

    max-width:700px;

}

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

.cta-btn a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:55px;
    padding:0 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

.btn-green{
    background:#b14d4a;
    color:#fff;
    border:2px solid #b14d4a;
}

.btn-green:hover{
    background:#fff;
    color:#003366;
    border-color:#fff;
}

.btn-white{
    background:#fff;
    color:#003366;
    border:2px solid #fff;
}

.btn-white:hover{
    background:#009640;
    color:#fff;
    border-color:#009640;
}

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

.main-footer{

    background:#081b2d;

    padding:170px 0 30px;

    color:#ccc;

}

.footer-grid{

    display:grid;

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

    gap:50px;

    padding-bottom:50px;

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

}

.footer-column h3{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

}

.footer-column p{

    line-height:1.8;

}

.footer-column ul{

    list-style:none;

    padding:0;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#bbb;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#00c853;

    padding-left:8px;

}

.footer-contact li{

    margin-bottom:15px;

}

.footer-column iframe{

    width:100%;

    height:220px;

    border:none;

    border-radius:12px;

}

.footer-bottom{

    margin-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    color:#999;

}

.footer-bottom a{

    color:#00c853;

}

@media(max-width:992px){

.footer-grid{

    grid-template-columns:1fr 1fr;

}

 .cta-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .cta-btn{
        justify-content:center;
        margin-top:25px;
    }

}


@media(max-width:768px){

.main-footer{

    padding-top:220px;

}

.footer-grid{

    grid-template-columns:1fr;

}

.cta-content h2{

    font-size:30px;

}

 .cta-btn{
        width:100%;
        flex-direction:column;
    }

    .cta-btn a{
        width:100%;
        max-width:300px;
    }

}

.footer-bottom{

    flex-direction:column;

    gap:10px;

    text-align:center;

}

.footer a{
    transition:.35s ease;
}

.footer a:hover{
    color:#16a34a;
    padding-left:8px;
}

.footer-social a{
    transition:.35s;
}

.footer-social a:hover{
    transform:translateY(-6px) rotate(8deg);
}

.footer{
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:100%;
    background:linear-gradient(180deg,transparent,rgba(255,255,255,.04));
    transform:translateY(100%);
    transition:1s;
}

.footer:hover::before{
    transform:translateY(0);
}

#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    background:#00b050;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .4s ease;
    z-index:9999;
}

#backToTop:hover{
    background:#003366;
    transform:translateY(-5px);
}

#backToTop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


.applications-section{
    padding:100px 0;
    background:#f7f9fc;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.section-title span{
    color:#0aa84f;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:46px;
    margin:15px 0;
    color:#f8f9f9;
}

.section-title h2 span{
    color:#0aa84f;
}

.section-title p{
    color:#e0e0e0;
    line-height:1.8;
}

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

.application-card{
    position:relative;
    height:340px;
    overflow:hidden;
    border-radius:20px;
    text-decoration:none;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.45s;
}

.application-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0, 40, 70, .95), rgb(0 40 70 / 0%))
}

.card-content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;
    z-index:2;
}

.card-content h3{
    color:#fff;
    font-size:24px;
    line-height:1.4;
    margin:0;
}

.application-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.application-card:hover img{
    transform:scale(1.12);
}

.application-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:5px;
    background:#0aa84f;
    transition:.45s;
}

.application-card:hover::after{
    width:100%;
}

@media(max-width:991px){

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

}

@media(max-width:576px){

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

    .application-card{
        height:280px;
    }

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

}

.black{

    color:black

}

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

.page-banner{
    position:relative;
    height:250px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(0,35,75,.92),
    rgba(0,35,75,.75),
    rgba(0,0,0,.35));
}

.banner-content{
    position:relative;
    color:#fff;
    /* max-width:720px; */
    z-index:2;
}

.banner-tag{
    display:inline-block;
    background:#009640;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
}

.banner-content h1{
    font-size:40px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:700;
}


.banner-content p{
    font-size:18px;
    line-height:1.8;
    color:#e8edf5;
    margin-bottom:30px;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb li{
    color:#fff;
    font-size:16px;
}

.breadcrumb li a{
    color:#fff;
    transition:.3s;
}

.breadcrumb li a:hover{
    color:#00c853;
}

.breadcrumb span{
    opacity:.7;
}

/* Decorative Circle */

.page-banner::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    right:-180px;
    top:-120px;
}

.page-banner::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border:2px solid rgba(255,255,255,.08);
    border-radius:50%;
    right:80px;
    bottom:-120px;
}

/* Responsive */

@media(max-width:991px){

.page-banner{
    height:250px;
}

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

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

}

@media(max-width:576px){

.page-banner{
    height:250px;
}

.banner-content h1{
    font-size:34px;
}

.banner-content p{
    display:none;
}

.breadcrumb{
    font-size:14px;
}

}

.flex-100{
    flex: 0 0 100%;
    max-width: 100%;
}

.pt-20{
padding-top: 20px;

}

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

.contact-section{
    padding:90px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    color:#009640;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    margin:15px 0;
    font-size:42px;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.contact-wrapper{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

.contact-info{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    display:flex;
    gap:20px;
    padding:25px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.info-card .icon{
    width:60px;
    height:60px;
    background:#009640;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:24px;
    flex-shrink:0;
}

.info-card h4{
    margin-bottom:8px;
}

.info-card p{
    color:#666;
    line-height:1.7;
}

/* Form */

.contact-form{
    flex:1.3;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
    margin-bottom:20px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#009640;
}

.btn-primary{
    background:#009640;
    color:#fff;
    padding:15px 40px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
    font-size:16px;
}

.btn-primary:hover{
    background:#003366;
}

/* Map */

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
}

/* Responsive */

@media(max-width:991px){

.contact-wrapper{
    flex-direction:column;
}

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

}


.product-details-page{
padding:80px 0;
background:#f7f9fc;
}

.product-layout{
display:grid;
grid-template-columns:280px 1fr;
gap:40px;
}

.product-sidebar{
background:#fff;
padding:30px;
border-radius:12px;
position:sticky;
top:120px;
height:max-content;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-sidebar h3{
margin-bottom:20px;
color:#003366;
}

.product-sidebar ul{
padding:0;
margin:0;
list-style:none;
}

.product-sidebar li{
margin-bottom:10px;
}

.product-sidebar a{
display:block;
padding:12px 15px;
background:#f2f5f9;
border-radius:8px;
color:#333;
transition:.3s;
}

.product-sidebar li.active a,
.product-sidebar a:hover{
background:#003366;
color:#fff;
}

.download-box{
margin-top:35px;
padding-top:25px;
border-top:1px solid #ddd;
}

.btn{
display:inline-block;
background:#003366;
color:#fff;
padding:12px 28px;
border-radius:6px;
}

.product-gallery{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-gallery img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
@media (max-width:768px){
    .product-gallery{
        grid-template-columns: 1fr;
    }
}
.main-image{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.main-image img{
width:100%;
}

.thumbs{
display:flex;
flex-direction:column;
gap:15px;
}

.thumbs img{
width:100%;
cursor:pointer;
padding:8px;
background:#fff;
border-radius:10px;
border:2px solid transparent;
transition:.3s;
}

.thumbs img:hover{
border-color:#003366;
}

.product-info h1{
font-size:35px;
margin-bottom:20px;
color:#003366;
}

.product-info p{
color: #666;
line-height: 1.9;
margin-bottom: 10px;
}

.content-block{
margin-top:30px;
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
margin-bottom:30px;
}

.content-block h2{
margin-bottom:25px;
color:#003366;
}

.content-block h4{
margin-bottom:22px;
color:#003366;
}


.content-block ul{
padding-left:20px;
}

.content-block li{
margin-bottom:12px;
}

table{
width:100%;
border-collapse:collapse;
}

table th,
table td{
padding:15px;
border:1px solid #ddd;
text-align:left;
}

table th{
background:#003366;
color:#fff;
width:220px;
}

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

.application-grid div{
background:#003366;
color:#fff;
padding:20px;
text-align:center;
border-radius:8px;
}

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

.gallery-grid img{
width:100%;
border-radius:10px;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

.enquiry-box{
margin-top:60px;
background:#003366;
padding:60px;
color:#fff;
text-align:center;
border-radius:15px;
}

.enquiry-box .btn{
background:#fff;
color:#003366;
margin-top:20px;
}

@media(max-width:991px){

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

}

.product-sidebar{
position:relative;
top:0;
}

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

.thumbs{
flex-direction:row;
}

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

}

@media(max-width:576px){

.application-grid,
.gallery-grid{
grid-template-columns:1fr;
}

.product-info h1{
font-size:30px;
}

}

.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.feature-list li strong {
    white-space: nowrap;
    min-width: 180px;
}

.feature-list li span,
.feature-list li p {
    margin: 0;
    flex: 1;
}

.feature-list i{
    color:#003366;
    font-size:18px;
    margin-top:4px;
}

.table-scroll{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    margin:30px 0;
    border:1px solid #ddd;
}

.product-table{
    min-width:1600px; /* Increase if needed */
}

.product-table table{
    width:100%;
    border-collapse:collapse;
    white-space:nowrap;
}

.product-table th,
.product-table td{
    padding:12px 15px;
    text-align:center;
    border:1px solid #ddd;
}

.product-table thead th{
    position:sticky;
    top:0;
    background:#003366;
    color:#fff;
    z-index:2;
}

.product-table tbody tr:nth-child(even){
    background:#f8f8f8;
}

.table-scroll{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    display:block;
    margin:30px 0;
    border:1px solid #ddd;
    border-radius:8px;
    -webkit-overflow-scrolling:touch;
}

.table-scroll table{
    min-width:2200px;      /* larger than the content */
    width:max-content;
    border-collapse:collapse;
}

.table-scroll th,
.table-scroll td{
    white-space:nowrap;
    padding:12px 18px;
    text-align:center;
}

.table-scroll::-webkit-scrollbar{
    height:10px;
}

.table-scroll::-webkit-scrollbar-thumb{
    background:#003366;
    border-radius:20px;
}

.table-scroll::-webkit-scrollbar-track{
    background:#eee;
}

.product-content{
    min-width:0;
}

.product-layout{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
}

.content-block{
    width:100%;
    overflow:visible;
}


/* =========================================================
   PRODUCT PAGE - MOBILE FIX
   ========================================================= */

@media (max-width: 991px) {

    /* Header */
    body {
        padding-top: 80px;
    }

    .header {
        top: 0 !important;
    }

    .header .container {
        min-height: 80px;
        height: 80px;
        padding: 10px 15px;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    /* Mobile navigation */
    nav {
        top: 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Page Banner */
    .page-banner {
        height: auto;
        min-height: 220px;
        padding: 45px 0;
    }

    .banner-content {
        width: 100%;
    }

    .banner-tag {
        font-size: 11px;
        padding: 7px 14px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .banner-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Product Section */
    .product-details-page {
        padding: 45px 0;
    }

    .product-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Sidebar */
    .product-sidebar {
        position: relative;
        top: auto;
        width: 100%;
        padding: 20px;
    }

    .product-sidebar h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .product-sidebar ul {
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 5px;
    }

    .product-sidebar li {
        margin-bottom: 7px;
    }

    .product-sidebar a {
        padding: 11px 12px;
        font-size: 14px;
        line-height: 1.4;
    }

    /* Sidebar scrollbar */
    .product-sidebar ul::-webkit-scrollbar {
        width: 6px;
    }

    .product-sidebar ul::-webkit-scrollbar-track {
        background: #eee;
    }

    .product-sidebar ul::-webkit-scrollbar-thumb {
        background: #003366;
        border-radius: 10px;
    }

    /* Product content */
    .product-content {
        width: 100%;
        min-width: 0;
    }

    /* Product Gallery */
    .product-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .product-gallery img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    /* Product Heading */
    .product-info h2 {
        font-size: 28px;
        line-height: 1.3;
        margin: 0 0 20px;
        color: #003366;
        word-break: normal;
    }

    /* Content blocks */
    .content-block {
        padding: 25px 20px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    /* Tables */
    .table-scroll {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

}


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

@media (max-width: 576px) {

    .container {
        width: 92%;
    }

    /* Header */
    .header .container {
        padding: 10px 0;
    }

    .logo img {
        height: 45px;
    }

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

    /* Banner */
    .page-banner {
        min-height: 210px;
        padding: 35px 0;
    }

    .banner-content h1 {
        font-size: 27px;
        line-height: 1.25;
    }

    .banner-tag {
        font-size: 10px;
        padding: 6px 12px;
    }

    .breadcrumb li {
        font-size: 13px;
    }

    /* Product */
    .product-details-page {
        padding: 35px 0;
    }

    .product-sidebar {
        padding: 18px 15px;
    }

    .product-sidebar h3 {
        font-size: 20px;
    }

    .product-sidebar ul {
        max-height: 250px;
    }

    .product-sidebar a {
        font-size: 13px;
        padding: 10px;
    }

    .product-gallery {
        gap: 12px;
    }

    .product-gallery img {
        border-radius: 6px;
    }

    .product-info h2 {
        font-size: 24px;
        line-height: 1.35;
    }

    .content-block {
        padding: 20px 15px;
    }

    /* Prevent long text from causing horizontal overflow */
    .product-content,
    .product-info,
    .product-info h2,
    .content-block {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

}

@media (max-width: 991px) {
    .btn {
        display: none !important;
    }
}


/* ================= CONTACT MOBILE FIX ================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 50px 0;
        overflow-x: hidden;
    }

    .contact-wrapper {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .info-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 15px;
        gap: 15px;
    }

    .info-card .icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        flex-shrink: 0;
    }

    .info-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .info-card h4 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .contact-form {
        padding: 15px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-form iframe {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        height: 350px;
        border: 0;
    }

}


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

@media (max-width: 576px) {

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

    .info-card {
        padding: 18px 12px;
        gap: 12px;
    }

    .info-card .icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .info-card h4 {
        font-size: 17px;
    }

    .info-card p {
        font-size: 13px;
    }

    .contact-form {
        padding: 10px;
    }

    .contact-form iframe {
        height: 300px;
    }

}

/* =========================================================
   FOOTER - COMPLETE CSS
========================================================= */

.main-footer {
    position: relative;
    width: 100%;
    background: #071d2d;
    color: #ffffff;
    padding: 120px 0 0;
    overflow: hidden;
}


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

.main-footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


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

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 2fr;
    gap: 55px;
    align-items: start;
}


/* =========================================================
   COMMON FOOTER COLUMN
========================================================= */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;

    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    background: #0b8fdb;
    border-radius: 3px;
}


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

.footer-company p {
    margin: 0 0 10px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: #ffffff;
}


/* =========================================================
   LOCATION TITLE
========================================================= */

.footer-map-title {
    margin: 20px 0 10px;

    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}


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

.footer-map {
    width: 100%;
    height: 190px;

    overflow: hidden;
    border-radius: 8px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #102b3d;
}

.footer-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   USEFUL LINKS
========================================================= */

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0 0 12px;
    padding: 0;
}

.footer-links li a {
    position: relative;

    display: inline-block;

    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;

    font-size: 15px;
    line-height: 1.5;

    transition: all 0.3s ease;
}

.footer-links li a::before {
    content: "›";

    margin-right: 8px;

    color: #0b8fdb;
    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-links li a:hover::before {
    margin-right: 10px;
}


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

.footer-product-area {
    min-width: 0;
}


/* =========================================================
   PRODUCT SCROLL AREA
========================================================= */

.footer-products-grid {
    display: grid;

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

    gap: 14px 18px;

    width: 100%;
    max-height: 370px;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 2px 10px 8px 0;
}


/* =========================================================
   PRODUCT BOX
========================================================= */

.footer-product-box {
    width: 100%;
    min-width: 0;

    padding: 13px 14px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-product-box:hover {
    background: rgba(255, 255, 255, 0.075);

    border-color: rgba(11, 143, 219, 0.55);

    transform: translateY(-2px);
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.footer-product-title {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin: 0 0 9px;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.4;
}

.footer-product-title span {
    min-width: 0;
    padding-right: 8px;
}

.footer-product-title i {
    flex-shrink: 0;

    width: 22px;
    height: 22px;

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

    color: #ffffff;

    font-size: 13px;
    font-style: normal;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}

.footer-product-box:hover .footer-product-title i {
    background: #0b8fdb;

    transform: translate(2px, -2px);
}


/* =========================================================
   SUB PRODUCT LIST
========================================================= */

.footer-product-box ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-product-box ul li {
    margin: 0 0 5px;
    padding: 0;
}

.footer-product-box ul li:last-child {
    margin-bottom: 0;
}

.footer-product-box ul li a {
    position: relative;

    display: block;

    padding-left: 12px;

    color: rgba(255, 255, 255, 0.62);

    text-decoration: none;

    font-size: 12px;
    line-height: 1.45;

    transition: all 0.25s ease;
}

.footer-product-box ul li a::before {
    content: "•";

    position: absolute;
    left: 0;
    top: 0;

    color: #0b8fdb;

    font-size: 12px;
}

.footer-product-box ul li a:hover {
    color: #ffffff;
    padding-left: 16px;
}


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

.footer-products-grid::-webkit-scrollbar {
    width: 5px;
}

.footer-products-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);

    border-radius: 10px;
}

.footer-products-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.30);

    border-radius: 10px;
}

.footer-products-grid::-webkit-scrollbar-thumb:hover {
    background: #0b8fdb;
}


/* Firefox */

.footer-products-grid {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35)
                       rgba(255, 255, 255, 0.06);
}


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

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;
    padding: 5px 0;

    /* border-top: 1px solid rgba(255, 255, 255, 0.12); */
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

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

.footer-bottom p:last-child {
    text-align: right;
}

.footer-bottom a {
    color: #00b878;

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET - 1200px
========================================================= */

@media (max-width: 1200px) {

    .main-footer .container {
        max-width: 1100px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.75fr 1.8fr;
        gap: 35px;
    }

}


/* =========================================================
   TABLET - 991px
========================================================= */

@media (max-width: 991px) {

    .main-footer {
        padding-top: 55px;
    }

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

    /*
       Company occupies complete first row
    */

    .footer-company {
        grid-column: 1 / -1;
    }

    /*
       Products occupies complete width
    */

    .footer-product-area {
        grid-column: 1 / -1;
    }

    .footer-products-grid {
        max-height: 350px;
    }

    .footer-map {
        height: 220px;
    }

}


/* =========================================================
   MOBILE - 767px
========================================================= */

@media (max-width: 767px) {

    .main-footer {
        padding-top: 45px;
    }

    .main-footer .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-company,
    .footer-product-area {
        grid-column: auto;
    }


    /* Footer heading */

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }


    /* Address */

    .footer-company p {
        font-size: 14px;
    }


    /* Map */

    .footer-map {
        height: 210px;
    }


    /* Products become one column */

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

        max-height: 420px;

        gap: 10px;
    }


    /* Product boxes */

    .footer-product-box {
        padding: 12px;
    }


    /* Bottom */

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        margin-top: 35px;
        padding: 22px 0;
    }

    .footer-bottom p:last-child {
        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    .main-footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-column h3 {
        font-size: 19px;
    }

    .footer-contact li {
        font-size: 13px;
    }

    .footer-links li a {
        font-size: 14px;
    }

    .footer-products-grid {
        max-height: 380px;
    }

    .footer-product-title {
        font-size: 14px;
    }

    .footer-product-box ul li a {
        font-size: 11.5px;
    }

    .footer-map {
        height: 190px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.footer-column a:focus-visible {
    outline: 2px solid #0b8fdb;
    outline-offset: 3px;
}